]> git.immae.eu Git - perso/Immae/Config/Nix.git/blob - overlays/pass/default.nix
262492f51cae0b2dc531297c83c4e60088d3ecc4
[perso/Immae/Config/Nix.git] / overlays / pass / default.nix
1 self: super: {
2 pass = super.pass.overrideAttrs (old:
3 self.mylibs.fetchedGit ./pass.json // {
4 patches = old.patches ++ [ ./pass-fix-pass-init.patch ];
5 }
6 );
7
8 }