From 29bcbf60f2760c5c791c45043d550e4e4e93fe59 Mon Sep 17 00:00:00 2001 From: Marcin Szamotulski Date: Sun, 18 Oct 2020 16:32:01 +0200 Subject: [PATCH] Removed stale shell.nix file --- shell.nix | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 shell.nix diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 93071e0..0000000 --- a/shell.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ compiler ? "ghc865" -, haddock ? true -, test ? true -, benchmarks ? false -, dev ? false -}: -with builtins; -let - default = import ./default.nix {inherit benchmarks compiler dev haddock test;}; - nixpkgs = import ./nix/nixpkgs.nix { inherit compiler; }; -in - { - free-category = if nixpkgs.lib.inNixShell - then default.free-category.env - else default.free-category; - examples = if nixpkgs.lib.inNixShell - then default.examples.env - else default.examples; - }