blob: 1189e623ee0b1693839ce65468f2a9b00099fc61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ stdenv, fetchzip, pkg-config, libxcb }:
stdenv.mkDerivation rec {
pname = "xcb-util";
version = "0.4";
src = fetchzip {
url = "https://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.bz2";
sha256 = "1sahmrgbpyki4bb72hxym0zvxwnycmswsxiisgqlln9vrdlr9r26";
};
preConfigure = "./autogen.sh";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libxcb ];
meta = with stdenv.lib; {
homepage = "https://xcb.freedesktop.org/XcbUtil/";
description = "The xcb-util module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries";
license = licenses.isc;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}
|