Remove generated files

This commit is contained in:
John Wiegley 2018-01-01 20:25:32 -08:00
parent 23363bd3a3
commit 0bda6da9e1
2 changed files with 0 additions and 13 deletions

View File

@ -1,11 +0,0 @@
{ nixpkgs ? import <nixpkgs> {}, compiler ? null }:
let
haskellPackages = if compiler == null
# use the current default version
then nixpkgs.pkgs.haskellPackages
else nixpkgs.pkgs.haskell.packages.${compiler};
in
haskellPackages.callPackage ./project.nix {
pkgs = nixpkgs;
}

View File

@ -1,2 +0,0 @@
{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc801" }:
(import ./default.nix { inherit nixpkgs compiler; }).env