Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
1.0 KiB
Nix
44 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
python3,
|
|
fetchFromGitHub,
|
|
exiftool,
|
|
makeWrapper,
|
|
}:
|
|
let
|
|
pythonEnv = python3.withPackages (p: with p; [ tqdm ]);
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "phockup";
|
|
version = "1.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ivandokov";
|
|
repo = "phockup";
|
|
rev = version;
|
|
sha256 = "sha256-44UjxTbC2XK+NThvesROdd7aGP7zr7g7bQiQZv2TvvM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
# based roughly on https://github.com/ivandokov/phockup#linux-without-snap
|
|
mkdir -p $out/bin $out/opt
|
|
mv * $out/opt
|
|
makeWrapper ${pythonEnv.interpreter} $out/bin/phockup --add-flags "$out/opt/phockup.py" --suffix PATH : ${lib.makeBinPath [ exiftool ]}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Media sorting tool to organize photos and videos from your camera in folders by year, month and day";
|
|
homepage = "https://github.com/ivandokov/phockup";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ aanderse ];
|
|
mainProgram = "phockup";
|
|
};
|
|
}
|