fc4be77491
This makes the timezone selection page as well as the keyboard layout selection page work correctly.
56 lines
1.9 KiB
Nix
56 lines
1.9 KiB
Nix
{ stdenv, fetchgit, cmake, qt5, polkit_qt5, libyamlcpp, python, boost, parted
|
|
, extra-cmake-modules, kconfig, ki18n, kcoreaddons, solid, utillinux, libatasmart
|
|
, ckbcomp, glibc, tzdata, xkeyboard_config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "calamares-${version}";
|
|
version = "1.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/calamares/calamares.git";
|
|
rev = "dabfb68a68cb012a90cd7b94a22e1ea08f7dd8ad";
|
|
sha256 = "2851ce487aaac61d2df342a47f91ec87fe52ff036227ef697caa7056fe5f188c";
|
|
};
|
|
|
|
buildInputs = [
|
|
cmake qt5.base qt5.tools libyamlcpp python boost polkit_qt5 parted
|
|
extra-cmake-modules kconfig ki18n kcoreaddons solid utillinux libatasmart
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DPYTHON_LIBRARY=${python}/lib/libpython${python.majorVersion}m.so"
|
|
"-DPYTHON_INCLUDE_DIR=${python}/include/python${python.majorVersion}m"
|
|
"-DWITH_PARTITIONMANAGER=1"
|
|
];
|
|
|
|
patchPhase = ''
|
|
sed -e "s,/usr/bin/calamares,$out/bin/calamares," \
|
|
-i calamares.desktop \
|
|
-i com.github.calamares.calamares.policy
|
|
|
|
sed -e 's,/usr/share/zoneinfo,${tzdata}/share/zoneinfo,' \
|
|
-i src/modules/locale/timezonewidget/localeconst.h \
|
|
-i src/modules/locale/SetTimezoneJob.cpp
|
|
|
|
sed -e 's,/usr/share/i18n/locales,${glibc}/share/i18n/locales,' \
|
|
-i src/modules/locale/timezonewidget/localeconst.h
|
|
|
|
sed -e 's,/usr/share/X11/xkb/rules/base.lst,${xkeyboard_config}/share/X11/xkb/rules/base.lst,' \
|
|
-i src/modules/keyboard/keyboardwidget/keyboardglobal.h
|
|
|
|
sed -e 's,"ckbcomp","${ckbcomp}/bin/ckbcomp",' \
|
|
-i src/modules/keyboard/keyboardwidget/keyboardpreview.cpp
|
|
'';
|
|
|
|
preInstall = ''
|
|
substituteInPlace cmake_install.cmake --replace "${polkit_qt5}" "$out"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Distribution-independent installer framework";
|
|
license = licenses.gpl3;
|
|
maintainers = with stdenv.lib.maintainers; [ tstrobel ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|