2017-02-19 10:55:45 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, qt5, lxqt }:
|
2016-10-03 21:45:16 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libsysstat-${version}";
|
2018-06-24 03:41:31 +00:00
|
|
|
version = "0.4.1";
|
2016-10-03 21:45:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lxde";
|
|
|
|
repo = "libsysstat";
|
|
|
|
rev = version;
|
2018-06-24 03:41:31 +00:00
|
|
|
sha256 = "0ad5pcr5lq1hvrfijvddvz2fvsmh1phb54wb0f756av0kyiwq0gb";
|
2016-10-03 21:45:16 +00:00
|
|
|
};
|
|
|
|
|
2017-02-19 10:55:45 +00:00
|
|
|
nativeBuildInputs = [ cmake lxqt.lxqt-build-tools ];
|
2016-10-03 21:45:16 +00:00
|
|
|
|
|
|
|
buildInputs = [ qt5.qtbase ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library used to query system info and statistics";
|
|
|
|
homepage = https://github.com/lxde/libsysstat;
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|