mindforger: don't use qt5.mkDerivation

This commit is contained in:
Dmitry Kalinkin 2021-06-12 09:35:57 -04:00
parent a5f462e791
commit af9015c2aa
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -1,15 +1,16 @@
{ mkDerivation
{ lib
, stdenv
, cmark-gfm
, fetchurl
, fetchpatch
, qmake
, qtbase
, qtwebengine
, lib
, wrapGAppsHook
, wrapQtAppsHook
}:
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "mindforger";
version = "1.52.0";
@ -18,7 +19,7 @@ mkDerivation rec {
sha256 = "1pghsw8kwvjhg3jpmjs0n892h2l0pm0cs6ymi8b23fwk0kfj67rd";
};
nativeBuildInputs = [ qmake wrapGAppsHook ];
nativeBuildInputs = [ qmake wrapGAppsHook wrapQtAppsHook ];
buildInputs = [ qtbase qtwebengine cmark-gfm ];
doCheck = true;