summary refs log tree commit diff
path: root/pkgs/development/libraries/libsamplerate/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-08-23 16:21:45 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-08-23 16:21:45 -0400
commit53661fda0bd95f61ce2abc6ce0da02ac2d72d9f1 (patch)
tree408ddc7deabe0b22c23db6e6ac7bfbc2dda65ae5 /pkgs/development/libraries/libsamplerate/default.nix
parentb96ab17658b1aec5654cc88f8e67adb544900c82 (diff)
downloadnixpkgs-53661fda0bd95f61ce2abc6ce0da02ac2d72d9f1.tar
nixpkgs-53661fda0bd95f61ce2abc6ce0da02ac2d72d9f1.tar.gz
nixpkgs-53661fda0bd95f61ce2abc6ce0da02ac2d72d9f1.tar.bz2
nixpkgs-53661fda0bd95f61ce2abc6ce0da02ac2d72d9f1.tar.lz
nixpkgs-53661fda0bd95f61ce2abc6ce0da02ac2d72d9f1.tar.xz
nixpkgs-53661fda0bd95f61ce2abc6ce0da02ac2d72d9f1.tar.zst
nixpkgs-53661fda0bd95f61ce2abc6ce0da02ac2d72d9f1.zip
Strip/patchelf the bin output
Diffstat (limited to 'pkgs/development/libraries/libsamplerate/default.nix')
-rw-r--r--pkgs/development/libraries/libsamplerate/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libsamplerate/default.nix b/pkgs/development/libraries/libsamplerate/default.nix
index 17f06e46711..851a2fcca48 100644
--- a/pkgs/development/libraries/libsamplerate/default.nix
+++ b/pkgs/development/libraries/libsamplerate/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, pkgconfig, fftw, libsndfile }:
+{ stdenv, fetchurl, multipleOutputs, pkgconfig, fftw, libsndfile }:
 
-stdenv.mkDerivation rec {
+multipleOutputs rec {
   name = "libsamplerate-0.1.7";
 
   src = fetchurl {
@@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
   #--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;