lxqt: use qt5's mkDerivation

This should also ensure that the applications get wrapped
appropriately.
This commit is contained in:
worldofpeace
2019-08-19 21:22:18 -04:00
parent 2d09e48929
commit 3167eb3780
30 changed files with 91 additions and 91 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, cmake, qtbase, lxqt-build-tools }:
{ lib, mkDerivation, fetchFromGitHub, cmake, qtbase, lxqt-build-tools }:
stdenv.mkDerivation rec {
mkDerivation rec {
pname = "libsysstat";
version = "0.4.2";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
buildInputs = [ qtbase ];
meta = with stdenv.lib; {
meta = with lib; {
description = "Library used to query system info and statistics";
homepage = https://github.com/lxqt/libsysstat;
license = licenses.lgpl21Plus;