about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libsamplerate
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libsamplerate')
-rw-r--r--nixpkgs/pkgs/development/libraries/libsamplerate/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libsamplerate/default.nix b/nixpkgs/pkgs/development/libraries/libsamplerate/default.nix
new file mode 100644
index 000000000000..5cf872c3fc39
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libsamplerate/default.nix
@@ -0,0 +1,37 @@
+{ lib, stdenv, fetchurl, pkg-config, libsndfile, ApplicationServices, Carbon, CoreServices }:
+
+let
+  inherit (lib) optionals optionalString;
+
+in stdenv.mkDerivation rec {
+  name = "libsamplerate-0.1.9";
+
+  src = fetchurl {
+    url = "http://www.mega-nerd.com/SRC/${name}.tar.gz";
+    sha256 = "1ha46i0nbibq0pl0pjwcqiyny4hj8lp1bnl4dpxm64zjw9lb2zha";
+  };
+
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [ libsndfile ]
+    ++ optionals stdenv.isDarwin [ ApplicationServices CoreServices ];
+
+  configureFlags = [ "--disable-fftw" ];
+
+  outputs = [ "bin" "dev" "out" ];
+
+  postConfigure = optionalString stdenv.isDarwin ''
+    # need headers from the Carbon.framework in /System/Library/Frameworks to
+    # compile this on darwin -- not sure how to handle
+    NIX_CFLAGS_COMPILE+=" -I${Carbon}/Library/Frameworks/Carbon.framework/Headers"
+
+    substituteInPlace examples/Makefile --replace "-fpascal-strings" ""
+  '';
+
+  meta = with lib; {
+    description = "Sample Rate Converter for audio";
+    homepage    = "http://www.mega-nerd.com/SRC/index.html";
+    license     = licenses.bsd2;
+    maintainers = with maintainers; [ lovek323 ];
+    platforms   = platforms.all;
+  };
+}