├── .gitignore ├── README.md ├── bower ├── bower.json ├── default.nix ├── docker.nix ├── nixpkgs.json ├── package.json ├── pkgs.nix └── src └── Main.purs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoodunit/purescript-nix-bootstrap/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoodunit/purescript-nix-bootstrap/HEAD/README.md -------------------------------------------------------------------------------- /bower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoodunit/purescript-nix-bootstrap/HEAD/bower -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoodunit/purescript-nix-bootstrap/HEAD/bower.json -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoodunit/purescript-nix-bootstrap/HEAD/default.nix -------------------------------------------------------------------------------- /docker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoodunit/purescript-nix-bootstrap/HEAD/docker.nix -------------------------------------------------------------------------------- /nixpkgs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoodunit/purescript-nix-bootstrap/HEAD/nixpkgs.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoodunit/purescript-nix-bootstrap/HEAD/package.json -------------------------------------------------------------------------------- /pkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoodunit/purescript-nix-bootstrap/HEAD/pkgs.nix -------------------------------------------------------------------------------- /src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoodunit/purescript-nix-bootstrap/HEAD/src/Main.purs --------------------------------------------------------------------------------