Merge pull request #85239 from nomeata/joachim/wasmtime-version

wasmtime: Do not prefix version with `v`
This commit is contained in:
Jan Tojnar 2020-04-15 01:04:23 +02:00 committed by GitHub
commit 3759b67af2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,12 +2,12 @@
rustPlatform.buildRustPackage rec {
pname = "wasmtime";
version = "v0.12.0";
version = "0.12.0";
src = fetchFromGitHub {
owner = "bytecodealliance";
repo = "${pname}";
rev = "${version}";
rev = "v${version}";
sha256 = "08dhk5s8rv41mjqbwfqwqmp6p6p9y7qc5yc76ljjd9l7j1phl7mr";
fetchSubmodules = true;
};