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
937 B
Nix
31 lines
937 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libpng, nasm }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.3.1";
|
|
pname = "mozjpeg";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mozilla";
|
|
repo = "mozjpeg";
|
|
rev = "v${version}";
|
|
sha256 = "1na68860asn8b82ny5ilwbhh4nyl9gvx2yxmm4wr2v1v95v51fky";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ libpng nasm ];
|
|
|
|
meta = {
|
|
description = "Mozilla JPEG Encoder Project";
|
|
longDescription = ''
|
|
This project's goal is to reduce the size of JPEG files without reducing quality or compatibility with the
|
|
vast majority of the world's deployed decoders.
|
|
|
|
The idea is to reduce transfer times for JPEGs on the Web, thus reducing page load times.
|
|
'';
|
|
homepage = "https://github.com/mozilla/mozjpeg";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ lib.maintainers.aristid ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|