about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorIoannis Koutras <ioannis.koutras@gmail.com>2018-02-25 17:15:15 +0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2018-03-30 11:17:44 +0300
commitfaec8f26eb1b9fe9e7e7a56f80f5f02948d8ffcf (patch)
tree1c50ea976c30aa9b15ce4c54429aa41ba1fef46c /pkgs/applications/office
parenta7af5d4f88f9e30bc9b401a84b7cb3cf036fccbb (diff)
downloadnixlib-faec8f26eb1b9fe9e7e7a56f80f5f02948d8ffcf.tar
nixlib-faec8f26eb1b9fe9e7e7a56f80f5f02948d8ffcf.tar.gz
nixlib-faec8f26eb1b9fe9e7e7a56f80f5f02948d8ffcf.tar.bz2
nixlib-faec8f26eb1b9fe9e7e7a56f80f5f02948d8ffcf.tar.lz
nixlib-faec8f26eb1b9fe9e7e7a56f80f5f02948d8ffcf.tar.xz
nixlib-faec8f26eb1b9fe9e7e7a56f80f5f02948d8ffcf.tar.zst
nixlib-faec8f26eb1b9fe9e7e7a56f80f5f02948d8ffcf.zip
skrooge: do not build designer library
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/skrooge/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/applications/office/skrooge/default.nix b/pkgs/applications/office/skrooge/default.nix
index ba136f415f29..78b1f8435b66 100644
--- a/pkgs/applications/office/skrooge/default.nix
+++ b/pkgs/applications/office/skrooge/default.nix
@@ -24,6 +24,13 @@ mkDerivation rec {
     kactivities karchive kguiaddons knotifyconfig krunner kwindowsystem libofx
   ];
 
+  # SKG_DESIGNER must be used to generate the needed library for QtDesigner.
+  # This is needed ONLY for developers. So NOT NEEDED for end user.
+  # Source: https://forum.kde.org/viewtopic.php?f=210&t=143375#p393675
+  cmakeFlags = [
+    "-DSKG_DESIGNER=OFF"
+  ];
+
   meta = with lib; {
     description = "A personal finances manager, powered by KDE";
     license = with licenses; [ gpl3 ];