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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,14 @@
{ stdenv, fetchgit, pkgconfig, libpng, zlib, lcms2 }:
{ stdenv, fetchFromGitHub, pkgconfig, libpng, zlib, lcms2 }:
stdenv.mkDerivation rec {
name = "pngquant-${version}";
version = "2.11.7";
version = "2.12.1";
src = fetchgit {
url = "https://www.github.com/pornel/pngquant.git";
rev = "refs/tags/${version}";
sha256 = "1qr5qr2wznzp0v9xwyz4r3982rcm9kys913w8gwmv7qd1akvx2qh";
src = fetchFromGitHub {
owner = "pornel";
repo = "pngquant";
rev = version;
sha256 = "0jdvry3kvmmxcgwf5a3zbfz0idl6yl3700ag7pf8sk4lg4qp0llp";
fetchSubmodules = true;
};