1
1
mirror of https://github.com/coot/free-category.git synced 2024-08-16 09:30:46 +03:00

Removed stale shell.nix file

This commit is contained in:
Marcin Szamotulski 2020-10-18 16:32:01 +02:00
parent 1727d4be8c
commit 29bcbf60f2

View File

@ -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;
}