f164227c31
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libgit2-glib/versions
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ stdenv, fetchurl, gnome3, meson, ninja, pkgconfig, vala, libssh2
|
|
, gtk-doc, gobject-introspection, libgit2, glib, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libgit2-glib";
|
|
version = "0.28.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0a0g7aw66rfgnqr4z7fgbk5zzcjq66m4rp8v4val3a212941h0g7";
|
|
};
|
|
|
|
postPatch = ''
|
|
for f in meson_vapi_link.py meson_python_compile.py; do
|
|
chmod +x $f
|
|
patchShebangs $f
|
|
done
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
versionPolicy = "none";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson ninja pkgconfig vala gtk-doc gobject-introspection
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|