about summary refs log tree commit diff
path: root/website/habitgarden/default.nix
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-12-11T22·45+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-12-11T22·45+0000
commit90035da32e05993a3b09ee5bb2c740e1f07b0f11 (patch)
tree4e149414bd9a86bf1ef57de4a7442379bc1c8058 /website/habitgarden/default.nix
parent381c344563e6bdb85499df7af8aeae0845a11768 (diff)
Delete //website/habitgarden
This is change #2 in a series of other larger changes...
Diffstat (limited to 'website/habitgarden/default.nix')
-rw-r--r--website/habitgarden/default.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/website/habitgarden/default.nix b/website/habitgarden/default.nix
deleted file mode 100644
index 030d6abec484..000000000000
--- a/website/habitgarden/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ pkgs, ... }:
-
-pkgs.stdenv.mkDerivation {
-  name = "typescript";
-  srcs = builtins.path { path = ./.; name = "habitgarden"; };
-  buildInputs = with pkgs; [
-    nodejs
-    # Exposes lscpu for parcel.js
-    utillinux
-  ];
-  # parcel.js needs number of CPUs
-  PARCEL_WORKERS = "1";
-  buildPhase = ''
-    npx parcel build src/index.html --public-url ./
-  '';
-  installPhase = ''
-    mv dist $out
-  '';
-}