mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
1ac28e704f
Fixes #67797.
20 lines
463 B
Bash
Executable file
20 lines
463 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# This updates cargo-lock.patch for the diesel 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 "v$version" --depth=1 https://github.com/diesel-rs/diesel "$checkout"
|
|
cd "$checkout"
|
|
|
|
rm -f rust-toolchain
|
|
cargo generate-lockfile
|
|
git add -f Cargo.lock
|
|
git diff HEAD -- Cargo.lock > "$here"/cargo-lock.patch
|
|
|
|
cd "$here"
|
|
rm -rf "$checkout"
|