2018-06-18 08:07:03 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libpng, nasm }:
|
2016-01-07 21:05:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-06-18 08:07:03 +00:00
|
|
|
version = "3.3.1";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mozjpeg";
|
2016-01-07 21:05:13 +00:00
|
|
|
|
2018-06-18 08:07:03 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mozilla";
|
|
|
|
repo = "mozjpeg";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1na68860asn8b82ny5ilwbhh4nyl9gvx2yxmm4wr2v1v95v51fky";
|
2016-01-07 21:05:13 +00:00
|
|
|
};
|
|
|
|
|
2018-06-18 08:07:03 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ libpng 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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/mozilla/mozjpeg";
|
2016-01-07 21:05:13 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.aristid ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|