Skip to content

Commit d655117

Browse files
committedFeb 21, 2025
krusader: 2.8.1 -> 2.9.0
1 parent 6fadeb2 commit d655117

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed
 

‎pkgs/applications/file-managers/krusader/default.nix

+11-12
Original file line numberDiff line numberDiff line change
@@ -4,44 +4,43 @@
44
fetchurl,
55
extra-cmake-modules,
66
kdoctools,
7-
wrapGAppsHook3,
87
karchive,
98
kconfig,
109
kcrash,
1110
kguiaddons,
12-
kinit,
1311
kparts,
1412
kwindowsystem,
13+
cmake,
14+
wrapQtAppsHook,
15+
qt5compat,
16+
kstatusnotifieritem,
1517
}:
1618

1719
stdenv.mkDerivation rec {
1820
pname = "krusader";
19-
version = "2.8.1";
21+
version = "2.9.0";
2022

2123
src = fetchurl {
22-
url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz";
23-
hash = "sha256-N78gRRnQqxukCWSvAnQbwijxHpfyjExRjKBdNY3xgoM=";
24+
url = "mirror://kde/stable/krusader/${version}/krusader-${version}.tar.xz";
25+
hash = "sha256-ybeb+t5sxp/g40Hs75Mvysiv2f6U6MvPvXKf61Q5TgQ=";
2426
};
2527

26-
patches = [
27-
# Fix compilation error due to forceful header include
28-
./compat-fix.patch
29-
];
30-
3128
nativeBuildInputs = [
29+
cmake
3230
extra-cmake-modules
3331
kdoctools
34-
wrapGAppsHook3
32+
wrapQtAppsHook
3533
];
3634

3735
propagatedBuildInputs = [
3836
karchive
3937
kconfig
4038
kcrash
4139
kguiaddons
42-
kinit
4340
kparts
4441
kwindowsystem
42+
qt5compat
43+
kstatusnotifieritem
4544
];
4645

4746
meta = {

‎pkgs/top-level/all-packages.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -1480,7 +1480,7 @@ with pkgs;
14801480
inherit (libsForQt5) libqtpas wrapQtAppsHook;
14811481
};
14821482

1483-
krusader = libsForQt5.callPackage ../applications/file-managers/krusader { };
1483+
krusader = kdePackages.callPackage ../applications/file-managers/krusader { };
14841484

14851485
mc = callPackage ../applications/file-managers/mc {
14861486
inherit (darwin) autoSignDarwinBinariesHook;

0 commit comments

Comments
 (0)
Failed to load comments.