nixpkgs/pkgs/desktops/gnome-3/misc/libgit2-glib/default.nix

26 lines
693 B
Nix
Raw Normal View History

2017-11-03 03:30:31 +00:00
{ stdenv, fetchurl, gnome3, libtool, pkgconfig, vala, libssh2
, gtk-doc, gobjectIntrospection, libgit2, glib }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
2017-11-03 03:30:31 +00:00
nativeBuildInputs = [
gnome3.gnome-common libtool pkgconfig vala gtk-doc gobjectIntrospection
2017-11-03 03:30:31 +00:00
];
propagatedBuildInputs = [
# Required by libgit2-glib-1.0.pc
libgit2 glib
];
buildInputs = [ libssh2 ];
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;
};
}