mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03: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
25 lines
593 B
Nix
25 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;
|
|
};
|
|
}
|