mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
35 lines
879 B
Nix
35 lines
879 B
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, python
|
|
, zlib, libssh2, openssl, http-parser, curl
|
|
, libiconv, Security
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.25.1";
|
|
name = "libgit2-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libgit2";
|
|
repo = "libgit2";
|
|
rev = "v${version}";
|
|
sha256 = "1jhikg0gqpdzfzhgv44ybdpm24lvgkc7ki4306lc5lvmj1s2nylj";
|
|
};
|
|
|
|
cmakeFlags = [ "-DTHREADSAFE=ON" ];
|
|
|
|
nativeBuildInputs = [ cmake python pkgconfig ];
|
|
|
|
buildInputs = [ zlib libssh2 openssl http-parser curl ]
|
|
++ stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
propagatedBuildInputs = stdenv.lib.optional (!stdenv.isLinux) libiconv;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "The Git linkable library";
|
|
homepage = https://libgit2.github.com/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = with stdenv.lib.platforms; all;
|
|
};
|
|
}
|