mateamt/default.nix

11 lines
478 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> (import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz))
, haskellCompiler ? "ghc865"
2019-12-23 05:34:46 +00:00
, lib ? pkgs.lib
, config ? pkgs.config
}:
pkgs.haskell-nix.cabalProject {
2019-12-26 08:28:19 +00:00
#src = pkgs.haskell-nix.haskellLib.cleanGit { src = ./.; };
src = pkgs.haskell-nix.haskellLib.cleanGit { src = pkgs.nix-gitignore.gitignoreSource [] ./.; };
ghc = pkgs.buildPackages.pkgs.haskell-nix.compiler.${haskellCompiler};
}