summary refs log tree commit diff
path: root/pkgs/development/libraries/zimg/default.nix
diff options
context:
space:
mode:
authorrnhmjoj <micheleguerinirocco@me.com>2017-02-04 19:32:13 +0100
committerrnhmjoj <micheleguerinirocco@me.com>2017-02-04 19:33:46 +0100
commit4e83364a1df7e854d5ad3ffc871422f1f2e5cb27 (patch)
treeb2c879f9eaab1ddbc73c2d4d4d1fdd4b693ef0e9 /pkgs/development/libraries/zimg/default.nix
parent9e299acf873285e30008588ac3e21cda12f865fb (diff)
downloadnixpkgs-4e83364a1df7e854d5ad3ffc871422f1f2e5cb27.tar
nixpkgs-4e83364a1df7e854d5ad3ffc871422f1f2e5cb27.tar.gz
nixpkgs-4e83364a1df7e854d5ad3ffc871422f1f2e5cb27.tar.bz2
nixpkgs-4e83364a1df7e854d5ad3ffc871422f1f2e5cb27.tar.lz
nixpkgs-4e83364a1df7e854d5ad3ffc871422f1f2e5cb27.tar.xz
nixpkgs-4e83364a1df7e854d5ad3ffc871422f1f2e5cb27.tar.zst
nixpkgs-4e83364a1df7e854d5ad3ffc871422f1f2e5cb27.zip
zimg: 2.3 -> 2.4
Diffstat (limited to 'pkgs/development/libraries/zimg/default.nix')
-rw-r--r--pkgs/development/libraries/zimg/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/development/libraries/zimg/default.nix b/pkgs/development/libraries/zimg/default.nix
index d1d0735e46d..7fb14de7951 100644
--- a/pkgs/development/libraries/zimg/default.nix
+++ b/pkgs/development/libraries/zimg/default.nix
@@ -2,22 +2,22 @@
 
 stdenv.mkDerivation rec{
   name = "zimg-${version}";
-  version = "2.3";
+  version = "2.4";
 
   src = fetchFromGitHub {
-    owner = "sekrit-twc";
-    repo  = "zimg";
-    rev    = "9cbe9b0de66a690bdd142bae0e656e27c1f50ade";
-    sha256 = "1qj5fr8ghgnyfjzdvgkvplicqsgyp05g3pvsdrg9yivvx32291hp";
+    owner  = "sekrit-twc";
+    repo   = "zimg";
+    rev    = "v${version}";
+    sha256 = "11pk8a5manr751jhy0xrql57jzab57lwqjxbpd8kvm9m8b51icwq";
   };
 
   buildInputs = [ autoreconfHook ];
 
   meta = with stdenv.lib; {
     description = "Scaling, colorspace conversion and dithering library";
-    homepage = https://github.com/sekrit-twc/zimg;
-    license  = licenses.wtfpl;
-    platforms = platforms.linux; # check upstream issue #52
+    homepage    = https://github.com/sekrit-twc/zimg;
+    license     = licenses.wtfpl;
+    platforms   = platforms.linux; # check upstream issue #52
     maintainers = with maintainers; [ rnhmjoj ];
   };
 }