about summary refs log tree commit diff
path: root/pkgs/applications/kde-apps-15.08/kde-app.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-16 19:08:06 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-16 19:08:06 -0600
commit0a81a0d8ffa824217e0a2fe58972467a7a92b966 (patch)
tree089a3e101308aa2916f8eb3a2e6fffbfc57e4c32 /pkgs/applications/kde-apps-15.08/kde-app.nix
parent61176d89873543ab0c805b1d193c078a6bc34c4a (diff)
kde5: Frameworks 5.17, Plasma 5.5.1, Applications 15.12.0
The stable `kde5` attribute is updated to these versions. The old
versions have been removed.
Diffstat (limited to 'pkgs/applications/kde-apps-15.08/kde-app.nix')
-rw-r--r--pkgs/applications/kde-apps-15.08/kde-app.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/applications/kde-apps-15.08/kde-app.nix b/pkgs/applications/kde-apps-15.08/kde-app.nix
deleted file mode 100644
index 242f3d9c793d3..0000000000000
--- a/pkgs/applications/kde-apps-15.08/kde-app.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, lib, debug, srcs }:
-
-args:
-
-let
-  inherit (args) name;
-  sname = args.sname or name;
-  inherit (srcs."${sname}") src version;
-in
-stdenv.mkDerivation (args // {
-  name = "${name}-${version}";
-  inherit src;
-
-  cmakeFlags =
-    (args.cmakeFlags or [])
-    ++ [ "-DBUILD_TESTING=OFF" ]
-    ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug";
-
-  meta = {
-    platforms = lib.platforms.linux;
-    homepage = "http://www.kde.org";
-  } // (args.meta or {});
-})