nixpkgs/pkgs/servers/x11/xorg/xcb-util-xrm.nix

24 lines
706 B
Nix
Raw Normal View History

2016-08-13 22:29:07 +02:00
{ stdenv, fetchurl, pkgconfig, m4, libxcb, xcbutil, libX11 }:
stdenv.mkDerivation rec {
version = "1.3";
2016-08-13 22:29:07 +02:00
name = "xcb-util-xrm-${version}";
src = fetchurl {
url = "https://github.com/Airblader/xcb-util-xrm/releases/download/v${version}/${name}.tar.bz2";
sha256 = "118cj1ybw86pgw0l5whn9vbg5n5b0ijcpx295mwahzi004vz671h";
2016-08-13 22:29:07 +02:00
};
2018-01-28 15:19:03 +01:00
nativeBuildInputs = [ pkgconfig m4 ];
2016-08-13 22:29:07 +02:00
doCheck = true;
2018-08-08 23:30:43 +02:00
buildInputs = [ libxcb xcbutil ];
checkInputs = [ libX11 ];
2016-08-13 22:29:07 +02:00
meta = with stdenv.lib; {
description = "XCB utility functions for the X resource manager";
homepage = https://github.com/Airblader/xcb-util-xrm;
license = licenses.mit; # X11 variant
platforms = with platforms; unix;
};
}