nixpkgs/pkgs/applications/audio/netease-music-tui/update-cargo-lock.sh
Vonfry e3c554ffca
netease-music-tui: 0.1.2 -> 0.1.3 (#118293)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-05 18:57:54 +02:00

21 lines
520 B
Bash

#!nix-shell
#!nix-shell -i bash -p coreutils gnugrep git cargo
# This updates cargo-lock.patch for the netease-music-tui version listed in
# default.nix.
set -eu -o verbose
here=$PWD
version=$(cat default.nix | grep '^ version = "' | cut -d '"' -f 2)
checkout=$(mktemp -d)
git clone -b "$version" --depth=1 https://github.com/betta-cyber/netease-music-tui "$checkout"
cd "$checkout"
cargo generate-lockfile
git add -f Cargo.lock
git diff HEAD -- Cargo.lock > "$here"/cargo-lock.patch
cd "$here"
rm -rf "$checkout"