about summary refs log tree commit diff
path: root/pkgs/applications/misc/oranda
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-06-29 11:51:07 -0400
committerfigsoda <figsoda@pm.me>2023-07-03 10:38:59 -0400
commit1a7adacc7e280c39af9d240a59a9465e82d0d54b (patch)
treea7f9886a792da94c507043a15836cf4942ad3d1c /pkgs/applications/misc/oranda
parentc84b82306553090ecbeeee0fe322cdc8b7e6f6b8 (diff)
downloadnixlib-1a7adacc7e280c39af9d240a59a9465e82d0d54b.tar
nixlib-1a7adacc7e280c39af9d240a59a9465e82d0d54b.tar.gz
nixlib-1a7adacc7e280c39af9d240a59a9465e82d0d54b.tar.bz2
nixlib-1a7adacc7e280c39af9d240a59a9465e82d0d54b.tar.lz
nixlib-1a7adacc7e280c39af9d240a59a9465e82d0d54b.tar.xz
nixlib-1a7adacc7e280c39af9d240a59a9465e82d0d54b.tar.zst
nixlib-1a7adacc7e280c39af9d240a59a9465e82d0d54b.zip
oranda: 0.0.3 -> 0.1.0
Diff: https://github.com/axodotdev/oranda/compare/v0.0.3...v0.1.0

Changelog: https://github.com/axodotdev/oranda/blob/v0.1.0/CHANGELOG.md
Diffstat (limited to 'pkgs/applications/misc/oranda')
-rw-r--r--pkgs/applications/misc/oranda/default.nix15
1 files changed, 4 insertions, 11 deletions
diff --git a/pkgs/applications/misc/oranda/default.nix b/pkgs/applications/misc/oranda/default.nix
index 9bc9d68fb44e..4adc301b3d21 100644
--- a/pkgs/applications/misc/oranda/default.nix
+++ b/pkgs/applications/misc/oranda/default.nix
@@ -2,40 +2,34 @@
 , rustPlatform
 , fetchFromGitHub
 , pkg-config
-, bzip2
 , oniguruma
 , openssl
-, xz
-, zstd
 , stdenv
 , darwin
 }:
 
 rustPlatform.buildRustPackage rec {
   pname = "oranda";
-  version = "0.0.3";
+  version = "0.1.0";
 
   src = fetchFromGitHub {
     owner = "axodotdev";
     repo = "oranda";
     rev = "v${version}";
-    hash = "sha256-MT0uwLDrofCFyyYiUOogF2kNs6EPS1qxPz0gdK+Tkkg=";
+    hash = "sha256-bhMScPxf1svC6C8MvSHsVFrNzJYCkcR4mPJzK4OIoOU=";
   };
 
-  cargoHash = "sha256-dAnZc1VvOubfn7mnpttaB6FotN3Xc+t9Qn0n5uzv1Qg=";
+  cargoHash = "sha256-Zan5dTW/2k4rOl20lQwJWnzIiytKF2i+1oEW4o3k/vQ=";
 
   nativeBuildInputs = [
     pkg-config
   ];
 
   buildInputs = [
-    bzip2
     oniguruma
     openssl
-    xz
-    zstd
   ] ++ lib.optionals stdenv.isDarwin [
-    darwin.apple_sdk.frameworks.Security
+    darwin.apple_sdk.frameworks.CoreServices
   ];
 
   # requires internet access
@@ -45,7 +39,6 @@ rustPlatform.buildRustPackage rec {
 
   env = {
     RUSTONIG_SYSTEM_LIBONIG = true;
-    ZSTD_SYS_USE_PKG_CONFIG = true;
   };
 
   meta = with lib; {