My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/overlays/default.nix

22 lines
929 B

/* 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); };
brook-frontend = self.callPackage ./kookie/brook-frontend { 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; };
iosevka = self.callPackage ./patches/iosevka { inherit (super) iosevka; };
}