Files
nixpkgs/pkgs/by-name/wl/wlprop/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

55 lines
1.1 KiB
Nix

{
fetchgit,
gawk,
jq,
lib,
makeWrapper,
slurp,
stdenv,
sway,
bash,
}:
stdenv.mkDerivation {
pname = "wlprop";
version = "unstable-2022-08-18";
src = fetchgit {
url = "https://gist.github.com/f313386043395ff06570e02af2d9a8e0";
rev = "758c548bfb4be5b437c428c8062b3987f126f002";
sha256 = "sha256-ZJ9LYYrU2cNYikiVNTlEcI4QXcoqfl7iwk3Be+NhGG8=";
};
strictDeps = true;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ bash ];
dontBuild = true;
installPhase = ''
runHook preInstall
install -Dm755 wlprop.sh $out/bin/wlprop
wrapProgram "$out/bin/wlprop" \
--prefix PATH : "$out/bin:${
lib.makeBinPath [
gawk
jq
slurp
sway
]
}"
runHook postInstall
'';
passthru.scriptName = "wlprop.sh";
meta = with lib; {
description = "Xprop clone for wlroots based compositors";
homepage = "https://gist.github.com/crispyricepc/f313386043395ff06570e02af2d9a8e0";
license = licenses.mit;
maintainers = [ ];
platforms = platforms.linux;
mainProgram = "wlprop";
};
}