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'
|
2025-01-01 23:55:46 +04:00
|
|
|
{ pkgs ? (import ../nixpkgs.nix) { } }: {
|
2023-07-07 03:06:45 +04:00
|
|
|
# example = pkgs.callPackage ./example { };
|
2025-01-01 23:55:46 +04:00
|
|
|
nullpomino = pkgs.callPackage ./nullpomino.nix { };
|
|
|
|
ddns-updater = pkgs.callPackage ./ddns-updater.nix { };
|
2025-01-10 18:55:32 +04:00
|
|
|
akkoma-emoji.sakomoji = pkgs.callPackage ./sakomoji { };
|
2023-07-07 03:06:45 +04:00
|
|
|
}
|