mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 17:39:34 +00:00
krusader: use specific license
This commit is contained in:
parent
ee7d04e445
commit
d8607ca7a1
|
@ -4,25 +4,23 @@
|
||||||
karchive, kconfig, kcrash, kguiaddons, kinit, kparts, kwindowsystem
|
karchive, kconfig, kcrash, kguiaddons, kinit, kparts, kwindowsystem
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
mkDerivation rec {
|
||||||
pname = "krusader";
|
pname = "krusader";
|
||||||
version = "2.7.2";
|
version = "2.7.2";
|
||||||
in mkDerivation rec {
|
|
||||||
pname = "krusader";
|
|
||||||
inherit version;
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz";
|
url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "02b1jz5a7cjr13v6c7fczrhs1xmg1krnva5fxk8x2bf4nd1rm8s1";
|
sha256 = "02b1jz5a7cjr13v6c7fczrhs1xmg1krnva5fxk8x2bf4nd1rm8s1";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ karchive kconfig kcrash kguiaddons kinit kparts kwindowsystem ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Norton/Total Commander clone for KDE";
|
description = "Norton/Total Commander clone for KDE";
|
||||||
license = licenses.gpl2;
|
|
||||||
homepage = "http://www.krusader.org";
|
homepage = "http://www.krusader.org";
|
||||||
|
license = licenses.gpl2Only;
|
||||||
maintainers = with maintainers; [ sander turion ];
|
maintainers = with maintainers; [ sander turion ];
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
|
|
||||||
propagatedBuildInputs = [ karchive kconfig kcrash kguiaddons kinit kparts kwindowsystem ];
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue