about summary refs log tree commit diff
path: root/pkgs/development/libraries/git2/default.nix
blob: 7cab317380e858fd2c1dc391c6d9ca6143b61516 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{stdenv, fetchurl, cmake, zlib, python}:

stdenv.mkDerivation rec {
  version = "0.21.1";
  name = "libgit2-${version}";

  src = fetchurl {
    name = "${name}.tar.gz";
    url = "https://github.com/libgit2/libgit2/tarball/v${version}";
    sha256 = "0afbvcsryg7bsmbfj23l09b1xngkmqhf043njl8wm44qslrxibkz";
  };

  cmakeFlags = "-DTHREADSAFE=ON";

  nativeBuildInputs = [ cmake python ];
  buildInputs = [ zlib ];

  meta = {
    description = "the Git linkable library";
    homepage = http://libgit2.github.com/;
    license = with stdenv.lib.licenses; gpl2;
    platforms = with stdenv.lib.platforms; all;
  };
}