nixpkgs/pkgs/tools/graphics/imgur-screenshot/default.nix

30 lines
897 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, makeWrapper, curl, jq, gnugrep, libnotify, scrot, which, xclip }:
2015-11-06 20:42:11 +00:00
2021-01-15 09:19:50 +00:00
let deps = lib.makeBinPath [ curl jq gnugrep libnotify scrot which xclip ];
2015-11-06 20:42:11 +00:00
in stdenv.mkDerivation rec {
2020-10-13 12:36:37 +00:00
version = "2.0.0";
pname = "imgur-screenshot";
2015-11-06 20:42:11 +00:00
src = fetchFromGitHub {
owner = "jomo";
repo = "imgur-screenshot";
rev = "v${version}";
2020-10-13 12:36:37 +00:00
sha256 = "0fkhvfraijbrw806pgij41bn1hc3r7l7l3snkicmshxj83lmsd5k";
2015-11-06 20:42:11 +00:00
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
2020-10-13 12:36:37 +00:00
install -Dm755 imgur-screenshot $out/bin/imgur-screenshot
2015-11-06 20:42:11 +00:00
wrapProgram $out/bin/imgur-screenshot --prefix PATH ':' ${deps}
'';
meta = with lib; {
description = "A tool for easy screencapping and uploading to imgur";
homepage = "https://github.com/jomo/imgur-screenshot/";
2015-11-06 20:42:11 +00:00
platforms = platforms.linux;
license = licenses.mit;
maintainers = with maintainers; [ lw ];
};
}