Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
85 lines
2.0 KiB
Nix
85 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
alsa-lib,
|
|
perl,
|
|
pkg-config,
|
|
SDL2,
|
|
libX11,
|
|
libXext,
|
|
utf8proc,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "schismtracker";
|
|
version = "20250825";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "schismtracker";
|
|
repo = "schismtracker";
|
|
tag = version;
|
|
hash = "sha256-R1u0ZIWt4sG9cVhG9WhLdYVwAy7u62AT7E4ZwiTw1rY=";
|
|
};
|
|
|
|
# If we let it try to get the version from git, it will fail and fall back
|
|
# on running `date`, which will output the epoch, which is considered invalid
|
|
# in this assert: https://github.com/schismtracker/schismtracker/blob/a106b57e0f809b95d9e8bcf5a3975d27e0681b5a/schism/version.c#L112
|
|
postPatch = ''
|
|
substituteInPlace configure.ac \
|
|
--replace-fail 'git log' 'echo ${version} #'
|
|
'';
|
|
|
|
configureFlags = [
|
|
(lib.enableFeature true "dependency-tracking")
|
|
(lib.withFeature true "sdl2")
|
|
(lib.enableFeature true "sdl2-linking")
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
(lib.enableFeature true "alsa")
|
|
(lib.enableFeature true "alsa-linking")
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
(lib.enableFeature false "sdltest")
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
perl
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
libX11
|
|
utf8proc
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
alsa-lib
|
|
libXext
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# Our Darwin SDL2 doesn't have a SDL2main to link against
|
|
preConfigure = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
substituteInPlace configure.ac \
|
|
--replace '-lSDL2main' '-lSDL2'
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Music tracker application, free reimplementation of Impulse Tracker";
|
|
homepage = "https://schismtracker.org/";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ ftrvxmtrx ];
|
|
mainProgram = "schismtracker";
|
|
};
|
|
}
|