nixpkgs/pkgs/applications/audio/snd/default.nix

31 lines
596 B
Nix
Raw Normal View History

2014-01-09 07:24:11 +00:00
{ stdenv, fetchurl, pkgconfig
, gtk2, alsaLib
, fftw, gsl
}:
2014-01-09 07:24:11 +00:00
stdenv.mkDerivation rec {
2020-04-07 18:05:13 +00:00
name = "snd-20.2";
2014-01-09 07:24:11 +00:00
src = fetchurl {
url = "mirror://sourceforge/snd/${name}.tar.gz";
2020-04-07 18:05:13 +00:00
sha256 = "0ip4sfyxqlbghlggipmvvqjqs1a7qas0zcmzw8d1nwg6krjkfj0r";
2014-01-09 07:24:11 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
gtk2 alsaLib
fftw gsl
];
2014-09-21 18:40:17 +00:00
meta = {
description = "Sound editor";
2020-03-03 15:54:33 +00:00
homepage = "http://ccrma.stanford.edu/software/snd";
2014-09-21 18:40:17 +00:00
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.free;
maintainers = with stdenv.lib.maintainers; [ ];
2014-09-21 18:40:17 +00:00
};
}