1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/lxqt/qps/default.nix

27 lines
633 B
Nix
Raw Normal View History

2017-11-01 22:06:56 -04:00
{ stdenv, fetchFromGitHub, cmake, qt5 }:
2016-10-10 07:08:00 -04:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "qps";
2018-05-22 09:54:40 -04:00
version = "1.10.18";
2016-10-10 07:08:00 -04:00
2017-11-01 22:06:56 -04:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-10 07:08:00 -04:00
repo = pname;
2017-11-01 22:06:56 -04:00
rev = version;
2018-05-22 09:54:40 -04:00
sha256 = "1cq5z4w2n119z2bq0njn508g5582jljdx2n38cv5b3cf35k91a49";
2016-10-10 07:08:00 -04:00
};
nativeBuildInputs = [ cmake ];
2017-11-01 22:06:56 -04:00
buildInputs = [ qt5.qtbase qt5.qtx11extras qt5.qttools ];
2016-10-10 07:08:00 -04:00
meta = with stdenv.lib; {
description = "The Qt process manager";
homepage = https://github.com/lxqt/qps;
2016-10-10 07:08:00 -04:00
license = licenses.gpl2;
maintainers = with maintainers; [ romildo ];
platforms = with platforms; unix;
};
}