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
62 lines
965 B
Nix
62 lines
965 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
asciidoc,
|
|
libxcb,
|
|
xcbutil,
|
|
xcbutilkeysyms,
|
|
xcbutilwm,
|
|
nixosTests,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "sxhkd";
|
|
version = "0.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "baskerville";
|
|
repo = "sxhkd";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-kbjbTzYL2dz/RpG+SgBYy+XS3W9PBEWkg6ocqAFG3VQ=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
"man"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
asciidoc
|
|
];
|
|
|
|
buildInputs = [
|
|
libxcb
|
|
xcbutil
|
|
xcbutilkeysyms
|
|
xcbutilwm
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) startx;
|
|
};
|
|
|
|
meta = {
|
|
description = "Simple X hotkey daemon";
|
|
homepage = "https://github.com/baskerville/sxhkd";
|
|
license = lib.licenses.bsd2;
|
|
mainProgram = "sxhkd";
|
|
maintainers = with lib.maintainers; [
|
|
vyp
|
|
ncfavier
|
|
];
|
|
inherit (libxcb.meta) platforms;
|
|
};
|
|
})
|