Skip to content

Instantly share code, notes, and snippets.

@aljce
Created November 4, 2016 16:55
Show Gist options
  • Save aljce/1e67bbe4962aaa84a77f30d34a1d0895 to your computer and use it in GitHub Desktop.
Save aljce/1e67bbe4962aaa84a77f30d34a1d0895 to your computer and use it in GitHub Desktop.
let pkgs = import <nixpkgs> { };
top-level = import ./top-level.nix { haskellPackages = pkgs.haskellPackages;
dontCheck = pkgs.haskell.lib.dontCheck;
cabal-install = pkgs.cabal-install;
testTopLevel = false; };
in
{ haskell-env = pkgs.stdenv.mkDerivation {
name = "haskell-env";
buildInputs = [ pkgs.cabal-install top-level.frank.env ];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment