qlipper: do not use qt5 directly

This commit is contained in:
José Romildo Malaquias 2019-02-12 09:12:09 -02:00
parent 9306341a0b
commit d5c017eef8

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, qt5 }:
{ stdenv, fetchFromGitHub, cmake, qtbase, qttools }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
buildInputs = [ qt5.qtbase qt5.qttools ];
buildInputs = [ qtbase qttools ];
meta = with stdenv.lib; {
description = "Cross-platform clipboard history applet";