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

27 lines
648 B
Nix
Raw Normal View History

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