about summary refs log tree commit diff
path: root/overlays/patches/default.nix
blob: 23a2b465bc34ec3cac5dee46c6d8163cbd71e601 (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
28
29
30
31
32
33
34
35
36
37
38
39
self: super: {
  cgit = self.callPackage ./cgit { inherit (super) cgit; };

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

  emacs-pgtk = self.callPackage ./emacs {
    emacs = self.waylandPkgs.emacs-pgtk;
  };

  emacsPackagesFor = emacs: self.callPackage ./emacs/packages.nix {
    emacsPackages = super.emacsPackagesFor emacs;
  };

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

  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;
    llvmPackages = self.llvmPackages_8;
  };
  thunderbird-68 = self.callPackage ./thunderbird {
    thunderbird = super.thunderbird-68;
    llvmPackages = self.llvmPackages_latest;
  };

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

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