calamares: fix Qt dependencies

wip/yesman
Thomas Tuegel 9 years ago
parent a685f98627
commit 97b2b05a24
  1. 8
      pkgs/tools/misc/calamares/default.nix

@ -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
, ckbcomp, glibc, tzdata, xkeyboard_config }:
, ckbcomp, glibc, tzdata, xkeyboard_config, qtbase, qtquick1, qtsvg, qttools }:
stdenv.mkDerivation rec {
name = "calamares-${version}";
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
};
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
];
@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
'';
preInstall = ''
substituteInPlace cmake_install.cmake --replace "${polkit_qt5}" "$out"
substituteInPlace cmake_install.cmake --replace "${polkitQt}" "$out"
'';
meta = with stdenv.lib; {

Loading…
Cancel
Save