tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Revert "calamares: 3.3.13 -> 3.3.14" (#387517)
Vladimír Čunát
11 months ago
10069ef4
89cd9e56
+8
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
calamares
default.nix
+8
-2
pkgs/tools/misc/calamares/default.nix
···
3
, qtbase, qtquickcontrols, qtsvg, qttools, qtwebengine, util-linux, tzdata
4
, ckbcomp, xkeyboard_config, mkDerivation
5
, nixos-extensions ? false
0
0
6
}:
7
8
mkDerivation rec {
9
pname = "calamares";
10
-
version = "3.3.14";
11
12
# release including submodule
13
src = fetchurl {
14
url = "https://github.com/calamares/calamares/releases/download/v${version}/calamares-${version}.tar.gz";
15
-
sha256 = "sha256-VUf4DbBn3qkjrmk7pruI6ysu6sHaPr7EL85FPjHCkMA=";
16
};
17
18
# On major changes, or when otherwise required, you *must* :
···
78
sed "s,\''${POLKITQT-1_POLICY_FILES_INSTALL_DIR},''${out}/share/polkit-1/actions," \
79
-i CMakeLists.txt
80
'';
0
0
0
0
81
82
meta = with lib; {
83
description = "Distribution-independent installer framework";
···
3
, qtbase, qtquickcontrols, qtsvg, qttools, qtwebengine, util-linux, tzdata
4
, ckbcomp, xkeyboard_config, mkDerivation
5
, nixos-extensions ? false
6
+
# passthru.tests
7
+
, calamares-nixos
8
}:
9
10
mkDerivation rec {
11
pname = "calamares";
12
+
version = "3.3.13";
13
14
# release including submodule
15
src = fetchurl {
16
url = "https://github.com/calamares/calamares/releases/download/v${version}/calamares-${version}.tar.gz";
17
+
sha256 = "sha256-5Jz32JTgK6BImM0HcMtXi04k39CAirdmC/lbskVmSNQ=";
18
};
19
20
# On major changes, or when otherwise required, you *must* :
···
80
sed "s,\''${POLKITQT-1_POLICY_FILES_INSTALL_DIR},''${out}/share/polkit-1/actions," \
81
-i CMakeLists.txt
82
'';
83
+
84
+
passthru.tests = {
85
+
inherit calamares-nixos;
86
+
};
87
88
meta = with lib; {
89
description = "Distribution-independent installer framework";