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

31 lines
594 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 {
2019-11-29 14:05:54 +00:00
name = "snd-19.9";
2014-01-09 07:24:11 +00:00
src = fetchurl {
url = "mirror://sourceforge/snd/${name}.tar.gz";
2019-11-29 14:05:54 +00:00
sha256 = "13s8fahpsjygjdrcwmprcrz23ny3klaj2rh2xzdv3bfs69gxvhys";
2014-01-09 07:24:11 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
gtk2 alsaLib
fftw gsl
];
2014-09-21 19:40:17 +01:00
meta = {
description = "Sound editor";
homepage = http://ccrma.stanford.edu/software/snd;
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.free;
maintainers = with stdenv.lib.maintainers; [ ];
2014-09-21 19:40:17 +01:00
};
}