8000 GitHub - chai-yuan/crpkgs
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chai-yuan/crpkgs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My Nix Packages Repository

This repository contains a collection of custom Nix packages that I have created. These packages can be easily integrated into your Nix projects or NixOS configurations.

Usage

To use these packages in your Nix projects, you can add this repository as an input to your flake.nix file. Here is an example:

{
  description = "My project using custom packages";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-24.05";
    crpkgs.url = "github:chai-yuan/crpkgs";
  };

  outputs = { self, nixpkgs, crpkgs }:
    let
      system = "x86_64-linux";  # or your system
      pkgs = import nixpkgs { inherit system; };
      crPkgs = crpkgs.packages.${system};
    in
    {
      packages.${system} = {
        my-custom-package = crPkgs.hello;
      };

      defaultPackage.${system} = crPkgs.hello;
    };
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

4215

Forks

Releases

No releases published

Packages

No packages published
0