nixpkgs/pkgs/by-name/hy/hyprshot/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.1 KiB
Nix
Raw Normal View History

2023-11-18 18:00:43 +00:00
{ stdenvNoCC
, lib
, fetchFromGitHub
, hyprland
, jq
, grim
, slurp
, wl-clipboard
, libnotify
, withFreeze ? true
, hyprpicker
2023-11-18 18:00:43 +00:00
, makeWrapper
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "hyprshot";
2024-06-01 22:03:54 +00:00
version = "1.3.0";
2023-11-18 18:00:43 +00:00
src = fetchFromGitHub {
owner = "Gustash";
repo = "hyprshot";
rev = finalAttrs.version;
2024-06-01 22:03:54 +00:00
hash = "sha256-9taTmV357cWglMGuN3NLq3bfNneFthwV6y+Ml4qEeHA=";
2023-11-18 18:00:43 +00:00
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
install -Dm755 hyprshot -t "$out/bin"
wrapProgram "$out/bin/hyprshot" \
--prefix PATH ":" ${lib.makeBinPath ([
2023-11-18 18:00:43 +00:00
hyprland jq grim slurp wl-clipboard libnotify
] ++ lib.optionals withFreeze [ hyprpicker ])}
2023-11-18 18:00:43 +00:00
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/Gustash/hyprshot";
description = "Hyprshot is an utility to easily take screenshots in Hyprland using your mouse";
license = licenses.gpl3Only;
maintainers = with maintainers; [ Cryolitia ];
mainProgram = "hyprshot";
platforms = hyprland.meta.platforms;
};
})