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

27 lines
633 B
Nix
Raw Normal View History

2017-11-02 03:06:56 +01:00
{ stdenv, fetchFromGitHub, cmake, qt5 }:
2016-10-10 13:08:00 +02:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "qps";
2018-05-22 15:54:40 +02:00
version = "1.10.18";
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;
2018-05-22 15:54:40 +02:00
sha256 = "1cq5z4w2n119z2bq0njn508g5582jljdx2n38cv5b3cf35k91a49";
2016-10-10 13:08:00 +02:00
};
nativeBuildInputs = [ cmake ];
2017-11-02 03:06:56 +01:00
buildInputs = [ qt5.qtbase qt5.qtx11extras qt5.qttools ];
2016-10-10 13:08:00 +02:00
meta = with stdenv.lib; {
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;
};
}