From 6acad9ea0443d39b1dc9a0df7c33b4d67709cfd8 Mon Sep 17 00:00:00 2001 From: Aristid Breitkreuz Date: Thu, 7 Jan 2016 22:05:13 +0100 Subject: mozjpeg: init at 3.1 --- pkgs/applications/graphics/mozjpeg/default.nix | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pkgs/applications/graphics/mozjpeg/default.nix (limited to 'pkgs/applications/graphics/mozjpeg') diff --git a/pkgs/applications/graphics/mozjpeg/default.nix b/pkgs/applications/graphics/mozjpeg/default.nix new file mode 100644 index 0000000000000..2845bfd3e27b9 --- /dev/null +++ b/pkgs/applications/graphics/mozjpeg/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, file, libpng, nasm }: + +stdenv.mkDerivation rec { + version = "3.1"; + name = "mozjpeg-${version}"; + + src = fetchurl { + url = "https://github.com/mozilla/mozjpeg/releases/download/v${version}/mozjpeg-${version}-release-source.tar.gz"; + sha256 = "07vs0xq9di7bv3y68daig8dvxvjqrn8a5na702gj3nn58a1xivfy"; + }; + + postPatch = '' + + sed -i -e "s!/usr/bin/file!${file}/bin/file!g" configure + ''; + + 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 = stdenv.lib.licenses.bsd3; + maintainers = [ stdenv.lib.maintainers.aristid ]; + platforms = stdenv.lib.platforms.all; + }; +} -- cgit 1.4.1