depot/third_party/nixpkgs/pkgs/servers/misc/navidrome/update.nix
Default email 686ce24904 Project import generated by Copybara.
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
2023-02-16 18:41:37 +01:00

28 lines
541 B
Nix

{ writeScript
, lib
, coreutils
, runtimeShell
, git
, nix-update
, node2nix
, nix
}:
writeScript "update-navidrome" ''
#!${runtimeShell}
PATH=${lib.makeBinPath [ coreutils nix-update git node2nix nix ]}
set -euo pipefail
nix-update navidrome
src=$(nix-build . -A navidrome.src)
uiDir=$(realpath pkgs/servers/misc/navidrome/ui)
tempDir=$(mktemp -d)
cp $src/ui/package.json $src/ui/package-lock.json $tempDir
cd $tempDir
node2nix -d -l package-lock.json -c node-composition.nix
cp *.nix $uiDir
rm -rf $tempDir
''