2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchgit, autoconf, automake, libtool, pkg-config
|
2018-07-20 17:44:44 -07:00
|
|
|
, xorg, gnum4, libxcb, gperf }:
|
2015-01-08 12:46:05 -08:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "xcb-util-cursor-0.1.1-3-unstable";
|
2017-05-08 20:31:15 -07:00
|
|
|
version = "2017-04-05";
|
2015-01-08 12:46:05 -08:00
|
|
|
|
|
|
|
src = fetchgit {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "http://anongit.freedesktop.org/git/xcb/util-cursor.git";
|
2015-01-08 12:46:05 -08:00
|
|
|
rev = "f03cc278c6cce0cf721adf9c3764d3c5fba63392";
|
2016-06-02 04:26:44 -07:00
|
|
|
sha256 = "127zfmihd8nqlj8jjaja06xb84xdgl263w0av1xnprx05mkbkcyc";
|
2015-01-08 12:46:05 -08:00
|
|
|
};
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2015-01-08 12:46:05 -08:00
|
|
|
description = "XCB cursor library (libxcursor port)";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://cgit.freedesktop.org/xcb/util-cursor";
|
2015-01-08 12:46:05 -08:00
|
|
|
license = licenses.mit;
|
2017-12-05 14:20:11 -08:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2015-01-08 12:46:05 -08:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-25 04:51:01 -07:00
|
|
|
|
2015-01-08 12:46:05 -08:00
|
|
|
buildInputs = [
|
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
gnum4
|
|
|
|
gperf
|
|
|
|
libtool
|
|
|
|
libxcb
|
2021-01-18 22:50:56 -08:00
|
|
|
pkg-config
|
2015-09-15 02:26:18 -07:00
|
|
|
xorg.utilmacros
|
|
|
|
xorg.xcbutilimage
|
|
|
|
xorg.xcbutilrenderutil
|
2015-01-08 12:46:05 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
sed -i '15 i\
|
|
|
|
LT_INIT' configure.ac
|
2016-04-25 04:51:01 -07:00
|
|
|
${stdenv.shell} autogen.sh --prefix="$out"
|
2015-01-08 12:46:05 -08:00
|
|
|
'';
|
|
|
|
}
|