summary refs log blame commit diff
path: root/pkgs/applications/audio/netease-cloud-music-gtk/update-cargo-lock.sh
blob: 75b04d1e77ca8a42c4e71e23d7f052eaf7c3da62 (plain) (tree)



















                                                                                                                       
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p coreutils ripgrep git cargo

# Ref: https://github.com/NixOS/nixpkgs/blob/nixos-21.05/pkgs/applications/audio/netease-music-tui/update-cargo-lock.sh

set -eu -vx

here=$PWD
version=$(cat default.nix | rg '^  version = "' | cut -d '"' -f 2)
checkout=$(mktemp -d)

git clone -b "$version" --depth=1 https://github.com/gmg137/netease-cloud-music-gtk "$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"