Files
nixpkgs/pkgs/development/libraries/libgit2-glib/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

74 lines
1.3 KiB
Nix

{ stdenv
, lib
, fetchurl
, gnome
, meson
, ninja
, pkg-config
, vala
, libssh2
, gtk-doc
, gobject-introspection
, gi-docgen
, libgit2
, glib
, python3
}:
stdenv.mkDerivation rec {
pname = "libgit2-glib";
version = "1.2.0";
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "EzHa2oOPTh9ZGyZFnUQSajJd52LcPNJhU6Ma+9/hgZA=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
vala
gtk-doc
gobject-introspection
gi-docgen
];
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
];
mesonFlags = [
"-Dgtk_doc=true"
];
postPatch = ''
chmod +x meson_python_compile.py
patchShebangs meson_python_compile.py
'';
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
versionPolicy = "none";
};
};
meta = with lib; {
description = "Glib wrapper library around the libgit2 git access library";
homepage = "https://gitlab.gnome.org/GNOME/libgit2-glib";
license = licenses.lgpl21Plus;
maintainers = teams.gnome.members;
platforms = platforms.linux;
};
}