nixpkgs/pkgs/by-name/au/audiobookshelf/update.nu

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
1.1 KiB
Text
Raw Normal View History

#!/usr/bin/env nix-shell
#!nix-shell -i nu -p nushell common-updater-scripts prefetch-npm-deps
def main [] {
2024-01-18 20:21:47 +01:00
let sourceFile = $"(pwd)/pkgs/by-name/au/audiobookshelf/source.json"
let tags = list-git-tags --url=https://github.com/advplyr/audiobookshelf | lines | sort --natural | str replace v ''
let latest_tag = $tags | last
2024-01-18 20:21:47 +01:00
let current_version = open $sourceFile | get version
if $latest_tag != $current_version {
let source = nix-prefetch-github advplyr audiobookshelf --rev $"v($latest_tag)" | from json | merge { version: $latest_tag, depsHash: "", clientDepsHash: ""}
2024-01-18 20:21:47 +01:00
$source | save --force $sourceFile
let srcPath = nix-build $env.PWD -A audiobookshelf.src | complete | get stdout | lines | first
print $srcPath
ls $srcPath
$source | merge {
depsHash: (prefetch-npm-deps $"($srcPath)/package-lock.json"),
clientDepsHash: (prefetch-npm-deps $"($srcPath)/client/package-lock.json")
2024-01-18 20:21:47 +01:00
} | save --force $sourceFile
# appease the editorconfig CI check
2024-01-18 20:21:47 +01:00
echo "\n" | save --append $sourceFile
}
{before: $current_version, after: $latest_tag}
}