nixpkgs/pkgs/desktops/lxqt/libsysstat/default.nix
worldofpeace 3167eb3780 lxqt: use qt5's mkDerivation
This should also ensure that the applications get wrapped
appropriately.
2019-08-19 21:22:18 -04:00

26 lines
648 B
Nix

{ lib, mkDerivation, fetchFromGitHub, cmake, qtbase, lxqt-build-tools }:
mkDerivation rec {
pname = "libsysstat";
version = "0.4.2";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
sha256 = "10h9n7km7yx8bnmzxi4nn1yqq03hizjkrx4745j0mczy7niiffsz";
};
nativeBuildInputs = [ cmake lxqt-build-tools ];
buildInputs = [ qtbase ];
meta = with lib; {
description = "Library used to query system info and statistics";
homepage = https://github.com/lxqt/libsysstat;
license = licenses.lgpl21Plus;
platforms = with platforms; unix;
maintainers = with maintainers; [ romildo ];
};
}