pngquant: 2.11.7 -> 2.12.1

This commit is contained in:
volth
2018-07-04 21:15:50 +00:00
committed by GitHub
parent 04bd737062
commit 8326b4c519
+7 -6
View File
@@ -1,13 +1,14 @@
{ stdenv, fetchgit, pkgconfig, libpng, zlib, lcms2 }: { stdenv, fetchFromGitHub, pkgconfig, libpng, zlib, lcms2 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "pngquant-${version}"; name = "pngquant-${version}";
version = "2.11.7"; version = "2.12.1";
src = fetchgit { src = fetchFromGitHub {
url = "https://www.github.com/pornel/pngquant.git"; owner = "pornel";
rev = "refs/tags/${version}"; repo = "pngquant";
sha256 = "1qr5qr2wznzp0v9xwyz4r3982rcm9kys913w8gwmv7qd1akvx2qh"; rev = version;
sha256 = "0jdvry3kvmmxcgwf5a3zbfz0idl6yl3700ag7pf8sk4lg4qp0llp";
fetchSubmodules = true; fetchSubmodules = true;
}; };