mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
24 lines
593 B
Nix
24 lines
593 B
Nix
{ stdenv, fetchurl, libjpeg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.4.6";
|
|
name = "jpegoptim-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.kokkonen.net/tjko/src/${name}.tar.gz";
|
|
sha256 = "1dss7907fclfl8zsw0bl4qcw0hhz6fqgi3867w0jyfm3q9jfpcc8";
|
|
};
|
|
|
|
# There are no checks, it seems.
|
|
doCheck = false;
|
|
|
|
buildInputs = [ libjpeg ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Optimize JPEG files";
|
|
homepage = http://www.kokkonen.net/tjko/projects.html ;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.aristid ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|