about summary refs log tree commit diff
path: root/envs
diff options
context:
space:
mode:
Diffstat (limited to 'envs')
-rw-r--r--envs/default.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/envs/default.nix b/envs/default.nix
index 730e82cc..9806d61c 100644
--- a/envs/default.nix
+++ b/envs/default.nix
@@ -15,45 +15,4 @@ with pkgs;
     in lib.mapAttrsToList genAszligEnv collection;
     ignoreCollisions = true;
   };
-
-  catapultEnv = myEnvFun {
-    name = "catapult";
-    buildInputs = [
-      stdenv python pil
-      pythonPackages.matplotlib
-      pythonPackages.django
-      pythonPackages.sqlite3
-      pythonPackages.markdown
-      pythonPackages.MySQL_python
-      pythonPackages.setuptools
-    ];
-  };
-
-  kernelEnv = myEnvFun {
-    name = "kernel";
-    extraCmds = ''
-      export NIX_LDFLAGS="$NIX_LDFLAGS -lncurses"
-    '';
-    buildInputs = [
-      stdenv ncurses
-    ];
-  };
-
-  hetznerEnv = myEnvFun {
-    name = "hetzner";
-    buildInputs = [
-      stdenv python
-      pythonPackages.pexpect
-    ];
-  };
-
-  rdwarfEnv = myEnvFun {
-    name = "rdwarf";
-    buildInputs = [
-      stdenv python
-      pythonPackages.numpy
-      pythonPackages.pyaudio
-      pythonPackages.curses
-    ];
-  };
 }