Unverified Commit 7d844862 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #241530 from figsoda/oranda

oranda: 0.1.0 -> 0.1.1
parents 5a15a93d fe1ee1fc
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -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
  ];