aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/security/pass/extensions/0001-Fix-installation-with-Nix.patch
blob: 55822f170d14ec2f1838797a454e0308ae2ee9b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
From 611cb2de31a460789c44615d3a52b8d24dbd6fdd Mon Sep 17 00:00:00 2001
From: Maximilian Bosch <maximilian@mbosch.me>
Date: Fri, 4 Dec 2020 21:53:52 +0100
Subject: [PATCH] Fix installation with Nix

---
 Makefile | 2 +-
 setup.py | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index 2febf4e..8feab91 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ all:
 	@echo
 
 install:
-	@python3 setup.py install --root="$(DESTDIR)" --optimize=1 --skip-build
+	@python3 setup.py install --root="$(DESTDIR)" --optimize=1 --skip-build --prefix=
 	@echo
 	@echo "pass-import is installed succesfully"
 	@echo
diff --git a/setup.py b/setup.py
index b30870c..d9fedbc 100644
--- a/setup.py
+++ b/setup.py
@@ -15,8 +15,8 @@ with Path('pass_import', '__about__.py').open() as file:
 with open('README.md') as file:
     long_description = file.read()
 
-share = Path(sys.prefix, 'share')
-lib = Path('/usr', 'lib', 'password-store', 'extensions')
+share = Path('/share')
+lib = Path('/lib', 'password-store', 'extensions')
 if '--user' in sys.argv:
     lib = Path.home() / '.password-store' / 'extensions'
     if 'XDG_DATA_HOME' in os.environ:
-- 
2.28.0