12 lines
364 B
Nix
12 lines
364 B
Nix
# Custom packages, that can be defined similarly to ones from nixpkgs
|
|
# You can build them using 'nix build .#example'
|
|
{
|
|
pkgs,
|
|
# lib,
|
|
...
|
|
}: {
|
|
# mkdocs-rss-plugin = pkgs.callPackage ./mkdocs-rss-plugin/default.nix {};
|
|
tildefriends = pkgs.callPackage ./tildefriends/default.nix {};
|
|
vedirect-reader = pkgs.callPackage ./vedirect-reader/default.nix {};
|
|
}
|