Files
nix/pkgs/default.nix
2023-10-06 12:11:50 +08:00

6 lines
264 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 ? (import ../nixpkgs.nix) { } }: with pkgs; {
waydroid-script = callPackage ./waydroid-script { };
}