versatiles: 3.8.1 -> 3.9.0 (#507957)

This commit is contained in:
Peder Bergebakken Sundt
2026-04-10 21:12:11 +00:00
committed by GitHub
+16 -3
View File
@@ -1,22 +1,35 @@
{
lib,
fetchFromGitHub,
openssl,
pkg-config,
rustPlatform,
versionCheckHook,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "versatiles";
version = "3.8.1";
version = "3.9.0";
src = fetchFromGitHub {
owner = "versatiles-org";
repo = "versatiles-rs";
tag = "v${finalAttrs.version}";
hash = "sha256-P1r+UzqMiu1BqXv+ORhUojKzjcl0kb9gBTBi6PseP0s=";
hash = "sha256-Ea72mCqwXs5lwqIk5W1JfCxsRLYsodzaFGoCEExejCc=";
};
cargoHash = "sha256-fju6aWh6HfVnVN60M0+LmGDBxdgDSaLl+iQ358vmYm8=";
cargoHash = "sha256-K75b/mYQ+YijUmQ+1VZv97nCZ3xCO67f0QcuFDI9atU=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
# Needed to get openssl-sys to use pkg-config.
env.OPENSSL_NO_VENDOR = 1;
__darwinAllowLocalNetworking = true;