libgsystem: new package

This commit is contained in:
宋文武 2014-11-07 13:24:45 +08:00 committed by 宋文武
parent 3a0f2619ce
commit 95350bb659
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk_doc, gobjectIntrospection
, glib, attr, systemd
}:
stdenv.mkDerivation {
name = "libgsystem-2014.2";
meta = with stdenv.lib; {
description = "GIO-based library with Unix/Linux specific API";
homepage = "https://wiki.gnome.org/Projects/LibGSystem";
license = licenses.lgpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ iyzsong ];
};
src = fetchFromGitHub {
owner = "GNOME";
repo = "libgsystem";
rev = "v2014.2";
sha256 = "10mqyy94wbmxv9rizwby4dyvqgranjr3hixr5k7fs90lhgbxbkj6";
};
nativeBuildInputs = [
autoreconfHook pkgconfig gtk_doc gobjectIntrospection
];
propagatedBuildInputs = [ glib attr systemd ];
preAutoreconf = ''
mkdir m4
'';
}

View File

@ -5793,6 +5793,8 @@ let
inherit (pkgs.pythonPackages) mutagen;
};
libgsystem = callPackage ../development/libraries/libgsystem { };
libharu = callPackage ../development/libraries/libharu { };
libHX = callPackage ../development/libraries/libHX { };