Skip to content

packages I haven't contributed to Nixpkgs (yet)

Notifications You must be signed in to change notification settings

lynatic1337/lynpkgs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lynpkgs

Some packages I'm working on that haven't been contributed to nixpkgs (yet) for any reason.

This uses my-own-nixpkgs

Integrating Your Repository as an Overlay

To use this repository as an overlay in another project, follow these steps:

  1. 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";
    };
  2. Include the Overlay in pkgs:

    When constructing pkgs, include the overlay as follows:

    pkgs = import inputs.nixpkgs {
      overlays = [
        inputs.lynpkgs.overlays.default
      ];
    };
  3. Use Your Packages:

    Access the packages in your project like this:

    buildInputs = [ pkgs.example1 pkgs.example2 ];

About

packages I haven't contributed to Nixpkgs (yet)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages