about summary refs log tree commit diff
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2018-02-09 01:27:48 +0100
committerProfpatsch <mail@profpatsch.de>2018-02-09 01:27:48 +0100
commit28e0a2d32a66141707959258ce05726c2008ff71 (patch)
tree5d60db1c700ad5f34b2fd5c4eb05513d31a8c6ba
parent8b500cdb96119e17ffb86953a60fbfc7ecc5c9e1 (diff)
profpatsch/pkgs: disable searx and patches
-rw-r--r--machines/profpatsch/pkgs.nix38
1 files changed, 24 insertions, 14 deletions
diff --git a/machines/profpatsch/pkgs.nix b/machines/profpatsch/pkgs.nix
index 39dd85a3..9cff23fa 100644
--- a/machines/profpatsch/pkgs.nix
+++ b/machines/profpatsch/pkgs.nix
@@ -62,18 +62,18 @@ let
 
   xmpp-client = pkgs.callPackage (import ./xmpp-client.nix myLib.philip.home "irc/xmppOla.wtf") { inherit (pkgs) xmpp-client; };
 
-  searx = pkgs.searx.overrideAttrs (old: {
-    propagatedBuildInputs = old.propagatedBuildInputs ++ [ pythonPackages.pyxdg ];
-    patches = old.patches or [] ++ [
-      ./patches/searx-secret-key.patch
-      ./patches/searx-rm-soundcloud.patch
-    ];
-    # xdg.BaseDirectory.save_cache_path() will try to create leading dirs, but
-    # within the builder we don't have a writable home directory.
-    preCheck = (old.preCheck or "") + ''
-      export XDG_CACHE_HOME="$TMPDIR/cache"
-    '';
-  });
+  # searx = pkgs.searx.overrideAttrs (old: {
+  #   propagatedBuildInputs = old.propagatedBuildInputs ++ [ pythonPackages.pyxdg ];
+  #   patches = old.patches or [] ++ [
+  #     ./patches/searx-secret-key.patch
+  #     ./patches/searx-rm-soundcloud.patch
+  #   ];
+  #   # xdg.BaseDirectory.save_cache_path() will try to create leading dirs, but
+  #   # within the builder we don't have a writable home directory.
+  #   preCheck = (old.preCheck or "") + ''
+  #     export XDG_CACHE_HOME="$TMPDIR/cache"
+  #   '';
+  # });
 
   # A ghci with some sane default packages in scope, & hoogle
   saneGhci = haskellPackages.ghcWithHoogle (h: with h; [ protolude pretty-show ]);
@@ -89,5 +89,15 @@ let
   # };
 
 in
-{ inherit taffybar mpv beets poezio vim
-          fast-init xmpp-client saneGhci /*nix-gen*/ searx; }
+{ inherit
+    taffybar
+    mpv
+    beets
+    poezio
+    vim
+    fast-init
+    xmpp-client
+    saneGhci
+    /*nix-gen*/
+    /*searx*/;
+}