3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/snd/default.nix

34 lines
854 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config
, alsa-lib, fftw, gsl, motif, xorg
2021-10-29 00:29:00 +01:00
, CoreServices, CoreMIDI
2014-01-09 07:24:11 +00:00
}:
2014-01-09 07:24:11 +00:00
stdenv.mkDerivation rec {
pname = "snd";
2021-10-29 00:28:11 +01:00
version = "21.8";
2014-01-09 07:24:11 +00:00
src = fetchurl {
url = "mirror://sourceforge/snd/snd-${version}.tar.gz";
2021-10-29 00:28:11 +01:00
sha256 = "sha256-sI2xa37eSBDr/ucQ7RF3YfsszKfWcmOCoAJENALSlTo=";
2014-01-09 07:24:11 +00:00
};
nativeBuildInputs = [ pkg-config ];
2014-01-09 07:24:11 +00:00
2021-10-29 00:29:00 +01:00
buildInputs = [ fftw gsl motif ]
++ lib.optionals stdenv.isLinux [ alsa-lib ]
++ lib.optionals stdenv.isDarwin [ CoreServices CoreMIDI ]
++ (with xorg; [ libXext libXft libXpm libXt ]);
2014-09-21 19:40:17 +01:00
configureFlags = [ "--with-motif" ];
2014-09-21 19:40:17 +01:00
enableParallelBuilding = true;
2014-09-21 19:40:17 +01:00
meta = with lib; {
description = "Sound editor";
homepage = "https://ccrma.stanford.edu/software/snd/";
platforms = platforms.unix;
license = licenses.free;
maintainers = with maintainers; [ ];
};
}