about summary refs log tree commit diff
path: root/overlays/patches/default.nix
blob: 40bd5b39f179bc0b3b928f0a3d04f2fcdc602fc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
self: super: {
  cgit = self.callPackage ./cgit { inherit (super) cgit; };

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

  inherit (self.waylandPkgs) emacs-pgtk;

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

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

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

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

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

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

  waylandPkgs = self.extend (import ./nixpkgs-wayland);

  youtube-dl = self.callPackage ./youtube-dl { inherit (super) youtube-dl; };
}