aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/overlays/default.nix
blob: cf40e3e59ce286b80616186e33c7ddb8e71c308e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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: {

  barrel-blog = self.callPackage ./kookie/barrel-blog { inherit (super); };
  invoice = self.callPackage ./kookie/invoice { inherit (super); };
  spacekookie-de = self.callPackage ./kookie/spacekookie-de { inherit (super); };
  libkookie-emacs = self.callPackage ./kookie/emacs { inherit (super); };
  
  nodemcu-uploader = self.callPackage ./staging/nodemcu-uploader { };
  pleroma = self.callPackage ./staging/pleroma { };
  foo2zjs = self.callPackage ./staging/foo2zjs { };
  
  htop = self.callPackage ./patches/htop { inherit (super) htop; };
}