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: 33b9aa4f35fd
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fca4fbeba957
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 4, 2018

  1. Revert "libgit2: 0.26.6 -> 0.26.8"

    This reverts commit 28b4b4b.
    
    Fixes #51416.
    edolstra committed Dec 4, 2018
    Copy the full SHA
    fca4fbe View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/git2/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/git2/default.nix
Original file line number Diff line number Diff line change
@@ -5,14 +5,14 @@

stdenv.mkDerivation (rec {
name = "libgit2-${version}";
version = "0.26.8";
version = "0.26.6";
# keep the version in sync with pythonPackages.pygit2 and gnome3.libgit2-glib

src = fetchFromGitHub {
owner = "libgit2";
repo = "libgit2";
rev = "v${version}";
sha256 = "0wmjgvz8nrpk2dsn5bcc87nl0j5hb6pah2hzrj0b6jkk9mnin9fl";
sha256 = "17pjvprmdrx4h6bb1hhc98w9qi6ki7yl57f090n9kbhswxqfs7s3";
};

cmakeFlags = [ "-DTHREADSAFE=ON" ];