nixpkgs/pkgs/development/libraries/xcb-util-cursor/HEAD.nix

42 lines
1,010 B
Nix
Raw Normal View History

2016-04-25 11:51:01 +00:00
{ stdenv, fetchgit, autoconf, automake, libtool, pkgconfig
, git, xorg, gnum4, libxcb, gperf }:
2015-01-08 20:46:05 +00:00
stdenv.mkDerivation rec {
2015-06-04 17:22:36 +00:00
name = "xcb-util-cursor-0.1.1-3-gf03cc27";
2015-01-08 20:46:05 +00:00
src = fetchgit {
url = http://anongit.freedesktop.org/git/xcb/util-cursor.git;
rev = "f03cc278c6cce0cf721adf9c3764d3c5fba63392";
sha256 = "127zfmihd8nqlj8jjaja06xb84xdgl263w0av1xnprx05mkbkcyc";
2015-01-08 20:46:05 +00:00
};
meta = with stdenv.lib; {
description = "XCB cursor library (libxcursor port)";
homepage = http://cgit.freedesktop.org/xcb/util-cursor;
license = licenses.mit;
maintainer = with maintainers; [ lovek323 ];
platforms = platforms.linux ++ platforms.darwin;
};
2016-04-25 11:51:01 +00:00
outputs = [ "dev" "out" ];
2015-01-08 20:46:05 +00:00
buildInputs = [
autoconf
automake
gnum4
gperf
libtool
libxcb
pkgconfig
xorg.utilmacros
xorg.xcbutilimage
xorg.xcbutilrenderutil
2015-01-08 20:46:05 +00:00
];
configurePhase = ''
sed -i '15 i\
LT_INIT' configure.ac
2016-04-25 11:51:01 +00:00
${stdenv.shell} autogen.sh --prefix="$out"
2015-01-08 20:46:05 +00:00
'';
}