nano-wallet: fix Qt wrapping
This commit is contained in:
parent
e38a36094b
commit
fa0b1870d1
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
{lib, stdenv, fetchFromGitHub, cmake, pkgconfig, boost, libGL, qtbase}:
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig, wrapQtAppsHook, boost, libGL
|
||||
, qtbase}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
|
@ -32,7 +33,7 @@ stdenv.mkDerivation rec {
|
|||
optionToFlag = name: value: "-D${name}=${value}";
|
||||
in lib.mapAttrsToList optionToFlag options;
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ];
|
||||
buildInputs = [ boost libGL qtbase ];
|
||||
|
||||
buildPhase = ''
|
||||
|
|
Loading…
Reference in a new issue