Commit f7709cf1 authored by Jonas Heinrich's avatar Jonas Heinrich
Browse files

treewide: switch from rocksdb -> rocksdb_8_3

parent dc1287e4
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
{ fetchFromGitHub
, lib
, protobuf
, rocksdb
, rocksdb_8_3
, rust-jemalloc-sys-unprefixed
, rustPlatform
, rustc
@@ -9,6 +9,10 @@
, Security
, SystemConfiguration
}:

let
  rocksdb = rocksdb_8_3;
in
rustPlatform.buildRustPackage rec {
  pname = "polkadot";
  version = "1.10.0";
+2 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
, openssl
, libclang
, libcxx
, rocksdb
, rocksdb_8_3
, rustfmt
, perl
, hidapi
@@ -46,6 +46,7 @@ let
  pinData = lib.importJSON ./pin.json;
  version = pinData.version;
  hash = pinData.hash;
  rocksdb = rocksdb_8_3;
  inherit (darwin.apple_sdk_11_0) Libsystem;
  inherit (darwin.apple_sdk_11_0.frameworks) System IOKit AppKit Security;
in
+13 −2
Original line number Diff line number Diff line
{ lib, stdenv, cmake, rocksdb, rapidjson, pkg-config, fetchFromGitHub, zlib }:

{ lib
, stdenv
, cmake
, rocksdb_8_3
, rapidjson
, pkg-config
, fetchFromGitHub
, zlib
}:

let
  rocksdb = rocksdb_8_3;
in
stdenv.mkDerivation rec {
  pname = "sortmerna";
  version = "4.2.0";
+2 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
, udev
, protobuf
, libcxx
, rocksdb
, rocksdb_8_3
, installShellFiles
, pkg-config
, openssl
@@ -33,6 +33,7 @@
let
  version = "1.17.31";
  sha256 = "sha256-5qPW199o+CVJlqGwiAegsquBRWEb5uDKITxjN5dQYAQ=";
  rocksdb = rocksdb_8_3;

  inherit (darwin.apple_sdk_11_0) Libsystem;
  inherit (darwin.apple_sdk_11_0.frameworks) System IOKit AppKit Security;
+4 −1
Original line number Diff line number Diff line
@@ -4,13 +4,16 @@
, fetchFromGitHub
, pkg-config
, openssl
, rocksdb
, rocksdb_8_3
, testers
, surrealdb
, darwin
, protobuf
}:

let
  rocksdb = rocksdb_8_3;
in
rustPlatform.buildRustPackage rec {
  pname = "surrealdb";
  version = "1.3.1";
Loading