summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2026-03-19 22:55:00 +0100
committertv <tv@krebsco.de>2026-03-19 22:55:00 +0100
commit9dd55f4edaa815af12d58afe0ed16a11bd202b84 (patch)
treecd37e893c10347a65cd88245f63f05d99c4a4544
parentd76b6eff584b1d7a62af06e90be05ca37ff9b483 (diff)
shell.nix: RIP
-rw-r--r--shell.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/shell.nix b/shell.nix
deleted file mode 100644
index 30c2872..0000000
--- a/shell.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ nixpkgs ? import <nixpkgs> {}, compiler ? "default", doBenchmark ? false }:
-
-let
-
- inherit (nixpkgs) pkgs;
-
- haskellPackages = if compiler == "default"
- then pkgs.haskellPackages
- else pkgs.haskell.packages.${compiler};
-
- variant = if doBenchmark then pkgs.haskell.lib.doBenchmark else pkgs.lib.id;
-
- drv = variant (haskellPackages.callCabal2nix "terminal-scanner" ./. {});
-
-in
-
- pkgs.lib.overrideDerivation drv.env (oldAttrs: {
- buildInputs = [
- pkgs.cabal-install
- ];
- })