summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2020-10-13 15:12:41 -0300
committerGitHub <noreply@github.com>2020-10-13 15:12:41 -0300
commita8c6511018dfb0c2014b768b36776fec18a04437 (patch)
treece84240324ad653ec7a1f185de7631c088d52359 /pkgs
parentfcac18aa12ffe85457d0e32e1c4fbba2a0f62d63 (diff)
parent70f033e97beb2d3b254781f4e54cb9aaa396d842 (diff)
downloadnixpkgs-a8c6511018dfb0c2014b768b36776fec18a04437.tar
nixpkgs-a8c6511018dfb0c2014b768b36776fec18a04437.tar.gz
nixpkgs-a8c6511018dfb0c2014b768b36776fec18a04437.tar.bz2
nixpkgs-a8c6511018dfb0c2014b768b36776fec18a04437.tar.lz
nixpkgs-a8c6511018dfb0c2014b768b36776fec18a04437.tar.xz
nixpkgs-a8c6511018dfb0c2014b768b36776fec18a04437.tar.zst
nixpkgs-a8c6511018dfb0c2014b768b36776fec18a04437.zip
Merge pull request #100410 from eyJhb/imgur-screenshot
imgur-screenshot: 1.7.4 -> 2.0.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/graphics/imgur-screenshot/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/graphics/imgur-screenshot/default.nix b/pkgs/tools/graphics/imgur-screenshot/default.nix
index c994ee02811..1a211ebd857 100644
--- a/pkgs/tools/graphics/imgur-screenshot/default.nix
+++ b/pkgs/tools/graphics/imgur-screenshot/default.nix
@@ -1,21 +1,21 @@
-{ stdenv, fetchFromGitHub, makeWrapper, curl, gnugrep, libnotify, scrot, which, xclip }:
+{ stdenv, fetchFromGitHub, makeWrapper, curl, jq, gnugrep, libnotify, scrot, which, xclip }:
 
-let deps = stdenv.lib.makeBinPath [ curl gnugrep libnotify scrot which xclip ];
+let deps = stdenv.lib.makeBinPath [ curl jq gnugrep libnotify scrot which xclip ];
 in stdenv.mkDerivation rec {
-  version = "1.7.4";
+  version = "2.0.0";
   pname = "imgur-screenshot";
 
   src = fetchFromGitHub {
     owner = "jomo";
     repo = "imgur-screenshot";
     rev = "v${version}";
-    sha256 = "1bhi9sk8v7szh2fj13qwvdwzy5dw2w4kml86sy1ns1rn0xin0cgr";
+    sha256 = "0fkhvfraijbrw806pgij41bn1hc3r7l7l3snkicmshxj83lmsd5k";
   };
 
   nativeBuildInputs = [ makeWrapper ];
 
   installPhase = ''
-    install -Dm755 imgur-screenshot.sh $out/bin/imgur-screenshot
+    install -Dm755 imgur-screenshot $out/bin/imgur-screenshot
     wrapProgram $out/bin/imgur-screenshot --prefix PATH ':' ${deps}
   '';