summary refs log tree commit diff
path: root/pkgs/development/libraries/libsndfile
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-08-24 20:43:48 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-08-24 20:43:48 -0400
commit3a35ba350f0153f4f7bb4eb006078c38b5ca94ec (patch)
tree16989d8203c9135c89ce362e260c8014f9dcc1b4 /pkgs/development/libraries/libsndfile
parent681d659ee46e1048a61ec14d3def81445a5b2c9b (diff)
downloadnixpkgs-3a35ba350f0153f4f7bb4eb006078c38b5ca94ec.tar
nixpkgs-3a35ba350f0153f4f7bb4eb006078c38b5ca94ec.tar.gz
nixpkgs-3a35ba350f0153f4f7bb4eb006078c38b5ca94ec.tar.bz2
nixpkgs-3a35ba350f0153f4f7bb4eb006078c38b5ca94ec.tar.lz
nixpkgs-3a35ba350f0153f4f7bb4eb006078c38b5ca94ec.tar.xz
nixpkgs-3a35ba350f0153f4f7bb4eb006078c38b5ca94ec.tar.zst
nixpkgs-3a35ba350f0153f4f7bb4eb006078c38b5ca94ec.zip
Turn multipleOutputs into a stdenv adaptation
This way we can merge it into stdenv.mkDerivation later without having
to modify any package expressions (except the overrides in
all-packages.nix).
Diffstat (limited to 'pkgs/development/libraries/libsndfile')
-rw-r--r--pkgs/development/libraries/libsndfile/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libsndfile/default.nix b/pkgs/development/libraries/libsndfile/default.nix
index 166e02668f0..7140843a453 100644
--- a/pkgs/development/libraries/libsndfile/default.nix
+++ b/pkgs/development/libraries/libsndfile/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, multipleOutputs, flac, libogg, libvorbis, pkgconfig }:
+{ stdenv, fetchurl, flac, libogg, libvorbis, pkgconfig }:
 
-multipleOutputs rec {
+stdenv.mkDerivation rec {
   name = "libsndfile-1.0.23";
 
   src = fetchurl {