Add necessary fields to spago.dhall

This commit is contained in:
Jamie Bertram 2022-03-15 12:15:11 -06:00
parent f80992d691
commit 0ed4d0f960
3 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
output/ output/
bower_components/
.psci* .psci*
.spago .spago
.spago2nix .spago2nix

View File

@ -33,7 +33,7 @@
inherit (gitignore.lib) gitignoreSource; inherit (gitignore.lib) gitignoreSource;
inherit (easy-ps) dhall-simple purs-tidy spago psa purs; inherit (easy-ps) dhall-simple purs-tidy spago psa purs;
inherit (pkgs) git writeShellScriptBin nodePackages mkShell nodejs nixpkgs-fmt; inherit (pkgs) git writeShellScriptBin nodePackages mkShell nodejs nixpkgs-fmt;
inherit (nodePackages) prettier; inherit (nodePackages) bower prettier;
inherit (builtins) concatStringsSep; inherit (builtins) concatStringsSep;
src = gitignoreSource ./.; src = gitignoreSource ./.;
@ -167,6 +167,8 @@
nixpkgs-fmt nixpkgs-fmt
rnix-lsp.defaultPackage."${system}" rnix-lsp.defaultPackage."${system}"
test test
prettier
bower
] ++ easy-ps.buildInputs; ] ++ easy-ps.buildInputs;
inherit (pre-commit-check) shellHook; inherit (pre-commit-check) shellHook;
}; };

View File

@ -1,4 +1,6 @@
{ name = "unlift" { name = "unlift"
, license = "MIT"
, repository = "https://github.com/tweag/purescript-unlift.git"
, dependencies = , dependencies =
[ "aff" [ "aff"
, "effect" , "effect"