a461c714d2
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/h2s0m8v39bj1z84habnkrxidkip0vmbr-snd-18.1/bin/snd --help` got 0 exit code - ran `/nix/store/h2s0m8v39bj1z84habnkrxidkip0vmbr-snd-18.1/bin/snd --version` and found version 18.1 - ran `/nix/store/h2s0m8v39bj1z84habnkrxidkip0vmbr-snd-18.1/bin/snd --help` and found version 18.1 - found 18.1 with grep in /nix/store/h2s0m8v39bj1z84habnkrxidkip0vmbr-snd-18.1 - found 18.1 in filename of file in /nix/store/h2s0m8v39bj1z84habnkrxidkip0vmbr-snd-18.1 cc "@fuuzetsu"
30 lines
603 B
Nix
30 lines
603 B
Nix
{ stdenv, fetchurl, pkgconfig
|
|
, gtk2, alsaLib
|
|
, fftw, gsl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "snd-18.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/snd/${name}.tar.gz";
|
|
sha256 = "0wdifvpm54j5fxxp867jnrfdy3jb8iff2mxqvp08plp45zfjv6xh";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
|
|
|
|
}
|