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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
947 B
Nix
Raw Normal View History

2022-06-28 03:18:01 +00:00
{ mkDerivation
, lib
, fetchurl
, extra-cmake-modules
, kdoctools
, wrapGAppsHook
, karchive
, kconfig
, kcrash
, kguiaddons
, kinit
, kparts
, kwindowsystem
}:
mkDerivation rec {
pname = "krusader";
2024-03-15 16:47:58 +00:00
version = "2.8.1";
2022-06-28 03:18:01 +00:00
src = fetchurl {
url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz";
2024-03-15 16:47:58 +00:00
hash = "sha256-N78gRRnQqxukCWSvAnQbwijxHpfyjExRjKBdNY3xgoM=";
2022-06-28 03:18:01 +00:00
};
2023-05-01 10:11:17 +00:00
patches = [
# Fix compilation error due to forceful header include
./compat-fix.patch
];
2022-06-28 03:18:01 +00:00
nativeBuildInputs = [
extra-cmake-modules
kdoctools
wrapGAppsHook
];
propagatedBuildInputs = [
karchive
kconfig
kcrash
kguiaddons
kinit
kparts
kwindowsystem
];
meta = with lib; {
homepage = "http://www.krusader.org";
description = "Norton/Total Commander clone for KDE";
license = licenses.gpl2Only;
maintainers = with maintainers; [ sander ];
mainProgram = "krusader";
2022-06-28 03:18:01 +00:00
};
}