mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
12 lines
376 B
Bash
Executable file
12 lines
376 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl pup common-updater-scripts
|
|
|
|
set -eu -o pipefail
|
|
|
|
version="$(curl -Ls https://fedorapeople.org/groups/virt/virtio-win/repo/latest/ | \
|
|
pup 'a[href*="virtio-win-"] text{}' | \
|
|
sed -E 's/virtio-win-(.*)\.noarch\.rpm/\1/' | \
|
|
sort -Vu | \
|
|
tail -n1)"
|
|
|
|
update-source-version virtio-win "$version"
|