3a35ba350f
This way we can merge it into stdenv.mkDerivation later without having to modify any package expressions (except the overrides in all-packages.nix).
31 lines
836 B
Nix
31 lines
836 B
Nix
{ stdenv, fetchurl, pkgconfig, libsndfile }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libsamplerate-0.1.7";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.mega-nerd.com/SRC/${name}.tar.gz";
|
|
sha256 = "1k3z09b13c0z10mqfn6w48pxsdx569s3wslg0x52q5mzy6gmvvbq";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig ];
|
|
propagatedBuildInputs = [ libsndfile ];
|
|
|
|
# maybe interesting configure flags:
|
|
#--disable-fftw disable usage of FFTW
|
|
#--disable-cpu-clip disable tricky cpu specific clipper
|
|
|
|
outputs = [ "dev" "bin" "out" ];
|
|
|
|
meta = {
|
|
description = "Sample Rate Converter for audio";
|
|
homepage = http://www.mega-nerd.com/SRC/index.html;
|
|
# you can choose one of the following licenses:
|
|
license = [
|
|
"GPL"
|
|
# http://www.mega-nerd.com/SRC/libsamplerate-cul.pdf
|
|
"libsamplerate Commercial Use License"
|
|
];
|
|
};
|
|
}
|