about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-08-25 10:06:23 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-08-25 10:07:03 -0500
commitf4bb247bd63762fb431fc8ec60ccf8fc4f63aeed (patch)
tree6e2ccd59150a89a81cdda1c403edefb3b529c55f /pkgs/desktops
parentb71d71c576df3dbac8af76241260246010e08536 (diff)
fetch-kde-qt.sh: modularize script allowing multiple versions
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/kde-5/applications/fetch.sh1
-rw-r--r--pkgs/desktops/kde-5/plasma/fetch.sh1
-rw-r--r--pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix16
3 files changed, 2 insertions, 16 deletions
diff --git a/pkgs/desktops/kde-5/applications/fetch.sh b/pkgs/desktops/kde-5/applications/fetch.sh
new file mode 100644
index 0000000000000..b3c71c44fcf82
--- /dev/null
+++ b/pkgs/desktops/kde-5/applications/fetch.sh
@@ -0,0 +1 @@
+WGET_ARGS=( http://download.kde.org/stable/applications/16.08.0/ -A '*.tar.xz' )
diff --git a/pkgs/desktops/kde-5/plasma/fetch.sh b/pkgs/desktops/kde-5/plasma/fetch.sh
new file mode 100644
index 0000000000000..518c2e63163b5
--- /dev/null
+++ b/pkgs/desktops/kde-5/plasma/fetch.sh
@@ -0,0 +1 @@
+WGET_ARGS=( http://download.kde.org/stable/plasma/5.7.4/ -A '*.tar.xz' )
diff --git a/pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix b/pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix
deleted file mode 100644
index 1967a0b8a4e0f..0000000000000
--- a/pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ plasmaPackage, ecm, baloo, kactivities, kconfig
-, kcoreaddons, kdeclarative, kguiaddons, ki18n, kio, kservice
-, kfilemetadata, plasma-framework, qtdeclarative, qtmultimedia
-, taglib
-}:
-
-plasmaPackage rec {
-  name = "plasma-mediacenter";
-  nativeBuildInputs = [
-    ecm
-  ];
-  propagatedBuildInputs = [
-    baloo kactivities kdeclarative kfilemetadata ki18n kio plasma-framework
-    kconfig kcoreaddons kguiaddons kservice qtdeclarative qtmultimedia taglib
-  ];
-}