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
56 lines
848 B
Nix
56 lines
848 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
alsa-lib,
|
|
fftw,
|
|
gsl,
|
|
motif,
|
|
xorg,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "snd";
|
|
version = "25.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/snd/snd-${version}.tar.gz";
|
|
hash = "sha256-tkPb5gkeyFAJ2kAflZXUiR7langzn9NEUyjgEGDH+9w=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
fftw
|
|
gsl
|
|
motif
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
alsa-lib
|
|
]
|
|
++ (with xorg; [
|
|
libXext
|
|
libXft
|
|
libXpm
|
|
libXt
|
|
]);
|
|
|
|
configureFlags = [
|
|
"--with-motif"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Sound editor";
|
|
homepage = "https://ccrma.stanford.edu/software/snd/";
|
|
platforms = platforms.unix;
|
|
license = licenses.free;
|
|
maintainers = [ ];
|
|
mainProgram = "snd";
|
|
};
|
|
}
|