update libgtop to latest (2.32.0) and enable gobject introspection on it

This commit is contained in:
goodwillcoding 2015-12-06 10:54:11 -08:00
parent 8cd52ce5f7
commit 71240e56a1

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, glib, pkgconfig, perl, intltool }:
stdenv.mkDerivation {
name = "libgtop-2.28.5";
name = "libgtop-2.32.0";
src = fetchurl {
url = mirror://gnome/sources/libgtop/2.28/libgtop-2.28.5.tar.xz;
sha256 = "0hik1aklcn79irgw1xf7d6cfkw8hzmy46r9jyfhp32aawisc24n8";
url = mirror://gnome/sources/libgtop/2.32/libgtop-2.32.0.tar.xz;
sha256 = "13hpml2vfm23816qggr5fvxj75ndb1dq4rgmi7ik6azj69ij8hw4";
};
propagatedBuildInputs = [ glib ];
nativeBuildInputs = [ pkgconfig perl intltool ];
nativeBuildInputs = [ pkgconfig perl intltool gobjectIntrospection ];
}