mirror of
https://github.com/simplex-chat/haskell.nix.git
synced 2026-06-03 09:17:32 +00:00
023863aeca
First fix only fixed `haskell-nix.snapshot` by applying the fix also to mkStackPkgSet stack.yaml based projects should work with lts 14
12 lines
362 B
Nix
12 lines
362 B
Nix
{
|
|
extras = hackage:
|
|
{
|
|
packages = {
|
|
"transformers" = (((hackage.transformers)."0.5.6.2").revisions).default;
|
|
"process" = (((hackage.process)."1.6.5.0").revisions).default;
|
|
stack-simple = ./stack-simple.nix;
|
|
};
|
|
};
|
|
resolver = "lts-14.13";
|
|
modules = [ ({ lib, ... }: { packages = {}; }) { packages = {}; } ];
|
|
} |