mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #11511 from goodwillcoding/libgtop-update
update libgtop to latest (2.32.0) and enable gobject introspection on it
This commit is contained in:
commit
6d13f373f4
1 changed files with 5 additions and 5 deletions
|
@ -1,12 +1,12 @@
|
|||
{ stdenv, fetchurl, glib, pkgconfig, perl, intltool }:
|
||||
{ stdenv, fetchurl, glib, pkgconfig, perl, intltool, gobjectIntrospection }:
|
||||
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 ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue