38 lines
984 B
Nix
38 lines
984 B
Nix
|
{ stdenv, pass, fetchFromGitHub, pythonPackages, makeWrapper }:
|
||
|
|
||
|
let
|
||
|
pythonEnv = pythonPackages.python.withPackages (p: [ p.defusedxml ]);
|
||
|
|
||
|
in stdenv.mkDerivation rec {
|
||
|
name = "pass-import-${version}";
|
||
|
version = "2.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "roddhjav";
|
||
|
repo = "pass-import";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "189wf2jz2j43k27930cnl53sm2drh1s0nq1nmh4is3rzn8cna6wq";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ makeWrapper ];
|
||
|
|
||
|
buildInputs = [ pythonEnv ];
|
||
|
|
||
|
dontBuild = true;
|
||
|
|
||
|
installFlags = [ "PREFIX=$(out)" ];
|
||
|
|
||
|
postFixup = ''
|
||
|
wrapProgram $out/lib/password-store/extensions/import.bash \
|
||
|
--prefix PATH : "${pythonEnv}/bin"
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Pass extension for importing data from existing password managers";
|
||
|
homepage = https://github.com/roddhjav/pass-import;
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ lovek323 the-kenny fpletz tadfisher ];
|
||
|
platforms = platforms.unix;
|
||
|
};
|
||
|
}
|