2017-11-03 03:30:31 +00:00
|
|
|
{ stdenv, fetchurl, gnome3, libtool, pkgconfig, vala, libssh2
|
2018-02-25 02:23:58 +00:00
|
|
|
, gtk-doc, gobjectIntrospection, libgit2, glib }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 20:07:20 +00:00
|
|
|
name = "libgit2-glib-${version}";
|
2018-03-04 20:18:49 +00:00
|
|
|
version = "0.26.4";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/libgit2-glib/${gnome3.versionBranch version}/${name}.tar.xz";
|
2018-03-04 20:18:49 +00:00
|
|
|
sha256 = "0nhyqas110q7ingw97bvyjdb7v4dzch517dq8sn8c33s8910wqcp";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript { packageName = "libgit2-glib"; attrPath = "gnome3.libgit2-glib"; };
|
|
|
|
};
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2017-11-03 03:30:31 +00:00
|
|
|
nativeBuildInputs = [
|
2018-02-25 02:23:58 +00:00
|
|
|
gnome3.gnome-common libtool pkgconfig vala gtk-doc gobjectIntrospection
|
2017-11-03 03:30:31 +00:00
|
|
|
];
|
|
|
|
|
2017-11-09 22:45:51 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
# Required by libgit2-glib-1.0.pc
|
|
|
|
libgit2 glib
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ libssh2 ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-02-25 20:25:10 +00:00
|
|
|
description = "A glib wrapper library around the libgit2 git access library";
|
|
|
|
homepage = https://wiki.gnome.org/Projects/Libgit2-glib;
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = gnome3.maintainers;
|
2016-09-18 20:35:23 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|