summary refs log tree commit diff
path: root/pkgs/development/libraries/git2
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-02-05 23:50:47 +0100
committerJan Tojnar <jtojnar@gmail.com>2020-02-06 00:02:11 +0100
commite8a766883fe0061ef60e5f0b70a95844957ec777 (patch)
tree111e2815661c79ec4ddb6f176307c3ec15dcc3df /pkgs/development/libraries/git2
parenta21c2fa3ea2b88e698db6fc151d9c7259ae14d96 (diff)
downloadnixpkgs-e8a766883fe0061ef60e5f0b70a95844957ec777.tar
nixpkgs-e8a766883fe0061ef60e5f0b70a95844957ec777.tar.gz
nixpkgs-e8a766883fe0061ef60e5f0b70a95844957ec777.tar.bz2
nixpkgs-e8a766883fe0061ef60e5f0b70a95844957ec777.tar.lz
nixpkgs-e8a766883fe0061ef60e5f0b70a95844957ec777.tar.xz
nixpkgs-e8a766883fe0061ef60e5f0b70a95844957ec777.tar.zst
nixpkgs-e8a766883fe0061ef60e5f0b70a95844957ec777.zip
libgit2: 0.27.8 -> 0.28.4
* https://github.com/libgit2/libgit2/releases/tag/v0.28.0
* https://github.com/libgit2/libgit2/releases/tag/v0.28.1
* https://github.com/libgit2/libgit2/releases/tag/v0.28.2
* https://github.com/libgit2/libgit2/releases/tag/v0.28.3
* https://github.com/libgit2/libgit2/releases/tag/v0.28.4
Diffstat (limited to 'pkgs/development/libraries/git2')
-rw-r--r--pkgs/development/libraries/git2/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/git2/default.nix b/pkgs/development/libraries/git2/default.nix
index 2d89355cffe..ed32f68635b 100644
--- a/pkgs/development/libraries/git2/default.nix
+++ b/pkgs/development/libraries/git2/default.nix
@@ -1,25 +1,25 @@
 { stdenv, fetchFromGitHub, cmake, pkgconfig, python3
-, zlib, libssh2, openssl, http-parser, curl
+, zlib, libssh2, openssl, http-parser
 , libiconv, Security
 }:
 
 stdenv.mkDerivation rec {
   pname = "libgit2";
-  version = "0.27.8";
-  # keep the version in sync with pythonPackages.pygit2 and libgit2-glib
+  version = "0.28.4";
+  # keep the version in sync with python3.pkgs.pygit2 and libgit2-glib
 
   src = fetchFromGitHub {
     owner = "libgit2";
     repo = "libgit2";
     rev = "v${version}";
-    sha256 = "0wzx8nkyy9m7mx6cks58chjd4289vjsw97mxm9w6f1ggqsfnmbr9";
+    sha256 = "171b25aym4q88bidc4c76y4l6jmdwifm3q9zjqsll0wjhlkycfy1";
   };
 
   cmakeFlags = [ "-DTHREADSAFE=ON" ];
 
   nativeBuildInputs = [ cmake python3 pkgconfig ];
 
-  buildInputs = [ zlib libssh2 openssl http-parser curl ]
+  buildInputs = [ zlib libssh2 openssl http-parser ]
     ++ stdenv.lib.optional stdenv.isDarwin Security;
 
   propagatedBuildInputs = stdenv.lib.optional (!stdenv.isLinux) libiconv;