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

27 lines
500 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 {
name = "snd-14.3";
meta = {
description = "Sound editor";
homepage = http://ccrma.stanford.edu/software/snd;
2014-01-09 07:24:11 +00:00
platforms = stdenv.lib.platforms.linux;
};
2014-01-09 07:24:11 +00:00
src = fetchurl {
url = "mirror://sourceforge/snd/${name}.tar.gz";
sha256 = "04shk34pza507kvm40dc6sdz5jz533z4q2h7m9hgqvw1r3f57ms6";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
gtk2 alsaLib
fftw gsl
];
}