Merge pull request #241530 from figsoda/oranda

oranda: 0.1.0 -> 0.1.1
This commit is contained in:
Weijia Wang 2023-07-05 15:19:43 +03:00 committed by GitHub
commit 7d84486272
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,23 +3,22 @@
, fetchFromGitHub
, pkg-config
, oniguruma
, openssl
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "oranda";
version = "0.1.0";
version = "0.1.1";
src = fetchFromGitHub {
owner = "axodotdev";
repo = "oranda";
rev = "v${version}";
hash = "sha256-bhMScPxf1svC6C8MvSHsVFrNzJYCkcR4mPJzK4OIoOU=";
hash = "sha256-hxGRBMePUVod0Nwz2ozkZ6vmV7Ev+KeUFVKQDEViFJw=";
};
cargoHash = "sha256-Zan5dTW/2k4rOl20lQwJWnzIiytKF2i+1oEW4o3k/vQ=";
cargoHash = "sha256-Bn9dH+Iw825vuInip3KVx2zAPZixQ3vHkfoDFwPFzpk=";
nativeBuildInputs = [
pkg-config
@ -27,7 +26,6 @@ rustPlatform.buildRustPackage rec {
buildInputs = [
oniguruma
openssl
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreServices
];