krusader: use specific license

+6 -8
+6 -8
pkgs/applications/misc/krusader/default.nix
··· 4 karchive, kconfig, kcrash, kguiaddons, kinit, kparts, kwindowsystem 5 }: 6 7 - let 8 pname = "krusader"; 9 version = "2.7.2"; 10 - in mkDerivation rec { 11 - pname = "krusader"; 12 - inherit version; 13 14 src = fetchurl { 15 url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz"; 16 sha256 = "02b1jz5a7cjr13v6c7fczrhs1xmg1krnva5fxk8x2bf4nd1rm8s1"; 17 }; 18 19 meta = with lib; { 20 description = "Norton/Total Commander clone for KDE"; 21 - license = licenses.gpl2; 22 homepage = "http://www.krusader.org"; 23 maintainers = with maintainers; [ sander turion ]; 24 }; 25 - 26 - nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ]; 27 - propagatedBuildInputs = [ karchive kconfig kcrash kguiaddons kinit kparts kwindowsystem ]; 28 }
··· 4 karchive, kconfig, kcrash, kguiaddons, kinit, kparts, kwindowsystem 5 }: 6 7 + mkDerivation rec { 8 pname = "krusader"; 9 version = "2.7.2"; 10 11 src = fetchurl { 12 url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz"; 13 sha256 = "02b1jz5a7cjr13v6c7fczrhs1xmg1krnva5fxk8x2bf4nd1rm8s1"; 14 }; 15 16 + nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ]; 17 + 18 + propagatedBuildInputs = [ karchive kconfig kcrash kguiaddons kinit kparts kwindowsystem ]; 19 + 20 meta = with lib; { 21 description = "Norton/Total Commander clone for KDE"; 22 homepage = "http://www.krusader.org"; 23 + license = licenses.gpl2Only; 24 maintainers = with maintainers; [ sander turion ]; 25 }; 26 }