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

31 lines
580 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchurl, pkgconfig
2014-01-09 07:24:11 +00:00
, gtk2, alsaLib
, fftw, gsl
}:
2014-01-09 07:24:11 +00:00
stdenv.mkDerivation rec {
2020-05-10 12:10:49 +00:00
name = "snd-20.3";
2014-01-09 07:24:11 +00:00
src = fetchurl {
url = "mirror://sourceforge/snd/${name}.tar.gz";
2020-05-10 12:10:49 +00:00
sha256 = "016slh34gb6qqb38m8k9yg48rbhc5p12084szcwvanhh5v7fc7mk";
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";
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.linux;
license = lib.licenses.free;
maintainers = with lib.maintainers; [ ];
2014-09-21 18:40:17 +00:00
};
}