├── .github └── workflows │ ├── build.yml │ └── check.yml ├── .gitignore ├── README.md ├── default.nix ├── generate-readme ├── .gitignore ├── LICENSE ├── Main.hs ├── Setup.hs ├── default.nix ├── generate-readme.cabal ├── pkgs.nix └── shell.nix ├── not-currently-active.json ├── shell.nix └── streamers.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiroptical/declarative-programming-streams/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiroptical/declarative-programming-streams/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | result* 2 | .envrc 3 | .direnv/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiroptical/declarative-programming-streams/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiroptical/declarative-programming-streams/HEAD/default.nix -------------------------------------------------------------------------------- /generate-readme/.gitignore: -------------------------------------------------------------------------------- 1 | dist-newstyle/ 2 | -------------------------------------------------------------------------------- /generate-readme/LICENSE: -------------------------------------------------------------------------------- 1 | See ../LICENSE 2 | -------------------------------------------------------------------------------- /generate-readme/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiroptical/declarative-programming-streams/HEAD/generate-readme/Main.hs -------------------------------------------------------------------------------- /generate-readme/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /generate-readme/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiroptical/declarative-programming-streams/HEAD/generate-readme/default.nix -------------------------------------------------------------------------------- /generate-readme/generate-readme.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiroptical/declarative-programming-streams/HEAD/generate-readme/generate-readme.cabal -------------------------------------------------------------------------------- /generate-readme/pkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiroptical/declarative-programming-streams/HEAD/generate-readme/pkgs.nix -------------------------------------------------------------------------------- /generate-readme/shell.nix: -------------------------------------------------------------------------------- 1 | (import ./. {}).shell 2 | -------------------------------------------------------------------------------- /not-currently-active.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiroptical/declarative-programming-streams/HEAD/not-currently-active.json -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiroptical/declarative-programming-streams/HEAD/shell.nix -------------------------------------------------------------------------------- /streamers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiroptical/declarative-programming-streams/HEAD/streamers.json --------------------------------------------------------------------------------