Merge pull request #151425 from aanderse/phockup

phockup: init at 1.7.1
This commit is contained in:
Jonas Heinrich 2022-09-06 14:34:49 +02:00 committed by GitHub
commit a24579447c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ 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 ];
};
}

View File

@ -9877,6 +9877,8 @@ with pkgs;
wlroots = wlroots_0_14;
};
phockup = callPackage ../applications/misc/phockup { };
phodav = callPackage ../tools/networking/phodav { };
photon-rss = callPackage ../applications/networking/feedreaders/photon { };