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
35 lines
666 B
Nix
35 lines
666 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libxcb,
|
|
xorg,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "wmutils-opt";
|
|
version = "1.0-unstable-2024-09-09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wmutils";
|
|
repo = "opt";
|
|
rev = "77124e003246fce8027452d3ceb440893b18d374";
|
|
sha256 = "sha256-hRxuV4xBvgFLO1Mts4rSq3Z+hedr0ldf/JgUltywH+Y=";
|
|
};
|
|
|
|
buildInputs = [
|
|
libxcb
|
|
xorg.xcbutil
|
|
];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Optional addons to wmutils";
|
|
homepage = "https://github.com/wmutils/opt";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ vifino ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|