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
José Romildo Malaquias 5c26986b58 qps: 1.10.18 -> 1.10.19
2019-02-12 09:56:08 -02:00

27 lines
651 B
Nix

{ stdenv, fetchFromGitHub, cmake, qtbase, qtx11extras, qttools,
lxqt-build-tools }:
stdenv.mkDerivation rec {
pname = "qps";
version = "1.10.19";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
sha256 = "1vyi1vw4z5j2sp9yhhv91wl2sbg4fh0djqslg1ssc7fww2ka6dx3";
};
nativeBuildInputs = [ cmake lxqt-build-tools ];
buildInputs = [ qtbase qtx11extras qttools ];
meta = with stdenv.lib; {
description = "The Qt process manager";
homepage = https://github.com/lxqt/qps;
license = licenses.gpl2;
maintainers = with maintainers; [ romildo ];
platforms = with platforms; unix;
};
}