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

                         
                     




                                                                   
                                                                    

    

                                 
                                       
                                                     







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

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

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

  cmakeFlags = "-DTHREADSAFE=ON";

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

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