aboutsummaryrefslogtreecommitdiff
path: root/overlays/default.nix
blob: 7211edb5150937759a84338435352bf5f2325385 (plain)
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
/* Overlays in LIBKOOKIE are split into three parts
 * 
 * patches: upstream but with cool stuff
 * staging: things that might become upstream
 * kookie: scripts and utils that won't leave LIBKOOKIE
 */

self: super:

with super; {

  barrel-blog = callPackage ./kookie/barrel-blog { };

  invoice = callPackage ./kookie/invoice { };

  spacekookie-de = callPackage ./kookie/spacekookie-de { };

} // {

  nodemcu-uploader = callPackage ./staging/nodemcu-uploader { };
  
  pleroma = callPackage ./staging/pleroma { };
  
} // {

  emacs-ergoemacs-mode = callPackage ./patches/emacs-ergoemacs-mode { };
  
  htop = callPackage ./patches/htop { };

  # neomutt = callPackages ./patches/neomutt { };
}