35 lines
1 KiB
Nix
35 lines
1 KiB
Nix
{ lib, stdenv, python3, fetchFromGitHub, exiftool, makeWrapper }:
|
|
let
|
|
pythonEnv = python3.withPackages (p: with p; [ tqdm ]);
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "phockup";
|
|
version = "1.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ivandokov";
|
|
repo = "phockup";
|
|
rev = version;
|
|
sha256 = "sha256-Ho9aZjBvSwFMur2NubhP4olPN31SNTEdQGCUV7nX0uE=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|