nixpkgs/pkgs/development/libraries/libgsystem/default.nix

32 lines
750 B
Nix
Raw Normal View History

2014-11-07 05:24:45 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk_doc, gobjectIntrospection
, glib, attr, systemd
}:
stdenv.mkDerivation {
2015-01-28 02:35:20 +00:00
name = "libgsystem-2015.1";
2014-11-07 05:24:45 +00:00
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;
};
src = fetchFromGitHub {
owner = "GNOME";
repo = "libgsystem";
2015-01-28 02:35:20 +00:00
rev = "v2015.1";
sha256 = "0j5dqn1pnspfxifklw4wkikqlbxr4faib07550n5gi58m89gg68n";
2014-11-07 05:24:45 +00:00
};
nativeBuildInputs = [
autoreconfHook pkgconfig gtk_doc gobjectIntrospection
];
propagatedBuildInputs = [ glib attr systemd ];
preAutoreconf = ''
mkdir m4
'';
}