mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
94 lines
2.6 KiB
Nix
94 lines
2.6 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchzip, darktable, rawtherapee, ffmpeg, libheif, exiftool, imagemagick, makeWrapper, testers
|
|
, callPackage
|
|
, nixosTests
|
|
, librsvg }:
|
|
|
|
let
|
|
version = "240711-2197af848";
|
|
pname = "photoprism";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-ihDv5c5RUjDbFcAHJjzp/8qCwKfA+rlFXPziaYarzs8=";
|
|
};
|
|
|
|
libtensorflow = callPackage ./libtensorflow.nix { };
|
|
backend = callPackage ./backend.nix { inherit libtensorflow src version; };
|
|
frontend = callPackage ./frontend.nix { inherit src version; };
|
|
|
|
fetchModel = { name, hash }:
|
|
fetchzip {
|
|
inherit hash;
|
|
url = "https://dl.photoprism.org/tensorflow/${name}.zip";
|
|
stripRoot = false;
|
|
};
|
|
|
|
facenet = fetchModel {
|
|
name = "facenet";
|
|
hash = "sha256-aS5kkNhxOLSLTH/ipxg7NAa1w9X8iiG78jmloR1hpRo=";
|
|
};
|
|
|
|
nasnet = fetchModel {
|
|
name = "nasnet";
|
|
hash = "sha256-bF25jPmZLyeSWy/CGXZE/VE2UupEG2q9Jmr0+1rUYWE=";
|
|
};
|
|
|
|
nsfw = fetchModel {
|
|
name = "nsfw";
|
|
hash = "sha256-zy/HcmgaHOY7FfJUY6I/yjjsMPHR2Ote9ppwqemBlfg=";
|
|
};
|
|
|
|
assets_path = "$out/share/${pname}";
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
inherit pname version;
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
dontUnpack = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin ${assets_path}
|
|
|
|
# install backend
|
|
ln -s ${backend}/bin/photoprism $out/bin/photoprism
|
|
wrapProgram $out/bin/photoprism \
|
|
--set PHOTOPRISM_ASSETS_PATH ${assets_path} \
|
|
--set PHOTOPRISM_DARKTABLE_BIN ${darktable}/bin/darktable-cli \
|
|
--set PHOTOPRISM_RAWTHERAPEE_BIN ${rawtherapee}/bin/rawtherapee-cli \
|
|
--set PHOTOPRISM_HEIFCONVERT_BIN ${libheif}/bin/heif-dec \
|
|
--set PHOTOPRISM_RSVGCONVERT_BIN ${librsvg}/bin/rsvg-convert \
|
|
--set PHOTOPRISM_FFMPEG_BIN ${ffmpeg}/bin/ffmpeg \
|
|
--set PHOTOPRISM_EXIFTOOL_BIN ${exiftool}/bin/exiftool \
|
|
--set PHOTOPRISM_IMAGEMAGICK_BIN ${imagemagick}/bin/convert
|
|
|
|
# install frontend
|
|
ln -s ${frontend}/assets/* ${assets_path}
|
|
# install tensorflow models
|
|
ln -s ${nasnet}/nasnet ${assets_path}
|
|
ln -s ${nsfw}/nsfw ${assets_path}
|
|
ln -s ${facenet}/facenet ${assets_path}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
|
|
passthru.tests.photoprism = nixosTests.photoprism;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://photoprism.app";
|
|
description = "Personal Photo Management powered by Go and Google TensorFlow";
|
|
inherit (libtensorflow.meta) platforms;
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ benesim ];
|
|
mainProgram = "photoprism";
|
|
};
|
|
})
|