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

+4 -4
+4 -4
pkgs/development/libraries/libgtop/default.nix
··· 1 1 { stdenv, fetchurl, glib, pkgconfig, perl, intltool }: 2 2 stdenv.mkDerivation { 3 - name = "libgtop-2.28.5"; 3 + name = "libgtop-2.32.0"; 4 4 5 5 src = fetchurl { 6 - url = mirror://gnome/sources/libgtop/2.28/libgtop-2.28.5.tar.xz; 7 - sha256 = "0hik1aklcn79irgw1xf7d6cfkw8hzmy46r9jyfhp32aawisc24n8"; 6 + url = mirror://gnome/sources/libgtop/2.32/libgtop-2.32.0.tar.xz; 7 + sha256 = "13hpml2vfm23816qggr5fvxj75ndb1dq4rgmi7ik6azj69ij8hw4"; 8 8 }; 9 9 10 10 propagatedBuildInputs = [ glib ]; 11 - nativeBuildInputs = [ pkgconfig perl intltool ]; 11 + nativeBuildInputs = [ pkgconfig perl intltool gobjectIntrospection ]; 12 12 }