mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
calamares: 3.2.17.1 -> 3.2.35.1
This commit is contained in:
parent
f71e439688
commit
917ec074ba
1 changed files with 7 additions and 10 deletions
|
@ -6,16 +6,17 @@
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "calamares";
|
pname = "calamares";
|
||||||
version = "3.2.17.1";
|
version = "3.2.35.1";
|
||||||
|
|
||||||
# release including submodule
|
# release including submodule
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz";
|
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz";
|
||||||
sha256 = "156zpjyw8w4y23aa60mvg3d3mr0kzfq5jkl7ixgahq33zpc17ms8";
|
sha256 = "s2wnwcdrcJLG5NhugSkntBCYfPuv3T/9+PclbmK0BJ4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
boost cmake extra-cmake-modules kparts.dev kpmcore.out kservice.dev
|
boost kparts.dev kpmcore.out kservice.dev
|
||||||
libatasmart libxcb libyamlcpp parted polkit-qt python qtbase
|
libatasmart libxcb libyamlcpp parted polkit-qt python qtbase
|
||||||
qtquickcontrols qtsvg qttools qtwebengine.dev util-linux
|
qtquickcontrols qtsvg qttools qtwebengine.dev util-linux
|
||||||
];
|
];
|
||||||
|
@ -32,18 +33,14 @@ mkDerivation rec {
|
||||||
|
|
||||||
POLKITQT-1_POLICY_FILES_INSTALL_DIR = "$(out)/share/polkit-1/actions";
|
POLKITQT-1_POLICY_FILES_INSTALL_DIR = "$(out)/share/polkit-1/actions";
|
||||||
|
|
||||||
patchPhase = ''
|
postPatch = ''
|
||||||
sed -e "s,/usr/bin/calamares,$out/bin/calamares," \
|
sed -e "s,/usr/bin/calamares,$out/bin/calamares," \
|
||||||
-i calamares.desktop \
|
-i calamares.desktop \
|
||||||
-i com.github.calamares.calamares.policy
|
-i com.github.calamares.calamares.policy
|
||||||
|
|
||||||
sed -e 's,/usr/share/zoneinfo,${tzdata}/share/zoneinfo,' \
|
sed -e 's,/usr/share/zoneinfo,${tzdata}/share/zoneinfo,' \
|
||||||
-i src/modules/locale/timezonewidget/localeconst.h \
|
|
||||||
-i src/modules/locale/SetTimezoneJob.cpp
|
-i src/modules/locale/SetTimezoneJob.cpp
|
||||||
|
|
||||||
sed -e 's,/usr/share/i18n/locales,${glibc.out}/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,' \
|
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
|
-i src/modules/keyboard/keyboardwidget/keyboardglobal.h
|
||||||
|
|
||||||
|
@ -56,8 +53,8 @@ mkDerivation rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Distribution-independent installer framework";
|
description = "Distribution-independent installer framework";
|
||||||
license = licenses.gpl3;
|
license = with licenses; [ gpl3Plus bsd2 ];
|
||||||
maintainers = with lib.maintainers; [ manveru ];
|
maintainers = with maintainers; [ manveru ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue