mirror of
https://github.com/justinwoo/spago2nix.git
synced 2024-11-29 01:03:11 +03:00
4d7078af30
Fixes #31.
24 lines
392 B
Plaintext
24 lines
392 B
Plaintext
{-
|
|
Welcome to a Spago project!
|
|
You can edit this file as you like.
|
|
-}
|
|
{ sources =
|
|
[ "src/**/*.purs", "test/**/*.purs" ]
|
|
, name =
|
|
"my-project"
|
|
, dependencies =
|
|
[ "console"
|
|
, "generics-rep"
|
|
, "integers"
|
|
, "kishimen"
|
|
, "node-fs-aff"
|
|
, "parallel"
|
|
, "prelude"
|
|
, "simple-json-utils"
|
|
, "sunde"
|
|
, "validation"
|
|
]
|
|
, packages =
|
|
./packages.dhall
|
|
}
|