12 lines
471 B
Nix
12 lines
471 B
Nix
# 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, inputs }:
|
|
{
|
|
blade-formatter = pkgs.callPackage ./blade-formatter { };
|
|
cargo-checkmate = pkgs.callPackage ./cargo-checkmate.nix { };
|
|
lipsum = pkgs.callPackage ./lipsum.nix { };
|
|
emmet-cli = pkgs.callPackage ./emmet-cli.nix { };
|
|
material-wifi-icons = pkgs.callPackage ./material-wifi-icons.nix { };
|
|
}
|