mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +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,
|
stdenv,
|
||||||
fetchurl,
|
fetchurl,
|
||||||
extra-cmake-modules,
|
extra-cmake-modules,
|
||||||
kdoctools,
|
|
||||||
karchive,
|
|
||||||
kconfig,
|
|
||||||
kcrash,
|
|
||||||
kguiaddons,
|
|
||||||
kparts,
|
|
||||||
kwindowsystem,
|
|
||||||
cmake,
|
cmake,
|
||||||
wrapQtAppsHook,
|
kdePackages,
|
||||||
qt5compat,
|
|
||||||
kstatusnotifieritem,
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -28,11 +19,11 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
cmake
|
cmake
|
||||||
extra-cmake-modules
|
extra-cmake-modules
|
||||||
kdoctools
|
kdePackages.kdoctools
|
||||||
wrapQtAppsHook
|
kdePackages.wrapQtAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = with kdePackages; [
|
||||||
karchive
|
karchive
|
||||||
kconfig
|
kconfig
|
||||||
kcrash
|
kcrash
|
||||||
|
|
|
@ -1528,7 +1528,7 @@ with pkgs;
|
||||||
inherit (libsForQt5) libqtpas wrapQtAppsHook;
|
inherit (libsForQt5) libqtpas wrapQtAppsHook;
|
||||||
};
|
};
|
||||||
|
|
||||||
krusader = kdePackages.callPackage ../applications/file-managers/krusader { };
|
krusader = callPackage ../applications/file-managers/krusader { };
|
||||||
|
|
||||||
mc = callPackage ../applications/file-managers/mc {
|
mc = callPackage ../applications/file-managers/mc {
|
||||||
inherit (darwin) autoSignDarwinBinariesHook;
|
inherit (darwin) autoSignDarwinBinariesHook;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue