shotgun: init at 2.2.0

wip/yesman
lumi 5 years ago committed by Jon
parent cbeb6570ac
commit ac2d736b3a
  1. 5
      maintainers/maintainer-list.nix
  2. 28
      pkgs/tools/graphics/shotgun/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -3911,6 +3911,11 @@
githubId = 13791;
name = "Luke Gorrie";
};
lumi = {
email = "lumi@pew.im";
github = "lumi-me-not";
name = "lumi";
};
luz = {
email = "luz666@daum.net";
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 { };
shotgun = callPackage ../tools/graphics/shotgun {};
shutter = callPackage ../applications/graphics/shutter { };
simple-scan = gnome3.simple-scan;

Loading…
Cancel
Save