xcb-util-cursor: multiple outputs

This commit is contained in:
Thomas Tuegel 2016-04-25 06:51:01 -05:00
parent c25907d072
commit 668f93c719
2 changed files with 5 additions and 2 deletions

View File

@ -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"
'';
}

View File

@ -265,6 +265,7 @@ in
};
xcbutilcursor = attrs: attrs // {
outputs = [ "dev" "out" ];
meta.maintainers = [ stdenv.lib.maintainers.lovek323 ];
};