about summary refs log tree commit diff
path: root/overlays/patches/default.nix
blob: 4c664ba3ab11c6728c55b433261a320d8c5fe9ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
self: super: {
  cgit = self.callPackage ./cgit { inherit (super) cgit; };

  dino = self.callPackage ./dino { inherit (super) dino; };

  firefoxPackages = self.callPackage ./firefox/packages.nix {
    inherit (super) firefoxPackages;
  };

  public-inbox = self.callPackage ./public-inbox {
    inherit (super) public-inbox;
  };

  python3 = self.callPackage ./python { python = super.python3; };

  tmux = self.callPackage ./tmux { inherit (super) tmux; };
}