├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin ├── index.js └── output.js ├── ci.nix ├── default.nix ├── flake.lock ├── flake.nix ├── logo-256.png ├── mkbin.nix ├── nix ├── easy-dhall-nix.nix ├── easy-purescript-nix.nix ├── nix-prefetch-git-no-store.patch └── nix-prefetch-git-patched.nix ├── package.json ├── packages.dhall ├── shell.nix ├── spago-packages.nix ├── spago.dhall ├── src ├── Core.js ├── Core.purs ├── Generate.purs ├── Main.js └── Main.purs ├── test-flake ├── .gitignore ├── flake.lock └── flake.nix └── test ├── Main.purs └── tests.bash /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/README.md -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('./output.js'); 3 | -------------------------------------------------------------------------------- /bin/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/bin/output.js -------------------------------------------------------------------------------- /ci.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/ci.nix -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/flake.nix -------------------------------------------------------------------------------- /logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/logo-256.png -------------------------------------------------------------------------------- /mkbin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/mkbin.nix -------------------------------------------------------------------------------- /nix/easy-dhall-nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/nix/easy-dhall-nix.nix -------------------------------------------------------------------------------- /nix/easy-purescript-nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/nix/easy-purescript-nix.nix -------------------------------------------------------------------------------- /nix/nix-prefetch-git-no-store.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/nix/nix-prefetch-git-no-store.patch -------------------------------------------------------------------------------- /nix/nix-prefetch-git-patched.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/nix/nix-prefetch-git-patched.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/package.json -------------------------------------------------------------------------------- /packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/packages.dhall -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/shell.nix -------------------------------------------------------------------------------- /spago-packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/spago-packages.nix -------------------------------------------------------------------------------- /spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/spago.dhall -------------------------------------------------------------------------------- /src/Core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/src/Core.js -------------------------------------------------------------------------------- /src/Core.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/src/Core.purs -------------------------------------------------------------------------------- /src/Generate.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/src/Generate.purs -------------------------------------------------------------------------------- /src/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/src/Main.js -------------------------------------------------------------------------------- /src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/src/Main.purs -------------------------------------------------------------------------------- /test-flake/.gitignore: -------------------------------------------------------------------------------- 1 | /result 2 | -------------------------------------------------------------------------------- /test-flake/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/test-flake/flake.lock -------------------------------------------------------------------------------- /test-flake/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/test-flake/flake.nix -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/test/Main.purs -------------------------------------------------------------------------------- /test/tests.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwoo/spago2nix/HEAD/test/tests.bash --------------------------------------------------------------------------------