]> git.immae.eu Git - perso/Immae/Config/Nix/NUR.git/blob - overlays/pass/default.nix
Use fetchgit rather than builtins
[perso/Immae/Config/Nix/NUR.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 }