nixpkgs/pkgs/applications/audio/snd/default.nix
R. RyanTM 9dbd577872 snd: 18.4 -> 18.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.

These checks were done:

- built on NixOS
- /nix/store/yv1d12mfh384087sd9yql3nhj71720lz-snd-18.5/bin/snd passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 18.5 with grep in /nix/store/yv1d12mfh384087sd9yql3nhj71720lz-snd-18.5
- directory tree listing: https://gist.github.com/3cc3f3b2285827a7f116fa28ff12baf7
- du listing: https://gist.github.com/e3639f9f1b7a1e5977ce81065436be06
2018-07-03 14:19:18 -07:00

31 lines
603 B
Nix

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