Files
nixos/pkgs/zim/updater.nix
T

20 lines
232 B
Nix
Raw Normal View History

2024-10-12 10:35:54 -05:00
{
writeShellApplication,
nix-prefetch,
go,
...
}:
let
goscript = ./updater.go;
in
writeShellApplication {
name = "update-zims";
runtimeInputs = [
go
nix-prefetch
];
text = ''
go run ${goscript}
'';
}