666214a5a6
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
31 lines
603 B
Nix
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 ];
|
|
};
|
|
|
|
|
|
}
|