krusader: move to file-managers
This commit is contained in:
parent
3cefeee6a4
commit
e3b17ac5c3
3 changed files with 49 additions and 28 deletions
47
pkgs/applications/file-managers/krusader/default.nix
Normal file
47
pkgs/applications/file-managers/krusader/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{ mkDerivation
|
||||
, lib
|
||||
, fetchurl
|
||||
, extra-cmake-modules
|
||||
, kdoctools
|
||||
, wrapGAppsHook
|
||||
, karchive
|
||||
, kconfig
|
||||
, kcrash
|
||||
, kguiaddons
|
||||
, kinit
|
||||
, kparts
|
||||
, kwindowsystem
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "krusader";
|
||||
version = "2.7.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz";
|
||||
hash = "sha256-QaOaQ7PELdHR7K6obfMMr/agYf7MHWb2CFmyo8qXYQk=";
|
||||
};
|
||||
|
||||
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 turion ];
|
||||
};
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
mkDerivation, fetchurl, lib,
|
||||
extra-cmake-modules, kdoctools, wrapGAppsHook,
|
||||
karchive, kconfig, kcrash, kguiaddons, kinit, kparts, kwindowsystem
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "krusader";
|
||||
version = "2.7.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "02b1jz5a7cjr13v6c7fczrhs1xmg1krnva5fxk8x2bf4nd1rm8s1";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
|
||||
|
||||
propagatedBuildInputs = [ karchive kconfig kcrash kguiaddons kinit kparts kwindowsystem ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Norton/Total Commander clone for KDE";
|
||||
homepage = "http://www.krusader.org";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ sander turion ];
|
||||
};
|
||||
}
|
|
@ -1582,6 +1582,8 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk.frameworks) SystemConfiguration Foundation;
|
||||
};
|
||||
|
||||
krusader = libsForQt5.callPackage ../applications/file-managers/krusader { };
|
||||
|
||||
lf = callPackage ../applications/file-managers/lf { };
|
||||
|
||||
llama = callPackage ../applications/file-managers/llama { };
|
||||
|
@ -27928,8 +27930,6 @@ with pkgs;
|
|||
|
||||
krita = libsForQt5.callPackage ../applications/graphics/krita { };
|
||||
|
||||
krusader = libsForQt5.callPackage ../applications/misc/krusader { };
|
||||
|
||||
ksuperkey = callPackage ../tools/X11/ksuperkey { };
|
||||
|
||||
ktimetracker = libsForQt5.callPackage ../applications/office/ktimetracker { };
|
||||
|
|
Loading…
Reference in a new issue