forked from mirrors/nixpkgs
5cc18c4781
Standard library now contains stdenv.lib.versions.majorMinor, which does the same.
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ stdenv, fetchurl, gnome3, meson, ninja, pkgconfig, vala, libssh2
|
|
, gtk-doc, gobjectIntrospection, libgit2, glib, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libgit2-glib-${version}";
|
|
version = "0.26.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/libgit2-glib/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "0nhyqas110q7ingw97bvyjdb7v4dzch517dq8sn8c33s8910wqcp";
|
|
};
|
|
|
|
postPatch = ''
|
|
for f in meson_vapi_link.py meson_python_compile.py; do
|
|
chmod +x $f
|
|
patchShebangs $f
|
|
done
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript { packageName = "libgit2-glib"; attrPath = "gnome3.libgit2-glib"; };
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson ninja pkgconfig vala gtk-doc gobjectIntrospection
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
# Required by libgit2-glib-1.0.pc
|
|
libgit2 glib
|
|
];
|
|
|
|
buildInputs = [
|
|
libssh2
|
|
python3.pkgs.pygobject3 # this should really be a propagated input of python output
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
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;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|