summaryrefslogtreecommitdiff
path: root/overlays/vit/default.nix
blob: 4624284002e1356942a8fd03258d62e09dd63e8f (plain) (blame)
1
2
3
4
5
6
7
8
self: super:
{
  vit = (super.vit.override { inherit (self) taskwarrior; }).overrideAttrs (old:
    self.mylibs.fetchedGithub ./vit.json // {
      buildInputs = old.buildInputs ++ (with self.perlPackages; [ TryTiny TextCharWidth ]);
    }
  );
}