mchprs: 0.4.1 -> 0.5.1

Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
This commit is contained in:
ocfox 2024-09-26 22:22:36 +08:00
parent 08afffbd72
commit 671cdd8230
No known key found for this signature in database
2 changed files with 1075 additions and 1046 deletions

File diff suppressed because it is too large Load Diff

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";