hyprprop: init at 0.1-unstable-2024-12-01 (#365293)

This commit is contained in:
Austin Horstman
2024-12-16 14:22:53 -06:00
committed by GitHub
+71
View File
@@ -0,0 +1,71 @@
{
lib,
stdenvNoCC,
bash,
copyDesktopItems,
coreutils,
fetchFromGitHub,
jq,
makeDesktopItem,
makeWrapper,
nix-update-script,
scdoc,
slurp,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "hyprprop";
version = "0.1-unstable-2024-12-01";
src = fetchFromGitHub {
owner = "hyprwm";
repo = "contrib";
rev = "d7c55140f1785b8d9fef351f1cd2a4c9e1eaa466";
hash = "sha256-sp14z0mrqrtmouz1+bU4Jh8/0xi+xwQHF2l7mhGSSVU=";
};
sourceRoot = "${finalAttrs.src.name}/hyprprop";
buildInputs = [
bash
scdoc
];
makeFlags = [ "PREFIX=$(out)" ];
nativeBuildInputs = [
makeWrapper
copyDesktopItems
];
postInstall = ''
wrapProgram $out/bin/hyprprop --prefix PATH ':' \
"${
lib.makeBinPath [
coreutils
slurp
jq
]
}"
'';
desktopItems =
let
desktopItem = makeDesktopItem {
name = "hyprprop";
exec = "hyprprop";
desktopName = "Hyprprop";
terminal = true;
startupNotify = false;
};
in
[ desktopItem ];
passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
meta = {
description = "An xprop replacement for Hyprland";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ khaneliman ];
mainProgram = "hyprprop";
};
})