krusader: use specific license

gstqt5
Peter Hoeg 2020-10-02 09:13:05 +08:00
parent ee7d04e445
commit d8607ca7a1
1 changed files with 6 additions and 8 deletions

View File

@ -4,25 +4,23 @@
karchive, kconfig, kcrash, kguiaddons, kinit, kparts, kwindowsystem
}:
let
mkDerivation rec {
pname = "krusader";
version = "2.7.2";
in mkDerivation rec {
pname = "krusader";
inherit version;
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";
license = licenses.gpl2;
homepage = "http://www.krusader.org";
license = licenses.gpl2Only;
maintainers = with maintainers; [ sander turion ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
propagatedBuildInputs = [ karchive kconfig kcrash kguiaddons kinit kparts kwindowsystem ];
}