bandwhich: 0.23.0 -> 0.23.1; move to by-name; nixfmt; useFetchCargoVendor (#356934)
[NixPkgs.git] / pkgs / servers / x11 / xorg / xcb-util-xrm.nix
blob487e0cb406616c0c01cc1ac6c12f9a17b58196df
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   m4,
7   libxcb,
8   xcbutil,
9   libX11,
12 stdenv.mkDerivation rec {
13   version = "1.3";
14   pname = "xcb-util-xrm";
16   src = fetchurl {
17     url = "https://github.com/Airblader/xcb-util-xrm/releases/download/v${version}/${pname}-${version}.tar.bz2";
18     sha256 = "118cj1ybw86pgw0l5whn9vbg5n5b0ijcpx295mwahzi004vz671h";
19   };
21   strictDeps = true;
23   nativeBuildInputs = [
24     pkg-config
25     m4
26   ];
27   doCheck = true;
28   buildInputs = [
29     libxcb
30     xcbutil
31     libX11
32   ];
34   meta = with lib; {
35     description = "XCB utility functions for the X resource manager";
36     homepage = "https://github.com/Airblader/xcb-util-xrm";
37     license = licenses.mit; # X11 variant
38     platforms = with platforms; unix;
39   };