3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/graphics/mozjpeg/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libpng, zlib, nasm }:
2016-01-07 21:05:13 +00:00
stdenv.mkDerivation rec {
version = "4.0.3";
pname = "mozjpeg";
2016-01-07 21:05:13 +00:00
2018-06-18 09:07:03 +01:00
src = fetchFromGitHub {
owner = "mozilla";
repo = "mozjpeg";
rev = "v${version}";
sha256 = "1wb2ys0yjy6hgpb9qvzjxs7sb2zzs44p6xf7n026mx5nx85hjbyv";
2016-01-07 21:05:13 +00:00
};
cmakeFlags = [ "-DENABLE_STATIC=NO" "-DPNG_SUPPORTED=TRUE" ]; # See https://github.com/mozilla/mozjpeg/issues/351
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libpng zlib nasm ];
2016-01-07 21:05:13 +00:00
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";
2021-01-15 13:21:58 +00:00
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.aristid ];
platforms = lib.platforms.all;
2016-01-07 21:05:13 +00:00
};
}