mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 21:04:30 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
86 lines
1.8 KiB
Nix
86 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
unzip,
|
|
makeWrapper,
|
|
perlPackages,
|
|
coreutils,
|
|
zip,
|
|
imagemagick,
|
|
pngcrush,
|
|
lcms2,
|
|
facedetect,
|
|
fbida,
|
|
}:
|
|
|
|
# TODO: add optional dependencies (snippet from fgallery source):
|
|
#
|
|
# if(system("jpegoptim -V >/dev/null 2>&1")) {
|
|
# $jpegoptim = 0;
|
|
# }
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fgallery";
|
|
version = "1.9.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.thregr.org/~wavexx/software/fgallery/releases/fgallery-${version}.zip";
|
|
hash = "sha256-FvF0wkRe3wTPUG9/GEBxkaxvZ1B4wEd9kI9rURHKxn0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
unzip
|
|
];
|
|
buildInputs = (
|
|
with perlPackages;
|
|
[
|
|
perl
|
|
ImageExifTool
|
|
CpanelJSONXS
|
|
]
|
|
);
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace "/usr" $out
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin"
|
|
mkdir -p "$out/share/fgallery"
|
|
|
|
cp -r * "$out/share/fgallery"
|
|
ln -s -r "$out/share/fgallery/fgallery" "$out/bin/fgallery"
|
|
|
|
# Don't preserve file attributes when copying files to output directories.
|
|
# (fgallery copies parts of itself to each output directory, and without
|
|
# this change the read-only nix store causes some bumps in the workflow.)
|
|
sed -i -e "s|'cp'|'cp', '--no-preserve=all'|g" "$out/share/fgallery/fgallery"
|
|
|
|
wrapProgram "$out/share/fgallery/fgallery" \
|
|
--set PERL5LIB "$PERL5LIB" \
|
|
--set PATH "${
|
|
lib.makeBinPath [
|
|
coreutils
|
|
zip
|
|
imagemagick
|
|
pngcrush
|
|
lcms2
|
|
facedetect
|
|
fbida
|
|
]
|
|
}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Static photo gallery generator";
|
|
homepage = "https://www.thregr.org/~wavexx/software/fgallery/";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
mainProgram = "fgallery";
|
|
};
|
|
}
|