1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00
nixpkgs/pkgs/development/libraries/libgtop/default.nix

19 lines
524 B
Nix
Raw Normal View History

2015-12-06 19:26:06 +00:00
{ stdenv, fetchurl, glib, pkgconfig, perl, intltool, gobjectIntrospection }:
2016-09-22 14:59:39 +01:00
stdenv.mkDerivation rec {
name = "libgtop-${version}";
major = "2.34";
version = "${major}.1";
src = fetchurl {
2016-09-22 14:59:39 +01:00
url = "mirror://gnome/sources/libgtop/${major}/${name}.tar.xz";
sha256 = "c89978a76662b18d392edbe0d1b794f5a9a399a5ccf22a02d5b9e28b5ed609e2";
};
propagatedBuildInputs = [ glib ];
nativeBuildInputs = [ pkgconfig perl intltool gobjectIntrospection ];
meta = {
platforms = stdenv.lib.platforms.linux;
};
}