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

26 lines
662 B
Nix
Raw Normal View History

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}";
version = "0.4.1";
2016-10-03 21:45:16 +00:00
src = fetchFromGitHub {
owner = "lxde";
repo = "libsysstat";
rev = version;
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
};
}