4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, mozjpeg, makeWrapper, coreutils, parallel, findutils }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "jpeg-archive";
|
|
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 = [
|
|
"PREFIX=$(out)"
|
|
"MOZJPEG_PREFIX=${mozjpeg}"
|
|
"LIBJPEG=${mozjpeg}/lib/libjpeg.so"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/jpeg-archive \
|
|
--set PATH "$out/bin:${coreutils}/bin:${parallel}/bin:${findutils}/bin"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Utilities for archiving photos for saving to long term storage or serving over the web";
|
|
homepage = "https://github.com/danielgtaylor/jpeg-archive";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.srghma ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|