13 lines
196 B
Nix
13 lines
196 B
Nix
{ nixpkgs, haskellPackages }:
|
|
|
|
(import ./project.nix nixpkgs) {
|
|
packages = {
|
|
common = ./common;
|
|
backend = ./backend;
|
|
};
|
|
tools = with haskellPackages; [
|
|
ghcid
|
|
hasktags
|
|
];
|
|
}
|