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

27 lines
651 B
Nix
Raw Normal View History

2019-02-05 15:14:50 -08:00
{ stdenv, fetchFromGitHub, cmake, qtbase, qtx11extras, qttools,
lxqt-build-tools }:
2016-10-10 04:08:00 -07:00
stdenv.mkDerivation rec {
pname = "qps";
2019-02-05 15:14:50 -08:00
version = "1.10.19";
2016-10-10 04:08:00 -07:00
2017-11-01 19:06:56 -07:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-10 04:08:00 -07:00
repo = pname;
2017-11-01 19:06:56 -07:00
rev = version;
2019-02-05 15:14:50 -08:00
sha256 = "1vyi1vw4z5j2sp9yhhv91wl2sbg4fh0djqslg1ssc7fww2ka6dx3";
2016-10-10 04:08:00 -07:00
};
2019-02-05 15:14:50 -08:00
nativeBuildInputs = [ cmake lxqt-build-tools ];
2016-10-10 04:08:00 -07:00
2019-02-05 15:14:50 -08:00
buildInputs = [ qtbase qtx11extras qttools ];
2016-10-10 04:08:00 -07:00
meta = with stdenv.lib; {
description = "The Qt process manager";
homepage = https://github.com/lxqt/qps;
2016-10-10 04:08:00 -07:00
license = licenses.gpl2;
maintainers = with maintainers; [ romildo ];
platforms = with platforms; unix;
};
}