nixpkgs/pkgs/development/libraries/libgit2-glib/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00

49 lines
1.2 KiB
Nix

{ stdenv, fetchurl, gnome3, meson, ninja, pkg-config, vala, libssh2
, gtk-doc, gobject-introspection, libgit2, glib, python3 }:
stdenv.mkDerivation rec {
pname = "libgit2-glib";
version = "0.99.0.1";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "1pmrcnsa7qdda73c3dxf47733mwprmj5ljpw3acxbj6r8k27anp0";
};
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 pkg-config 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 = teams.gnome.members;
platforms = platforms.linux;
};
}