Merge pull request #237587 from 9ary/shotgun-2.5.0

shotgun: 2.4.0 -> 2.5.0
This commit is contained in:
figsoda 2023-06-13 13:42:45 -04:00 committed by GitHub
commit 080dc68a60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,32 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub, pkg-config, libXrandr, libX11 }:
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "shotgun";
version = "2.4.0";
version = "2.5.0";
src = fetchFromGitHub {
owner = "neXromancers";
repo = pname;
rev = "v${version}";
sha256 = "sha256-fcb+eZXzpuEPFSZexbgDpoBX85gsiIqPlcPXruNGenk=";
sha256 = "sha256-ovqPBZznDQnQa9YW1xXA02Jl0AQ7sJNpzovA1SVR8Zc=";
};
cargoSha256 = "sha256-n5HPl2h0fr0MyGBivNVrrs23HAllIYtwaw1aaKWHCe4=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libXrandr libX11 ];
# build script tries to run git to get the current tag
postPatch = ''
echo "fn main() {}" > build.rs
'';
cargoSha256 = "sha256-mWifSN9Hpsivq0RdZ9l9+8CWaZMHfzzhT2r27FAuesU=";
meta = with lib; {
description = "Minimal X screenshot utility";
homepage = "https://github.com/neXromancers/shotgun";
license = with licenses; [ mpl20 ];
maintainers = with maintainers; [ figsoda lumi ];
maintainers = with maintainers; [ figsoda lumi novenary ];
platforms = platforms.linux;
};
}