nixos/pkgs/api.nix
2024-11-17 18:09:11 +01:00

15 lines
177 B
Nix

{
writeShellApplication,
nushell,
...
}:
writeShellApplication {
name = "api";
text = ''
nu ${../scripts/api.nu} "$@"
'';
runtimeInputs = [
nushell
];
}