mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
26 lines
693 B
Nix
26 lines
693 B
Nix
{ stdenv, fetchurl, gnome3, libtool, pkgconfig, vala, libssh2
|
|
, gtk-doc, gobjectIntrospection, libgit2, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
nativeBuildInputs = [
|
|
gnome3.gnome-common libtool pkgconfig vala gtk-doc gobjectIntrospection
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|