mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 05:09:09 +02:00
8 lines
198 B
Nix
8 lines
198 B
Nix
{ name, writeShellApplication, curl, ... }:
|
|
writeShellApplication {
|
|
inherit name;
|
|
runtimeInputs = [ curl ];
|
|
text = ''
|
|
curl https://nixpkgs.molybdenum.software/api/v2/landings/"$1"
|
|
'';
|
|
}
|