3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #43046 from volth/patch-173

pngquant: 2.11.7 -> 2.12.1
This commit is contained in:
xeji 2018-07-05 10:20:52 +02:00 committed by GitHub
commit 3adf14cda4
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 { 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;
}; };