about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorArtyom Shalkhakov <artyom.shalkhakov@gmail.com>2014-12-12 23:10:32 +0600
committerMatthew Bauer <mjbauer95@gmail.com>2016-08-16 21:00:13 +0000
commitcf79db354987dba564c96d8f7ee1c360e54ca0cb (patch)
treee738f253e3dd724014bcb092d0cb3ce839e7eedd /pkgs/applications
parent15c5a533b54b335f48c2d841909730340978ec28 (diff)
gnustep: fix gworkspace
Minor fix: just to make GWorkspace buildable as it is.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/gworkspace/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/misc/gworkspace/default.nix b/pkgs/applications/misc/gworkspace/default.nix
index 2081e1540a0b6..f041bd6d6b797 100644
--- a/pkgs/applications/misc/gworkspace/default.nix
+++ b/pkgs/applications/misc/gworkspace/default.nix
@@ -15,10 +15,11 @@ stdenv.mkDerivation {
   };
   # additional dependencies:
   # - PDFKit framework from http://gap.nongnu.org/
+  # - TODO: to --enable-gwmetadata, need libDBKit as well as sqlite!
   GNUSTEP_MAKEFILES = "${gnustep_make}/share/GNUstep/Makefiles";
-  buildInputs = [ gnustep_back gnustep_base gnustep_make gnustep_gui sqlite system_preferences ];
-  propagatedBuildInputs = [ gnustep_back gnustep_base gnustep_gui sqlite system_preferences ];
-  configureFlags = [ "--enable-gwmetadata" "--with-inotify" ];
+  buildInputs = [ gnustep_back gnustep_base gnustep_make gnustep_gui system_preferences ];
+  propagatedBuildInputs = [ gnustep_back gnustep_base gnustep_gui system_preferences ];
+  configureFlags = [ "--with-inotify" ];
   meta = {
     description = "GWorkspace is a workspace manager for GNUstep";