libgsystem: new package
This commit is contained in:
parent
3a0f2619ce
commit
95350bb659
32
pkgs/development/libraries/libgsystem/default.nix
Normal file
32
pkgs/development/libraries/libgsystem/default.nix
Normal 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
|
||||
'';
|
||||
}
|
@ -5793,6 +5793,8 @@ let
|
||||
inherit (pkgs.pythonPackages) mutagen;
|
||||
};
|
||||
|
||||
libgsystem = callPackage ../development/libraries/libgsystem { };
|
||||
|
||||
libharu = callPackage ../development/libraries/libharu { };
|
||||
|
||||
libHX = callPackage ../development/libraries/libHX { };
|
||||
|
Loading…
Reference in New Issue
Block a user