nixpkgs/pkgs/applications/audio/snd/default.nix
R. RyanTM a0ed82a887 snd: 19.4 -> 19.5
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-07-20 07:42:16 -07:00

31 lines
603 B
Nix

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