depot/third_party/nixpkgs/pkgs/applications/graphics/mozjpeg/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

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