about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-09-22T16·20+0100
committerVincent Ambo <tazjin@google.com>2019-09-22T16·20+0100
commit2bc1bedd9e76325a796785218341e6786a002b5a (patch)
tree32a81464372e8104f28703da26dd9ccacab84bb0
parent3a79e8b932decec8e238339c80fe7c0516178856 (diff)
chore(gemma): Mark gemma as broken (again) r/89
Something broke in one of the Lisp dependencies (again).
-rw-r--r--services/gemma/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/services/gemma/default.nix b/services/gemma/default.nix
index c4ed62dbde..409d8eef38 100644
--- a/services/gemma/default.nix
+++ b/services/gemma/default.nix
@@ -9,7 +9,6 @@ let frontend = stdenv.mkDerivation {
   buildPhase = ''
     mkdir .home && export HOME="$PWD/.home"
     mkdir -p $out
-    ls -lh
     elm-make --yes Main.elm --output $out/index.html
   '';
 };
@@ -51,5 +50,8 @@ in stdenv.mkDerivation rec {
     description = "Tool for tracking recurring tasks";
     homepage    = "https://github.com/tazjin/gemma";
     license     = licenses.gpl3;
+
+    # Lisp builds are broken for some reason (2019-09-22)
+    broken = true;
   };
 }