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

27 lines
643 B
Nix
Raw Normal View History

2017-11-02 02:06:56 +00:00
{ stdenv, fetchFromGitHub, cmake, qt5 }:
2016-10-10 12:08:00 +01:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "qps";
2017-11-02 02:06:56 +00:00
version = "1.10.17";
2016-10-10 12:08:00 +01:00
2017-11-02 02:06:56 +00:00
src = fetchFromGitHub {
2016-10-10 12:08:00 +01:00
owner = "QtDesktop";
repo = pname;
2017-11-02 02:06:56 +00:00
rev = version;
sha256 = "1d5r6w9wsxjdrzq2hllrj2n1d9azy6g05hg0w0s6pikrmn1yl0a3";
2016-10-10 12:08:00 +01:00
};
nativeBuildInputs = [ cmake ];
2017-11-02 02:06:56 +00:00
buildInputs = [ qt5.qtbase qt5.qtx11extras qt5.qttools ];
2016-10-10 12:08:00 +01:00
meta = with stdenv.lib; {
description = "The Qt process manager";
homepage = https://github.com/QtDesktop/qps;
license = licenses.gpl2;
maintainers = with maintainers; [ romildo ];
platforms = with platforms; unix;
};
}