nixpkgs/pkgs/applications/graphics/mozjpeg/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
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.
2021-01-19 01:16:25 -08:00

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;
};
}