nixos/packages/default.nix

7 lines
294 B
Nix
Raw Normal View History

2023-07-07 03:06:45 +04:00
# 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) {}}: {
2023-07-07 03:06:45 +04:00
# example = pkgs.callPackage ./example { };
nullpomino = pkgs.callPackage ./nullpomino.nix {};
2023-07-07 03:06:45 +04:00
}