shotgun: init at 2.2.0
This commit is contained in:
parent
cbeb6570ac
commit
ac2d736b3a
|
@ -3911,6 +3911,11 @@
|
||||||
githubId = 13791;
|
githubId = 13791;
|
||||||
name = "Luke Gorrie";
|
name = "Luke Gorrie";
|
||||||
};
|
};
|
||||||
|
lumi = {
|
||||||
|
email = "lumi@pew.im";
|
||||||
|
github = "lumi-me-not";
|
||||||
|
name = "lumi";
|
||||||
|
};
|
||||||
luz = {
|
luz = {
|
||||||
email = "luz666@daum.net";
|
email = "luz666@daum.net";
|
||||||
github = "Luz";
|
github = "Luz";
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, libXrandr, libX11 }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "shotgun";
|
||||||
|
version = "2.2.0";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [ libXrandr libX11 ];
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "neXromancers";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "tJnF1X+NI1hP0J/n3rGy8TD/yIveqRPVlJvJvn0C7Do=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "TL2WehcCwygLMVVrBHOX1HgVtDhgVsIgUeiadEjCj1o=";
|
||||||
|
|
||||||
|
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" ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -20714,6 +20714,8 @@ in
|
||||||
|
|
||||||
shfmt = callPackage ../tools/text/shfmt { };
|
shfmt = callPackage ../tools/text/shfmt { };
|
||||||
|
|
||||||
|
shotgun = callPackage ../tools/graphics/shotgun {};
|
||||||
|
|
||||||
shutter = callPackage ../applications/graphics/shutter { };
|
shutter = callPackage ../applications/graphics/shutter { };
|
||||||
|
|
||||||
simple-scan = gnome3.simple-scan;
|
simple-scan = gnome3.simple-scan;
|
||||||
|
|
Loading…
Reference in New Issue