Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
752 B
Nix
41 lines
752 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
m4,
|
|
libxcb,
|
|
xcbutil,
|
|
libX11,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.3";
|
|
pname = "xcb-util-xrm";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Airblader/xcb-util-xrm/releases/download/v${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "118cj1ybw86pgw0l5whn9vbg5n5b0ijcpx295mwahzi004vz671h";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
m4
|
|
];
|
|
doCheck = true;
|
|
buildInputs = [
|
|
libxcb
|
|
xcbutil
|
|
libX11
|
|
];
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|