pass: allow adding extensions without rebuilding the package
Until now, `pkgs.pass` was rebuilt entirely when adding an extension using the `pass.withExtensions`-function. This is fixed now by removing the linking of extensions from the fixupPhase and merge all paths (including those from pkgs.pass) together in using `pkgs.buildEnv`.
This commit is contained in:
parent
16001eab7c
commit
187f3e79ca
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, lib, pkgs, fetchurl, buildEnv
|
{ stdenv, lib, pkgs, fetchurl, buildEnv
|
||||||
, coreutils, gnused, getopt, git, tree, gnupg, openssl, which, procps
|
, coreutils, gnused, getopt, git, tree, gnupg, openssl, which, procps
|
||||||
, qrencode , makeWrapper
|
, qrencode , makeWrapper, pass, symlinkJoin
|
||||||
|
|
||||||
, xclip ? null, xdotool ? null, dmenu ? null
|
, xclip ? null, xdotool ? null, dmenu ? null
|
||||||
, x11Support ? !stdenv.isDarwin
|
, x11Support ? !stdenv.isDarwin
|
||||||
@ -23,15 +23,29 @@ let
|
|||||||
|
|
||||||
env = extensions:
|
env = extensions:
|
||||||
let
|
let
|
||||||
selected = extensions passExtensions
|
selected = [ pass ] ++ extensions passExtensions
|
||||||
++ stdenv.lib.optional tombPluginSupport passExtensions.tomb;
|
++ stdenv.lib.optional tombPluginSupport passExtensions.tomb;
|
||||||
in buildEnv {
|
in buildEnv {
|
||||||
name = "pass-extensions-env";
|
name = "pass-extensions-env";
|
||||||
paths = selected;
|
paths = selected;
|
||||||
buildInputs = concatMap (x: x.buildInputs) selected;
|
buildInputs = [ makeWrapper ] ++ concatMap (x: x.buildInputs) selected;
|
||||||
};
|
|
||||||
|
|
||||||
generic = extensionsEnv: extraPassthru: stdenv.mkDerivation rec {
|
postBuild = ''
|
||||||
|
files=$(find $out/bin/ -type f -exec readlink -f {} \;)
|
||||||
|
rm $out/bin
|
||||||
|
mkdir $out/bin
|
||||||
|
|
||||||
|
for i in $files; do
|
||||||
|
ln -sf $i $out/bin/$(basename $i)
|
||||||
|
done
|
||||||
|
|
||||||
|
wrapProgram $out/bin/pass \
|
||||||
|
--set SYSTEM_EXTENSION_DIR "$out/lib/password-store/extensions"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
version = "1.7.3";
|
version = "1.7.3";
|
||||||
pname = "password-store";
|
pname = "password-store";
|
||||||
|
|
||||||
@ -40,16 +54,16 @@ let
|
|||||||
sha256 = "1x53k5dn3cdmvy8m4fqdld4hji5n676ksl0ql4armkmsds26av1b";
|
sha256 = "1x53k5dn3cdmvy8m4fqdld4hji5n676ksl0ql4armkmsds26av1b";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./set-correct-program-name-for-sleep.patch ]
|
patches = [
|
||||||
++ stdenv.lib.optional stdenv.isDarwin ./no-darwin-getopt.patch
|
./set-correct-program-name-for-sleep.patch
|
||||||
|
./extension-dir.patch
|
||||||
|
] ++ stdenv.lib.optional stdenv.isDarwin ./no-darwin-getopt.patch
|
||||||
# TODO (@Ma27) this patch adds support for wl-clipboard and can be removed during the next
|
# TODO (@Ma27) this patch adds support for wl-clipboard and can be removed during the next
|
||||||
# version bump.
|
# version bump.
|
||||||
++ stdenv.lib.optional waylandSupport ./clip-wayland-support.patch;
|
++ stdenv.lib.optional waylandSupport ./clip-wayland-support.patch;
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
buildInputs = [ extensionsEnv ];
|
|
||||||
|
|
||||||
installFlags = [ "PREFIX=$(out)" "WITH_ALLCOMP=yes" ];
|
installFlags = [ "PREFIX=$(out)" "WITH_ALLCOMP=yes" ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
@ -77,13 +91,6 @@ let
|
|||||||
++ optional waylandSupport wl-clipboard);
|
++ optional waylandSupport wl-clipboard);
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
# Link extensions env
|
|
||||||
rmdir $out/lib/password-store/extensions
|
|
||||||
ln -s ${extensionsEnv}/lib/password-store/extensions $out/lib/password-store/.
|
|
||||||
for f in ${extensionsEnv}/share/man/man1/*.1.gz; do
|
|
||||||
ln -s $f $out/share/man/man1/
|
|
||||||
done
|
|
||||||
|
|
||||||
# Fix program name in --help
|
# Fix program name in --help
|
||||||
substituteInPlace $out/bin/pass \
|
substituteInPlace $out/bin/pass \
|
||||||
--replace 'PROGRAM="''${0##*/}"' "PROGRAM=pass"
|
--replace 'PROGRAM="''${0##*/}"' "PROGRAM=pass"
|
||||||
@ -103,6 +110,9 @@ let
|
|||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs tests
|
patchShebangs tests
|
||||||
|
|
||||||
|
substituteInPlace src/password-store.sh \
|
||||||
|
--replace "@out@" "$out"
|
||||||
|
|
||||||
# the turning
|
# the turning
|
||||||
sed -i -e 's@^PASS=.*''$@PASS=$out/bin/pass@' \
|
sed -i -e 's@^PASS=.*''$@PASS=$out/bin/pass@' \
|
||||||
-e 's@^GPGS=.*''$@GPG=${gnupg}/bin/gpg2@' \
|
-e 's@^GPGS=.*''$@GPG=${gnupg}/bin/gpg2@' \
|
||||||
@ -127,13 +137,14 @@ let
|
|||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
extensions = passExtensions;
|
extensions = passExtensions;
|
||||||
} // extraPassthru;
|
withExtensions = env;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Stores, retrieves, generates, and synchronizes passwords securely";
|
description = "Stores, retrieves, generates, and synchronizes passwords securely";
|
||||||
homepage = https://www.passwordstore.org/;
|
homepage = https://www.passwordstore.org/;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ lovek323 the-kenny fpletz tadfisher globin ];
|
maintainers = with maintainers; [ lovek323 the-kenny fpletz tadfisher globin ma27 ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@ -144,10 +155,4 @@ let
|
|||||||
synchronize, generate, and manipulate passwords.
|
synchronize, generate, and manipulate passwords.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
in
|
|
||||||
|
|
||||||
generic (env (_: [])) {
|
|
||||||
withExtensions = extensions: generic (env extensions) {};
|
|
||||||
}
|
}
|
||||||
|
32
pkgs/tools/security/pass/extension-dir.patch
Normal file
32
pkgs/tools/security/pass/extension-dir.patch
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
diff --git a/Makefile b/Makefile
|
||||||
|
index eac2291..1b1df0a 100644
|
||||||
|
--- a/Makefile
|
||||||
|
+++ b/Makefile
|
||||||
|
@@ -46,12 +46,12 @@ install: install-common
|
||||||
|
@install -v -d "$(DESTDIR)$(LIBDIR)/password-store" && install -m 0644 -v "$(PLATFORMFILE)" "$(DESTDIR)$(LIBDIR)/password-store/platform.sh"
|
||||||
|
@install -v -d "$(DESTDIR)$(LIBDIR)/password-store/extensions"
|
||||||
|
@install -v -d "$(DESTDIR)$(BINDIR)/"
|
||||||
|
- @trap 'rm -f src/.pass' EXIT; sed 's:.*PLATFORM_FUNCTION_FILE.*:source "$(LIBDIR)/password-store/platform.sh":;s:^SYSTEM_EXTENSION_DIR=.*:SYSTEM_EXTENSION_DIR="$(LIBDIR)/password-store/extensions":' src/password-store.sh > src/.pass && \
|
||||||
|
+ @trap 'rm -f src/.pass' EXIT; sed 's:.*PLATFORM_FUNCTION_FILE.*:source "$(LIBDIR)/password-store/platform.sh":;' src/password-store.sh > src/.pass && \
|
||||||
|
install -v -d "$(DESTDIR)$(BINDIR)/" && install -m 0755 -v src/.pass "$(DESTDIR)$(BINDIR)/pass"
|
||||||
|
else
|
||||||
|
install: install-common
|
||||||
|
@install -v -d "$(DESTDIR)$(LIBDIR)/password-store/extensions"
|
||||||
|
- @trap 'rm -f src/.pass' EXIT; sed '/PLATFORM_FUNCTION_FILE/d;s:^SYSTEM_EXTENSION_DIR=.*:SYSTEM_EXTENSION_DIR="$(LIBDIR)/password-store/extensions":' src/password-store.sh > src/.pass && \
|
||||||
|
+ @trap 'rm -f src/.pass' EXIT; sed '/PLATFORM_FUNCTION_FILE/d;' src/password-store.sh > src/.pass && \
|
||||||
|
install -v -d "$(DESTDIR)$(BINDIR)/" && install -m 0755 -v src/.pass "$(DESTDIR)$(BINDIR)/pass"
|
||||||
|
endif
|
||||||
|
|
||||||
|
diff --git a/src/password-store.sh b/src/password-store.sh
|
||||||
|
index 68551a4..2f3b5b7 100755
|
||||||
|
--- a/src/password-store.sh
|
||||||
|
+++ b/src/password-store.sh
|
||||||
|
@@ -656,7 +656,7 @@ cmd_extension_or_show() {
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
-SYSTEM_EXTENSION_DIR=""
|
||||||
|
+SYSTEM_EXTENSION_DIR="${SYSTEM_EXTENSION_DIR:-@out@/lib/password-store/extensions}"
|
||||||
|
cmd_extension() {
|
||||||
|
check_sneaky_paths "$1"
|
||||||
|
local user_extension system_extension extension
|
Loading…
x
Reference in New Issue
Block a user