Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 088c6b07f6db
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d78891a0b9df
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 22, 2020

  1. rocksdb: 6.12.7 -> 6.14.5

    r-ryantm committed Nov 22, 2020
    Copy the full SHA
    cdcc01a View commit details

Commits on Nov 26, 2020

  1. Merge pull request #104581 from r-ryantm/auto-update/rocksdb

    rocksdb: 6.12.7 -> 6.14.5
    marsam authored Nov 26, 2020
    Copy the full SHA
    d78891a View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/rocksdb/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/rocksdb/default.nix
Original file line number Diff line number Diff line change
@@ -15,13 +15,13 @@

stdenv.mkDerivation rec {
pname = "rocksdb";
version = "6.12.7";
version = "6.14.5";

src = fetchFromGitHub {
owner = "facebook";
repo = pname;
rev = "v${version}";
sha256 = "0cpi0v691xsh20hj5x2y2z7dmjvhd3brr0swszv0xqjg2q0f7zdb";
sha256 = "0k5385apwyhc3pzfq9104mphf6lf1lb33nhcfbpqiwwn9q14z6n3";
};

nativeBuildInputs = [ cmake ninja ];