e19ca8e7ed
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
30 lines
603 B
Nix
30 lines
603 B
Nix
{ stdenv, fetchurl, pkgconfig
|
|
, gtk2, alsaLib
|
|
, fftw, gsl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "snd-19.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/snd/${name}.tar.gz";
|
|
sha256 = "0s2qv8sznvw6559bi39qj9p072azh9qcb2b86w6w8clz2azjaa76";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
|
|
|
|
}
|