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

31 lines
603 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 {
2016-11-06 03:56:14 +00:00
name = "snd-16.9";
2014-01-09 07:24:11 +00:00
src = fetchurl {
url = "mirror://sourceforge/snd/${name}.tar.gz";
2016-11-06 03:56:14 +00:00
sha256 = "1rw9wrj1f0g413ya32s9mwhvv3c6iasjza22irzf6xlv49b9s5dp";
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";
homepage = http://ccrma.stanford.edu/software/snd;
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.free;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
};
}