9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
31 lines
829 B
Nix
31 lines
829 B
Nix
{ lib, stdenv, libpng, fetchFromGitHub, pkg-config }:
|
|
let
|
|
version = "1.0.1";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "guetzli";
|
|
inherit version;
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "guetzli";
|
|
rev = "v${version}";
|
|
sha256 = "1wy9wfvyradp0aigfv8yijvj0dgb5kpq2yf2xki15f605jc1r5dm";
|
|
};
|
|
nativeBuildInputs = [ pkg-config ];
|
|
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 = lib.licenses.asl20;
|
|
platforms = lib.platforms.x86_64;
|
|
maintainers = [ lib.maintainers.seppeljordan ];
|
|
};
|
|
}
|