mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
44 lines
991 B
Nix
44 lines
991 B
Nix
{ lib
|
|
, fetchFromSourcehut
|
|
, rustPlatform
|
|
, pkg-config
|
|
, libxkbcommon
|
|
, makeWrapper
|
|
, slurp
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "shotman";
|
|
version = "0.4.3";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~whynothugo";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-c2fgP6XB/fqKfsjqRRQpOFzHZyF/a9tLAKIGdKFAcSQ=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"smithay-client-toolkit-0.16.0" = "sha256-n+s+qH39tna0yN44D6GGlQGZHjsr9FBpp+NZItyqwaE=";
|
|
};
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|