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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-03-03 18:02:04 +00:00
, fetchurl
, glib
, pkg-config
2019-03-03 18:02:04 +00:00
, perl
, gettext
, gobject-introspection
, gnome
2019-03-03 18:02:04 +00:00
, gtk-doc
, deterministic-uname
2019-03-03 18:02:04 +00:00
}:
2016-09-22 13:59:39 +00:00
stdenv.mkDerivation rec {
2019-03-03 18:02:04 +00:00
pname = "libgtop";
version = "2.41.2";
outputs = [ "out" "dev" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
hash = "sha256-2QJs2KSNJ83/0zL41gqSdktWQk5SLEIM0ToB9A2vksM=";
};
2019-03-03 18:02:04 +00:00
nativeBuildInputs = [
# uname output embedded in https://gitlab.gnome.org/GNOME/libgtop/-/blob/master/src/daemon/Makefile.am
deterministic-uname
pkg-config
2019-03-03 18:02:04 +00:00
gtk-doc
perl
gettext
gobject-introspection
2018-06-11 10:01:34 +00:00
];
2019-03-03 18:02:04 +00:00
propagatedBuildInputs = [
glib
];
2018-03-03 02:49:32 +00:00
passthru = {
updateScript = gnome.updateScript {
2018-03-03 02:49:32 +00:00
packageName = pname;
versionPolicy = "odd-unstable";
2018-03-03 02:49:32 +00:00
};
};
meta = with lib; {
2018-03-03 02:49:32 +00:00
description = "A library that reads information about processes and the running system";
license = licenses.gpl2Plus;
maintainers = teams.gnome.members;
2018-06-11 10:01:34 +00:00
platforms = platforms.unix;
};
}