mchprs: 0.4.1 -> 0.5.1 (#344670)

This commit is contained in:
Peder Bergebakken Sundt
2024-10-07 13:41:00 +02:00
committed by GitHub
2 changed files with 1075 additions and 1046 deletions
+1048 -1025
View File
File diff suppressed because it is too large Load Diff
+27 -21
View File
@@ -1,45 +1,51 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, sqlite
, zlib
, stdenv
, darwin
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
sqlite,
zlib,
stdenv,
clang,
darwin,
}:
rustPlatform.buildRustPackage rec {
pname = "mchprs";
version = "0.4.1";
version = "0.5.1";
src = fetchFromGitHub {
owner = "MCHPR";
repo = "MCHPRS";
rev = "v${version}";
hash = "sha256-y1ILZvnDWVlghvUVe8xU5wP2TMW+Q/l+V+bqDZrpnBk=";
rev = "refs/tags/v${version}";
hash = "sha256-Jm9ZsqCKOIxZsXQbCluYu7MgOD7hXYljcv/URaNVUW0=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"hematite-nbt-0.5.2" = "sha256-knBmH/32JJclhFZbKTNx5XgLSQ2rIrXUGu8uoAHAXMk=";
"hematite-nbt-0.5.2" = "sha256-ohhsMlRLFNesccxhqn0GAiVswcdMldD3gv0AXcviHU8=";
};
};
nativeBuildInputs = [
pkg-config
clang
rustPlatform.bindgenHook
];
buildInputs = [
openssl
sqlite
zlib
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.Security
];
buildInputs =
[
openssl
sqlite
zlib
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.SystemConfiguration
];
meta = with lib; {
mainProgram = "mchprs";