mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
xcb-util-cursor: multiple outputs
This commit is contained in:
parent
c25907d072
commit
668f93c719
@ -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"
|
||||
'';
|
||||
}
|
||||
|
@ -265,6 +265,7 @@ in
|
||||
};
|
||||
|
||||
xcbutilcursor = attrs: attrs // {
|
||||
outputs = [ "dev" "out" ];
|
||||
meta.maintainers = [ stdenv.lib.maintainers.lovek323 ];
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user