about summary refs log tree commit diff
path: root/pkgs/development/libraries/spandsp
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2019-09-25 10:13:59 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2019-09-25 13:07:20 -0500
commit9d35ea756e0f3e16adc56d857f32cb42569bde29 (patch)
treed0b6c76d791698cd03e9053bbf22d8140441a090 /pkgs/development/libraries/spandsp
parent6cbf0b4bd22017f11f25d4b44e7cfaa02f3029dc (diff)
spandsp: Use multiple outputs to reduce closure size
Diffstat (limited to 'pkgs/development/libraries/spandsp')
-rw-r--r--pkgs/development/libraries/spandsp/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/spandsp/default.nix b/pkgs/development/libraries/spandsp/default.nix
index c2dc20cc39278..da73e5ab93156 100644
--- a/pkgs/development/libraries/spandsp/default.nix
+++ b/pkgs/development/libraries/spandsp/default.nix
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
     url = "https://www.soft-switch.org/downloads/spandsp/spandsp-${version}.tar.gz";
     sha256 = "0rclrkyspzk575v8fslzjpgp4y2s4x7xk3r55ycvpi4agv33l1fc";
   };
-  buildInputs = [];
+  outputs = [ "out" "dev" ];
   propagatedBuildInputs = [audiofile libtiff];
   meta = {
     homepage = http://www.creytiv.com/baresip.html;
@@ -18,4 +18,3 @@ stdenv.mkDerivation rec {
     updateWalker = true;
   };
 }
-