]> git.immae.eu Git - perso/Immae/Config/Nix/NUR.git/blob - overlays/vit/default.nix
Initial commit published for NUR
[perso/Immae/Config/Nix/NUR.git] / overlays / vit / default.nix
1 self: super:
2 {
3 vit = (super.vit.override { inherit (self) taskwarrior; }).overrideAttrs (old:
4 self.mylibs.fetchedGithub ./vit.json // {
5 buildInputs = old.buildInputs ++ (with self.perlPackages; [ TryTiny TextCharWidth ]);
6 }
7 );
8 }