summary refs log tree commit diff
path: root/pkgs/development/libraries/xcb-util-cursor
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-04-25 06:51:01 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-04-25 19:04:24 -0500
commit668f93c719773a66448a757de80bb166b38c729c (patch)
tree711d21380280406614a3b0b1690884cbda6395aa /pkgs/development/libraries/xcb-util-cursor
parentc25907d072742e9720b713d7116793e0d8a623c5 (diff)
downloadnixpkgs-668f93c719773a66448a757de80bb166b38c729c.tar
nixpkgs-668f93c719773a66448a757de80bb166b38c729c.tar.gz
nixpkgs-668f93c719773a66448a757de80bb166b38c729c.tar.bz2
nixpkgs-668f93c719773a66448a757de80bb166b38c729c.tar.lz
nixpkgs-668f93c719773a66448a757de80bb166b38c729c.tar.xz
nixpkgs-668f93c719773a66448a757de80bb166b38c729c.tar.zst
nixpkgs-668f93c719773a66448a757de80bb166b38c729c.zip
xcb-util-cursor: multiple outputs
Diffstat (limited to 'pkgs/development/libraries/xcb-util-cursor')
-rw-r--r--pkgs/development/libraries/xcb-util-cursor/HEAD.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix
index cf14490c514..8bd7a90ad5a 100644
--- a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix
+++ b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, bashInteractive, autoconf, automake, libtool, pkgconfig
+{ stdenv, fetchgit, autoconf, automake, libtool, pkgconfig
 , git, xorg, gnum4, libxcb, gperf }:
 
 stdenv.mkDerivation rec {
@@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
     platforms   = platforms.linux ++ platforms.darwin;
   };
 
+  outputs = [ "dev" "out" ];
+
   buildInputs = [
     autoconf
     automake
@@ -34,6 +36,6 @@ stdenv.mkDerivation rec {
   configurePhase = ''
     sed -i '15 i\
       LT_INIT' configure.ac
-    ${bashInteractive}/bin/bash autogen.sh --prefix="$out"
+    ${stdenv.shell} autogen.sh --prefix="$out"
   '';
 }