mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
8 lines
413 B
Text
Executable file
8 lines
413 B
Text
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i nu -p nushell common-updater-scripts zon2nix
|
|
|
|
let latest_tag = list-git-tags --url=https://codeberg.org/ifreund/waylock | lines | sort --natural | str replace v '' | last
|
|
update-source-version waylock $latest_tag
|
|
|
|
http get $"https://codeberg.org/ifreund/waylock/raw/tag/v($latest_tag)/build.zig.zon" | save build.zig.zon
|
|
zon2nix > pkgs/by-name/wa/waylock/build.zig.zon.nix
|