nixpkgs/pkgs/desktops/lxqt/libsysstat/default.nix

40 lines
766 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qtbase
, lxqt-build-tools
, lxqtUpdateScript
}:
2016-10-03 21:45:16 +00:00
mkDerivation rec {
2019-02-05 23:13:14 +00:00
pname = "libsysstat";
2021-11-05 17:35:00 +00:00
version = "0.4.6";
2016-10-03 21:45:16 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2019-02-05 23:13:14 +00:00
repo = pname;
2016-10-03 21:45:16 +00:00
rev = version;
2021-11-05 17:35:00 +00:00
sha256 = "0z2r8041vqssm59lkb3ka7qis9br4wvavxzd45m3pnqlp7wwhkbn";
2016-10-03 21:45:16 +00:00
};
nativeBuildInputs = [
cmake
lxqt-build-tools
];
2016-10-03 21:45:16 +00:00
buildInputs = [
qtbase
];
2016-10-03 21:45:16 +00:00
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
2016-10-03 21:45:16 +00:00
description = "Library used to query system info and statistics";
homepage = "https://github.com/lxqt/libsysstat";
2016-10-03 21:45:16 +00:00
license = licenses.lgpl21Plus;
platforms = with platforms; unix;
2017-02-19 10:55:45 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 21:45:16 +00:00
};
}