gmic: 1.7.7 -> 1.7.8

This commit is contained in:
Robert Helgesson 2016-11-16 23:50:44 +01:00
parent b25f9ff20e
commit 38de6ed18e
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86

View file

@ -1,14 +1,16 @@
{ stdenv, fetchurl, fftw, zlib, libjpeg, libtiff, libpng }:
{ stdenv, fetchurl, fftw, zlib, libjpeg, libtiff, libpng, pkgconfig }:
stdenv.mkDerivation rec {
name = "gmic-${version}";
version = "1.7.7";
version = "1.7.8";
src = fetchurl {
url = "http://gmic.eu/files/source/gmic_${version}.tar.gz";
sha256 = "0shcxgq8nc391c0y0zh3l87g3p7fvsmgshi1x1jvvwwq1b9nf6vp";
sha256 = "1921s0n2frj8q95l8lm8was64cypnychgcgcavx9q8qljzbk4brs";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fftw zlib libjpeg libtiff libpng ];
sourceRoot = "${name}/src";