Some packages I'm working on that haven't been contributed to nixpkgs (yet) for any reason.
This uses my-own-nixpkgs
To use this repository as an overlay in another project, follow these steps:
-
Add the Repository as an Input:
Add the following to your
nix
file to include this repository as an input:inputs = { lynpkgs.url = "https://github.com/lynatic1337/lynpkgs"; };
-
Include the Overlay in
pkgs
:When constructing
pkgs
, include the overlay as follows:pkgs = import inputs.nixpkgs { overlays = [ inputs.lynpkgs.overlays.default ]; };
-
Use Your Packages:
Access the packages in your project like this:
buildInputs = [ pkgs.example1 pkgs.example2 ];