nixpkgs/pkgs/applications/graphics/jpeg-archive/default.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, mozjpeg, makeWrapper, coreutils, parallel, findutils }:
2019-03-17 20:18:41 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "jpeg-archive";
2019-03-17 20:18:41 +00:00
version = "2.2.0"; # can be found here https://github.com/danielgtaylor/jpeg-archive/blob/master/src/util.c#L15
# update with
# nix-prefetch-git https://github.com/danielgtaylor/jpeg-archive
src = fetchFromGitHub {
owner = "danielgtaylor";
repo = "jpeg-archive";
rev = "8da4bf76b6c3c0e11e4941294bfc1857c119419b";
sha256 = "1639y9qp2ls80fzimwmwds792q8rq5p6c14c0r4jswx4yp6dcs33";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ mozjpeg ];
prePatch = ''
# allow override LIBJPEG
substituteInPlace Makefile --replace 'LIBJPEG =' 'LIBJPEG ?='
'';
makeFlags = [
2021-05-16 11:56:30 +00:00
"CC=${stdenv.cc.targetPrefix}cc"
2019-03-17 20:18:41 +00:00
"PREFIX=$(out)"
"MOZJPEG_PREFIX=${mozjpeg}"
2021-05-16 11:56:30 +00:00
"LIBJPEG=${mozjpeg}/lib/libjpeg${stdenv.hostPlatform.extensions.sharedLibrary}"
2019-03-17 20:18:41 +00:00
];
postInstall = ''
wrapProgram $out/bin/jpeg-archive \
--set PATH "$out/bin:${coreutils}/bin:${parallel}/bin:${findutils}/bin"
'';
meta = with lib; {
2019-03-17 20:18:41 +00:00
description = "Utilities for archiving photos for saving to long term storage or serving over the web";
homepage = "https://github.com/danielgtaylor/jpeg-archive";
2020-06-11 10:08:38 +00:00
license = licenses.mit;
2019-03-17 20:18:41 +00:00
maintainers = [ maintainers.srghma ];
platforms = platforms.all;
};
}