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: 86a911f4140e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d5f51d0660ca
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 28, 2021

  1. simdjson: 0.8.0 -> 0.8.1

    tobim committed Jan 28, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    eps1lon Sebastian "Sebbie" Silbermann
    Copy the full SHA
    55ca4e6 View commit details
  2. Merge pull request #111018 from tobim/pkgs/simdjson-0.8.1

    simdjson: 0.8.0 -> 0.8.1
    danieldk authored Jan 28, 2021
    Copy the full SHA
    d5f51d0 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/simdjson/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/simdjson/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "simdjson";
version = "0.8.0";
version = "0.8.1";

src = fetchFromGitHub {
owner = "simdjson";
repo = "simdjson";
rev = "v${version}";
sha256 = "0lpb8la74xwd78d5mgwnzx4fy632jbmh0ip19v0dydwm0kagm0a3";
sha256 = "1x5f8b5s67kf9sjx04rp81q0f3dlnqfngn3h0lrfnphipald5fji";
};

nativeBuildInputs = [ cmake ];