nixpkgs/pkgs/applications/audio/snd/default.nix
R. RyanTM 3c37615507 snd: 18.7 -> 18.8
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
2018-10-23 07:27:38 -07:00

31 lines
603 B
Nix

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