mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
krusader: use callPackage
This commit is contained in:
parent
1d8fe40546
commit
14024e8ef1
2 changed files with 5 additions and 14 deletions
|
@ -3,17 +3,8 @@
|
|||
stdenv,
|
||||
fetchurl,
|
||||
extra-cmake-modules,
|
||||
kdoctools,
|
||||
karchive,
|
||||
kconfig,
|
||||
kcrash,
|
||||
kguiaddons,
|
||||
kparts,
|
||||
kwindowsystem,
|
||||
cmake,
|
||||
wrapQtAppsHook,
|
||||
qt5compat,
|
||||
kstatusnotifieritem,
|
||||
kdePackages,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -28,11 +19,11 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
kdoctools
|
||||
wrapQtAppsHook
|
||||
kdePackages.kdoctools
|
||||
kdePackages.wrapQtAppsHook
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
propagatedBuildInputs = with kdePackages; [
|
||||
karchive
|
||||
kconfig
|
||||
kcrash
|
||||
|
|
|
@ -1528,7 +1528,7 @@ with pkgs;
|
|||
inherit (libsForQt5) libqtpas wrapQtAppsHook;
|
||||
};
|
||||
|
||||
krusader = kdePackages.callPackage ../applications/file-managers/krusader { };
|
||||
krusader = callPackage ../applications/file-managers/krusader { };
|
||||
|
||||
mc = callPackage ../applications/file-managers/mc {
|
||||
inherit (darwin) autoSignDarwinBinariesHook;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue