diff options
Diffstat (limited to 'overlays/pass/default.nix')
-rw-r--r-- | overlays/pass/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/overlays/pass/default.nix b/overlays/pass/default.nix new file mode 100644 index 0000000..df42cf1 --- /dev/null +++ b/overlays/pass/default.nix | |||
@@ -0,0 +1,8 @@ | |||
1 | self: super: { | ||
2 | pass = (super.pass.withExtensions (exts: [ exts.pass-otp ])).overrideAttrs (old: | ||
3 | self.mylibs.fetchedGit ./pass.json // { | ||
4 | patches = old.patches ++ [ ./pass-fix-pass-init.patch ]; | ||
5 | } | ||
6 | ); | ||
7 | |||
8 | } | ||