summary refs log blame commit diff
path: root/pkgs/development/libraries/git2/default.nix
blob: 3c433511fc1adae8f84f64f01f26f83625b260e5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                  

                         
                     




                                                                   
                                                                    

    

                                 
                                                 
                                                     



                                             
                                       


                                               
{stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, http-parser}:

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

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

  cmakeFlags = "-DTHREADSAFE=ON";

  nativeBuildInputs = [ cmake python pkgconfig ];
  buildInputs = [ zlib libssh2 openssl http-parser ];

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