kdeApplications: 16.12.3 -> 17.04.0
This commit is contained in:
parent
34f492d7d8
commit
10d329a6d2
|
@ -4,7 +4,7 @@
|
||||||
extra-cmake-modules, kdoctools, makeWrapper,
|
extra-cmake-modules, kdoctools, makeWrapper,
|
||||||
|
|
||||||
karchive, kconfig, kcrash, kdbusaddons, ki18n, kiconthemes, khtml, kio,
|
karchive, kconfig, kcrash, kdbusaddons, ki18n, kiconthemes, khtml, kio,
|
||||||
kservice, kpty, kwidgetsaddons, libarchive,
|
kservice, kpty, kwidgetsaddons, libarchive, kitemmodels,
|
||||||
|
|
||||||
# Archive tools
|
# Archive tools
|
||||||
p7zip, unzipNLS, zip,
|
p7zip, unzipNLS, zip,
|
||||||
|
@ -22,7 +22,7 @@ let
|
||||||
];
|
];
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
khtml ki18n kio karchive kconfig kcrash kdbusaddons kiconthemes kservice
|
khtml ki18n kio karchive kconfig kcrash kdbusaddons kiconthemes kservice
|
||||||
kpty kwidgetsaddons libarchive
|
kpty kwidgetsaddons libarchive kitemmodels
|
||||||
];
|
];
|
||||||
postInstall =
|
postInstall =
|
||||||
let
|
let
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
WGET_ARGS=( http://download.kde.org/stable/applications/16.12.3/ -A '*.tar.xz' )
|
WGET_ARGS=( http://download.kde.org/stable/applications/17.04.0/ -A '*.tar.xz' )
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
kdeApp, lib, kdeWrapper,
|
kdeApp, lib, kdeWrapper,
|
||||||
cmake, automoc4,
|
extra-cmake-modules, kdoctools,
|
||||||
kdelibs, perl, python, php
|
kio, ki18n,
|
||||||
|
perl, python, php
|
||||||
}:
|
}:
|
||||||
|
|
||||||
kdeWrapper {
|
kdeWrapper {
|
||||||
|
@ -11,8 +12,8 @@ kdeWrapper {
|
||||||
license = with lib.licenses; [ gpl2 ];
|
license = with lib.licenses; [ gpl2 ];
|
||||||
maintainers = with lib.maintainers; [ orivej ];
|
maintainers = with lib.maintainers; [ orivej ];
|
||||||
};
|
};
|
||||||
nativeBuildInputs = [ cmake automoc4 ];
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||||
buildInputs = [ kdelibs perl python php ];
|
buildInputs = [ perl python php kio ki18n ];
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{ kdeApp, lib, kdeWrapper
|
{ kdeApp, lib, kdeWrapper
|
||||||
, extra-cmake-modules, qtscript, qtsvg, qtquickcontrols
|
, extra-cmake-modules, kdoctools
|
||||||
, gpsd
|
, qtscript, qtsvg, qtquickcontrols, qtwebkit
|
||||||
|
, krunner, shared_mime_info, kparts, knewstuff
|
||||||
|
, gpsd, perl
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -9,9 +11,10 @@ let
|
||||||
name = "marble";
|
name = "marble";
|
||||||
meta.license = with lib.licenses; [ lgpl21 gpl3 ];
|
meta.license = with lib.licenses; [ lgpl21 gpl3 ];
|
||||||
|
|
||||||
nativeBuildInputs = [ extra-cmake-modules ];
|
nativeBuildInputs = [ extra-cmake-modules kdoctools perl ];
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
qtscript qtsvg qtquickcontrols
|
qtscript qtsvg qtquickcontrols qtwebkit shared_mime_info
|
||||||
|
krunner kparts knewstuff
|
||||||
gpsd
|
gpsd
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -20,6 +23,6 @@ let
|
||||||
in
|
in
|
||||||
kdeWrapper {
|
kdeWrapper {
|
||||||
inherit unwrapped;
|
inherit unwrapped;
|
||||||
targets = [ "bin/marble-qt" ];
|
targets = [ "bin/marble-qt" "bin/marble" ];
|
||||||
paths = [ unwrapped ];
|
paths = [ unwrapped ];
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue