2023-01-17 17:06:52 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, pkg-config, libXrandr, libX11 }:
|
2019-10-27 14:01:59 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "shotgun";
|
2022-10-01 01:33:06 +00:00
|
|
|
version = "2.3.1";
|
2019-10-27 14:01:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "neXromancers";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-10-01 01:33:06 +00:00
|
|
|
sha256 = "sha256-hu8UYia2tu6I6Ii9aZ6vfpbrcDz4yeEDkljGFa5s6VY=";
|
2019-10-27 14:01:59 +00:00
|
|
|
};
|
|
|
|
|
2022-10-01 01:33:06 +00:00
|
|
|
cargoSha256 = "sha256-UOchXeBX+sDuLhwWQRVFCj9loJUyr4IltiAKsQoh5/c=";
|
2019-10-27 14:01:59 +00:00
|
|
|
|
2023-01-17 17:06:52 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [ libXrandr libX11 ];
|
|
|
|
|
|
|
|
# build script tries to run git to get the current tag
|
|
|
|
postPatch = ''
|
|
|
|
echo "fn main() {}" > build.rs
|
|
|
|
'';
|
|
|
|
|
2019-10-27 14:01:59 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Minimal X screenshot utility";
|
|
|
|
homepage = "https://github.com/neXromancers/shotgun";
|
|
|
|
license = with licenses; [ mpl20 ];
|
2023-01-17 17:06:52 +00:00
|
|
|
maintainers = with maintainers; [ figsoda lumi ];
|
2019-10-27 14:01:59 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|