calamares: fix Qt dependencies
This commit is contained in:
parent
a685f98627
commit
97b2b05a24
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchgit, cmake, qt5, polkit_qt5, libyamlcpp, python, boost, parted
|
{ stdenv, fetchgit, cmake, polkitQt, libyamlcpp, python, boost, parted
|
||||||
, extra-cmake-modules, kconfig, ki18n, kcoreaddons, solid, utillinux, libatasmart
|
, extra-cmake-modules, kconfig, ki18n, kcoreaddons, solid, utillinux, libatasmart
|
||||||
, ckbcomp, glibc, tzdata, xkeyboard_config }:
|
, ckbcomp, glibc, tzdata, xkeyboard_config, qtbase, qtquick1, qtsvg, qttools }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "calamares-${version}";
|
name = "calamares-${version}";
|
||||||
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
cmake qt5.base qt5.tools libyamlcpp python boost polkit_qt5 parted
|
cmake qtbase qtquick1 qtsvg qttools libyamlcpp python boost polkitQt parted
|
||||||
extra-cmake-modules kconfig ki18n kcoreaddons solid utillinux libatasmart
|
extra-cmake-modules kconfig ki18n kcoreaddons solid utillinux libatasmart
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preInstall = ''
|
preInstall = ''
|
||||||
substituteInPlace cmake_install.cmake --replace "${polkit_qt5}" "$out"
|
substituteInPlace cmake_install.cmake --replace "${polkitQt}" "$out"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in New Issue