40 lines
887 B
Nix
40 lines
887 B
Nix
|
{ lib
|
||
|
, fetchFromSourcehut
|
||
|
, rustPlatform
|
||
|
, pkg-config
|
||
|
, libxkbcommon
|
||
|
, makeWrapper
|
||
|
, slurp
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "shotman";
|
||
|
version = "0.2.0";
|
||
|
|
||
|
src = fetchFromSourcehut {
|
||
|
owner = "~whynothugo";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-QNRQInFZcB1nqzESTAqYWwqJ0oiJa6UMCpjY3aHBiyA=";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-BfH1HhBbgdCA1IqKNdl4/FEzZxHgJmoSKNVMJUrSHCA=";
|
||
|
|
||
|
nativeBuildInputs = [ pkg-config makeWrapper ];
|
||
|
|
||
|
buildInputs = [ libxkbcommon ];
|
||
|
|
||
|
preFixup = ''
|
||
|
wrapProgram $out/bin/shotman \
|
||
|
--prefix PATH ":" "${lib.makeBinPath [ slurp ]}";
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "The uncompromising screenshot GUI for Wayland compositors";
|
||
|
homepage = "https://git.sr.ht/~whynothugo/shotman";
|
||
|
license = licenses.isc;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = with maintainers; [ zendo ];
|
||
|
};
|
||
|
}
|