]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - overlays/pass/default.nix
Move Fiche to flakes
[perso/Immae/Config/Nix.git] / overlays / pass / default.nix
index df42cf19fbe293616fcf6227a9e6ba08dc0041c5..ad8facd61e02a422122392cef0624aa3efb70ee4 100644 (file)
@@ -1,8 +1,5 @@
 self: super: {
-  pass = (super.pass.withExtensions (exts: [ exts.pass-otp ])).overrideAttrs (old:
-    self.mylibs.fetchedGit ./pass.json // {
-      patches = old.patches ++ [ ./pass-fix-pass-init.patch ];
-    }
-  );
-
+  pass = super.pass.overrideAttrs (old: rec {
+    patches = old.patches ++ [ ./pass-fix-pass-init.patch ];
+  });
 }