nixpkgs/pkgs/tools/graphics/shotgun/default.nix

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

29 lines
767 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform, pkg-config, libXrandr, libX11 }:
2019-10-27 15:01:59 +01:00
rustPlatform.buildRustPackage rec {
pname = "shotgun";
2022-10-01 03:33:06 +02:00
version = "2.3.1";
2019-10-27 15:01:59 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libXrandr libX11 ];
src = fetchFromGitHub {
owner = "neXromancers";
repo = pname;
rev = "v${version}";
2022-10-01 03:33:06 +02:00
sha256 = "sha256-hu8UYia2tu6I6Ii9aZ6vfpbrcDz4yeEDkljGFa5s6VY=";
2019-10-27 15:01:59 +01:00
};
2022-10-01 03:33:06 +02:00
cargoSha256 = "sha256-UOchXeBX+sDuLhwWQRVFCj9loJUyr4IltiAKsQoh5/c=";
2019-10-27 15:01:59 +01:00
meta = with lib; {
description = "Minimal X screenshot utility";
homepage = "https://github.com/neXromancers/shotgun";
license = with licenses; [ mpl20 ];
maintainers = with maintainers; [ lumi ];
platforms = platforms.linux;
badPlatforms = [ "aarch64-linux" ];
};
}