nixpkgs/pkgs/applications/graphics/guetzli/default.nix
Sebastian Jordan b300472568 guetzli: init at 1.0.1 (#26595)
* guetzli: init at  1.0.1
* guetzli: move pkgconfig from buildInputs to nativeBuildInputs
* guetzli: use fetchFromGitHub instead of fetchgit
2017-07-02 13:01:18 +02:00

30 lines
834 B
Nix

{ stdenv, libpng, fetchFromGitHub, pkgconfig }:
let
version = "1.0.1";
in
stdenv.mkDerivation {
name = "guetzli-${version}";
src = fetchFromGitHub {
owner = "google";
repo = "guetzli";
rev = "v${version}";
sha256 = "1wy9wfvyradp0aigfv8yijvj0dgb5kpq2yf2xki15f605jc1r5dm";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libpng ];
installPhase = ''
mkdir -p $out/bin
install bin/Release/guetzli $out/bin/
'';
meta = {
description = "Perceptual JPEG encoder";
longDescription = "Guetzli is a JPEG encoder that aims for excellent compression density at high visual quality.";
homepage = "https://github.com/google/guetzli";
license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.x86_64;
maintainers = [ stdenv.lib.maintainers.seppeljordan ];
};
}