2018-03-05 01:32:07 +01:00
|
|
|
{ stdenv, fetchurl, gnome3, meson, ninja, pkgconfig, vala, libssh2
|
|
|
|
, gtk-doc, gobjectIntrospection, libgit2, glib, python3 }:
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 21:07:20 +01:00
|
|
|
name = "libgit2-glib-${version}";
|
2018-03-04 21:18:49 +01:00
|
|
|
version = "0.26.4";
|
2018-02-25 21:07:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-05 02:12:11 +02:00
|
|
|
url = "mirror://gnome/sources/libgit2-glib/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2018-03-04 21:18:49 +01:00
|
|
|
sha256 = "0nhyqas110q7ingw97bvyjdb7v4dzch517dq8sn8c33s8910wqcp";
|
2018-02-25 21:07:20 +01:00
|
|
|
};
|
|
|
|
|
2018-03-05 01:32:07 +01:00
|
|
|
postPatch = ''
|
|
|
|
for f in meson_vapi_link.py meson_python_compile.py; do
|
|
|
|
chmod +x $f
|
|
|
|
patchShebangs $f
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2018-02-25 21:07:20 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript { packageName = "libgit2-glib"; attrPath = "gnome3.libgit2-glib"; };
|
|
|
|
};
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2017-11-03 04:30:31 +01:00
|
|
|
nativeBuildInputs = [
|
2018-03-05 01:32:07 +01:00
|
|
|
meson ninja pkgconfig vala gtk-doc gobjectIntrospection
|
2017-11-03 04:30:31 +01:00
|
|
|
];
|
|
|
|
|
2017-11-09 23:45:51 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
# Required by libgit2-glib-1.0.pc
|
|
|
|
libgit2 glib
|
|
|
|
];
|
|
|
|
|
2018-03-05 01:32:07 +01:00
|
|
|
buildInputs = [
|
|
|
|
libssh2
|
|
|
|
python3.pkgs.pygobject3 # this should really be a propagated input of python output
|
|
|
|
];
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-02-25 21:25:10 +01: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 21:35:23 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|