summaryrefslogtreecommitdiff
path: root/overlays/pass/default.nix
blob: df42cf19fbe293616fcf6227a9e6ba08dc0041c5 (plain) (blame)
1
2
3
4
5
6
7
8
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 ];
    }
  );

}