Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
848 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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";
};
}