summary refs log tree commit diff
path: root/pkgs/applications/kde-apps-15.12/kcalc.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-03-03 16:11:55 +0000
committerRobin Gloster <mail@glob.in>2016-03-03 16:11:55 +0000
commitfed49425c51e66d0278f376eb2e2aa67843269d5 (patch)
tree3149d7484ff8a1e48359c801753f13afbf22157a /pkgs/applications/kde-apps-15.12/kcalc.nix
parent4c9c4c4dcdf406adb235682ab4d50985513f92e3 (diff)
parent7a360b13a0ac35c0f6109d251880ae698c13b221 (diff)
downloadnixpkgs-fed49425c51e66d0278f376eb2e2aa67843269d5.tar
nixpkgs-fed49425c51e66d0278f376eb2e2aa67843269d5.tar.gz
nixpkgs-fed49425c51e66d0278f376eb2e2aa67843269d5.tar.bz2
nixpkgs-fed49425c51e66d0278f376eb2e2aa67843269d5.tar.lz
nixpkgs-fed49425c51e66d0278f376eb2e2aa67843269d5.tar.xz
nixpkgs-fed49425c51e66d0278f376eb2e2aa67843269d5.tar.zst
nixpkgs-fed49425c51e66d0278f376eb2e2aa67843269d5.zip
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
Diffstat (limited to 'pkgs/applications/kde-apps-15.12/kcalc.nix')
-rw-r--r--pkgs/applications/kde-apps-15.12/kcalc.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/applications/kde-apps-15.12/kcalc.nix b/pkgs/applications/kde-apps-15.12/kcalc.nix
deleted file mode 100644
index a1f0316825d..00000000000
--- a/pkgs/applications/kde-apps-15.12/kcalc.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ kdeApp
-, lib
-, extra-cmake-modules
-, kdoctools
-, makeQtWrapper
-, kconfig
-, kconfigwidgets
-, kguiaddons
-, kinit
-, knotifications
-
-}:
-
-kdeApp {
-  name = "kcalc";
-
-  nativeBuildInputs = [
-    extra-cmake-modules
-    kdoctools
-  ];
-
-  buildInputs = [
-    kconfig
-    kconfigwidgets
-    kguiaddons
-    kinit
-    knotifications
-  ];
-
-  postInstall = ''
-    wrapQtProgram "$out/bin/kcalc"
-  '';
-
-  meta = {
-    license = with lib.licenses; [ gpl2 ];
-    maintainers = [ lib.maintainers.fridh ];
-  };
-}