blob: 7403a05b154c71ec6af1f09be4ee1d87ce563dc8 (
plain)
1
2
3
4
5
|
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example' or (legacy) 'nix-build -A example'
{pkgs ? (import ../nixpkgs.nix) {}}: {
# example = pkgs.callPackage ./example { };
}
|