nixpkgs/pkgs/applications/audio/snd/default.nix
R. RyanTM 666214a5a6 snd: 18.8 -> 19.2 (#58883)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/snd/versions
2019-04-08 23:25:05 +02:00

31 lines
603 B
Nix

{ stdenv, fetchurl, pkgconfig
, gtk2, alsaLib
, fftw, gsl
}:
stdenv.mkDerivation rec {
name = "snd-19.2";
src = fetchurl {
url = "mirror://sourceforge/snd/${name}.tar.gz";
sha256 = "1a6ls2hyvggss12idca22hq5vsq4jw2xkwrx22dx29i9926gdr6h";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
gtk2 alsaLib
fftw gsl
];
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 ];
};
}