diff --git a/.cache/vale/Vocab/dada/accept.txt b/.cache/vale/Vocab/dada/accept.txt
index dbe787b..182d19a 100644
--- a/.cache/vale/Vocab/dada/accept.txt
+++ b/.cache/vale/Vocab/dada/accept.txt
@@ -1,15 +1,27 @@
+Hacktoberfest
direnv
+formatter
garnix
[Nn]ix
Pfeil
ShellCheck
+APIs
+bugfixes
+composability
+pragmas
+reusability
+widenings
+API
bugfix
comonad
-composability
conditionalize
-Dhall
+formatter
functor
GADT
+inline
Kleisli
Kmett
-reusability
+pragma
+unformatted
+widening
+Dhall
diff --git a/.cache/vale/config/vocabularies/dada/accept.txt b/.cache/vale/config/vocabularies/dada/accept.txt
new file mode 100644
index 0000000..182d19a
--- /dev/null
+++ b/.cache/vale/config/vocabularies/dada/accept.txt
@@ -0,0 +1,27 @@
+Hacktoberfest
+direnv
+formatter
+garnix
+[Nn]ix
+Pfeil
+ShellCheck
+APIs
+bugfixes
+composability
+pragmas
+reusability
+widenings
+API
+bugfix
+comonad
+conditionalize
+formatter
+functor
+GADT
+inline
+Kleisli
+Kmett
+pragma
+unformatted
+widening
+Dhall
diff --git a/.config/mustache.yaml b/.config/mustache.yaml
index 4302708..3acb4ab 100644
--- a/.config/mustache.yaml
+++ b/.config/mustache.yaml
@@ -8,5 +8,4 @@ project:
name: "dada"
repo: "sellout/dada"
summary: "A total recursion scheme library for Dhall"
- version: "0.1.0"
type: { name: "dhall" }
diff --git a/.config/project/default.nix b/.config/project/default.nix
index b3dd2fd..5746ed2 100644
--- a/.config/project/default.nix
+++ b/.config/project/default.nix
@@ -1,115 +1,70 @@
-{config, flaky, lib, pkgs, self, ...}: {
+### All available options for this file are listed in
+### https://sellout.github.io/project-manager/options.xhtml
+{
+ config,
+ lib,
+ self,
+ ...
+}: {
+ imports = [./hlint.nix];
+
project = {
name = "dada";
summary = "A total recursion scheme library for Dhall";
-
- devPackages = [
- pkgs.cabal-install
- pkgs.dhall
- pkgs.dhall-docs
- pkgs.dhall-lsp-server
- pkgs.graphviz
- ];
- };
-
- imports = [
- ./github-ci.nix
- ./github-pages.nix
- ./hlint.nix
- ];
-
- ## dependency management
- services.renovate.enable = true;
-
- ## development
- programs = {
- direnv.enable = true;
- # This should default by whether there is a .git file/dir (and whether it’s
- # a file (worktree) or dir determines other things – like where hooks
- # are installed.
- git = {
- enable = true;
- ignores = [
- # Cabal build
- "dist-newstyle"
- ];
- };
- };
-
- ## formatting
- editorconfig.enable = true;
-
- programs = {
- treefmt = {
- enable = true;
- programs = {
- dhall.enable = true;
- ## Haskell formatter
- ormolu.enable = true;
+ ## TODO: Move something like this to Flaky.
+ file = let
+ copyLicenses = dir: {
+ "${dir}/LICENSE".source = ../../LICENSE;
+ "${dir}/LICENSE.AGPL-3.0-only".source = ../../LICENSE.AGPL-3.0-only;
+ "${dir}/LICENSE.Universal-FOSS-exception-1.0".source =
+ ../../LICENSE.Universal-FOSS-exception-1.0;
+ "${dir}/LICENSE.commercial".source = ../../LICENSE.commercial;
};
- settings.formatter.dhall.includes = ["dhall/*"];
- };
- vale = {
- enable = true;
- excludes = [
- "*.cabal"
- "*.hs"
- "*.lhs"
- "*/.dir-locals.el"
- "./.shellcheckrc"
- "./cabal.project"
- "./dhall/*"
- ];
- vocab.${config.project.name}.accept = [
- "bugfix"
- "comonad"
- "composability"
- "conditionalize"
- "Dhall"
- "functor"
- "GADT"
- "Kleisli"
- "Kmett"
- "reusability"
- ];
- };
+ in
+ {
+ ".dir-locals.el".source = ../emacs/.dir-locals.el;
+ }
+ // copyLicenses "haskell";
};
- project.file.".dir-locals.el".source = lib.mkForce ../emacs/.dir-locals.el;
- ## CI
- services.garnix = {
- enable = true;
- builds.exclude = [
- # TODO: Remove once garnix-io/garnix#285 is fixed.
- "homeConfigurations.x86_64-darwin-${config.project.name}-example"
+ programs.vale = {
+ excludes = [
+ "*/LICENSE*"
+ ];
+ vocab.${config.project.name}.accept = [
+ "APIs"
+ "bugfixes"
+ "composability"
+ "pragmas"
+ "reusability"
+ "widenings"
];
};
+
+ ## CI
## FIXME: Shouldn’t need `mkForce` here (or to duplicate the base contexts).
## Need to improve module merging.
services.github.settings.branches.main.protection.required_status_checks.contexts =
lib.mkForce
- (map (ghc: "CI / build (${ghc}) (pull_request)") self.lib.nonNixTestedGhcVersions
- ++ lib.concatMap flaky.lib.garnixChecks (
+ ([
+ "All Garnix checks"
+ "check-bounds"
+ "check-licenses"
+ ]
+ ++ lib.concatMap (sys:
lib.concatMap (ghc: [
- (sys: "devShell ghc${ghc} [${sys}]")
- (sys: "package ghc${sys}_all [${sys}]")
+ "build (${ghc}, ${sys})"
+ "build (--prefer-oldest, ${ghc}, ${sys})"
])
- (self.lib.testedGhcVersions pkgs.system)
- ++ [
- (sys: "homeConfig ${sys}-${config.project.name}-example")
- (sys: "package default [${sys}]")
- (sys: "package ${config.project.name} [${sys}]")
- ## FIXME: These are duplicated from the base config
- (sys: "check formatter [${sys}]")
- (sys: "devShell default [${sys}]")
- ]));
-
- ## publishing
- programs.git.attributes = ["/dhall/** linguist-language=Dhall"];
- services.flakehub.enable = true;
- services.github.enable = true;
- services.github.settings.repository = {
- homepage = "https://sellout.github.io/${config.project.name}";
- topics = ["library"];
+ self.lib.nonNixTestedGhcVersions)
+ config.services.haskell-ci.systems);
+ services.haskell-ci = {
+ inherit (self.lib) defaultGhcVersion;
+ ghcVersions = self.lib.nonNixTestedGhcVersions;
+ cabalPackages = {"${config.project.name}" = "haskell";};
+ extraDependencyVersions = ["doctest-0.24.0"];
+ latestGhcVersion = "9.10.1";
};
+
+ services.github.settings.repository.topics = ["recursion-schemes"];
}
diff --git a/.config/project/github-ci.nix b/.config/project/github-ci.nix
index 1584668..5fdda6a 100644
--- a/.config/project/github-ci.nix
+++ b/.config/project/github-ci.nix
@@ -1,4 +1,8 @@
-{lib, self, ...}: {
+{
+ lib,
+ self,
+ ...
+}: {
services.github.workflow."build.yml".text = lib.generators.toYAML {} {
name = "CI";
on = {
diff --git a/.config/project/github-pages.nix b/.config/project/github-pages.nix
index 4fe1090..73237e0 100644
--- a/.config/project/github-pages.nix
+++ b/.config/project/github-pages.nix
@@ -46,22 +46,22 @@ in {
{
uses = "cachix/install-nix-action@v24";
"with".extra_nix_config = ''
- extra-trusted-public-keys = cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=
- extra-substituters = https://cache.garnix.io
- '';
+ extra-trusted-public-keys = cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=
+ extra-substituters = https://cache.garnix.io
+ '';
}
{
uses = "lriesebos/nix-develop-command@v1";
"with".command = ''
- dhall-docs \
- --input ./dhall \
- --base-import-url "https://sellout.github.io/dada" \
- --package-name "dada"
- ## We copy here to fix the permissions from the Nix symlinks
- cp -r ./docs ./_site
- chmod --recursive +rwx ./_site
- cp -r ./dhall/* ./_site/
- '';
+ dhall-docs \
+ --input ./dhall \
+ --base-import-url "https://sellout.github.io/dada" \
+ --package-name "dada"
+ ## We copy here to fix the permissions from the Nix symlinks
+ cp -r ./docs ./_site
+ chmod --recursive +rwx ./_site
+ cp -r ./dhall/* ./_site/
+ '';
}
{
name = "Upload artifact";
diff --git a/.config/project/hlint.nix b/.config/project/hlint.nix
index 651d88a..ec53432 100644
--- a/.config/project/hlint.nix
+++ b/.config/project/hlint.nix
@@ -1,12 +1,31 @@
-{lib, pkgs, ...}: {
+{
+ lib,
+ pkgs,
+ ...
+}: {
## Haskell linter
programs.treefmt.programs.hlint.enable = true;
## TODO: Wrap this to find our generated hlint config in the store.
project.devPackages = [pkgs.hlint];
- project.file.".hlint.yaml".text = lib.generators.toYAML {} [
- {group = {name = "dollar"; enabled = true;};}
- {group = {name = "future"; enabled = true;};}
- {group = {name = "generalise"; enabled = true;};}
+ project.file.".hlint.yaml".text = lib.pm.generators.toYAML {} [
+ {
+ group = {
+ name = "dollar";
+ enabled = true;
+ };
+ }
+ {
+ group = {
+ name = "future";
+ enabled = true;
+ };
+ }
+ {
+ group = {
+ name = "generalise";
+ enabled = true;
+ };
+ }
{ignore = {name = "Eta reduce";};}
{ignore = {name = "Evaluate";};}
@@ -39,14 +58,54 @@
"package traversable"
];
rules = [
- {warn = {lhs = "forM"; rhs = "for";};}
- {warn = {lhs = "forM_"; rhs = "for_";};}
- {warn = {lhs = "map"; rhs = "fmap";};}
- {warn = {lhs = "mapM"; rhs = "traverse";};}
- {warn = {lhs = "mapM_"; rhs = "traverse_";};}
- {warn = {lhs = "return"; rhs = "pure";};}
- {warn = {lhs = "sequence"; rhs = "sequenceA";};}
- {warn = {lhs = "sequence_"; rhs = "sequenceA_";};}
+ {
+ warn = {
+ lhs = "forM";
+ rhs = "for";
+ };
+ }
+ {
+ warn = {
+ lhs = "forM_";
+ rhs = "for_";
+ };
+ }
+ {
+ warn = {
+ lhs = "map";
+ rhs = "fmap";
+ };
+ }
+ {
+ warn = {
+ lhs = "mapM";
+ rhs = "traverse";
+ };
+ }
+ {
+ warn = {
+ lhs = "mapM_";
+ rhs = "traverse_";
+ };
+ }
+ {
+ warn = {
+ lhs = "return";
+ rhs = "pure";
+ };
+ }
+ {
+ warn = {
+ lhs = "sequence";
+ rhs = "sequenceA";
+ };
+ }
+ {
+ warn = {
+ lhs = "sequence_";
+ rhs = "sequenceA_";
+ };
+ }
];
};
}
@@ -63,8 +122,18 @@
note = "IncreasesLaziness";
};
}
- {warn = {lhs = "mappend"; rhs = "(<>)";};}
- {warn = {lhs = "(++)"; rhs = "(<>)";};}
+ {
+ warn = {
+ lhs = "mappend";
+ rhs = "(<>)";
+ };
+ }
+ {
+ warn = {
+ lhs = "(++)";
+ rhs = "(<>)";
+ };
+ }
];
};
}
diff --git a/.gitattributes b/.gitattributes
index ce70d5f..319f421 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,17 +1,24 @@
-/dhall/** linguist-language=Dhall
/.cache/git/config linguist-generated
/.cache/git/hooks/pre-push linguist-generated
/.cache/vale/Vocab/dada/accept.txt linguist-generated
+/.cache/vale/config/vocabularies/dada/accept.txt linguist-generated
/.dir-locals.el linguist-generated
/.editorconfig linguist-generated
/.envrc linguist-generated
/.gitattributes linguist-generated
/.github/renovate.json linguist-generated
/.github/settings.yml linguist-generated
+/.github/workflows/build.yml linguist-generated
+/.github/workflows/hackage-publish.yml linguist-generated
+/.github/workflows/pages.yml linguist-generated
+/.github/workflows/switch-pm-generation.yml linguist-generated
/.gitignore linguist-generated
/.hlint.yaml linguist-generated
/.vale.ini linguist-generated
-/.github/workflows/build.yml linguist-generated
-/.github/workflows/flakehub-publish.yml linguist-generated
+/dhall/** linguist-language=Dhall
/garnix.yaml linguist-generated
-/.github/workflows/pages.yml linguist-generated
+/haskell/LICENSE linguist-generated
+/haskell/LICENSE.AGPL-3.0-only linguist-generated
+/haskell/LICENSE.Universal-FOSS-exception-1.0 linguist-generated
+/haskell/LICENSE.commercial linguist-generated
+/nix-ci.nix linguist-generated
diff --git a/.github/renovate.json b/.github/renovate.json
index 0ff5254..d6ad64d 100644
--- a/.github/renovate.json
+++ b/.github/renovate.json
@@ -1 +1 @@
-{"$schema":"https://docs.renovatebot.com/renovate-schema.json","extends":["config:base"],"lockFileMaintenance":{"enabled":true},"nix":{"enabled":true}}
\ No newline at end of file
+{"$schema":"https://docs.renovatebot.com/renovate-schema.json","extends":["config:recommended"],"labels":["automated"],"lockFileMaintenance":{"automerge":true,"enabled":true},"nix":{"enabled":true},"packageRules":[{"automerge":true,"matchCurrentVersion":"!/^0/","matchUpdateTypes":["minor","patch"]}]}
diff --git a/.github/settings.yml b/.github/settings.yml
index de42d99..4f874db 100644
--- a/.github/settings.yml
+++ b/.github/settings.yml
@@ -1,2 +1,2 @@
# This file was generated by Project Manager.
-{"actions":{"permissions":{"workflow":{"can_approve_pull_request_reviews":true}}},"branches":[{"name":"main","protection":{"allow_force_pushes":false,"enforce_admins":true,"required_linear_history":false,"required_pull_request_reviews":null,"required_status_checks":{"contexts":["CI / build (8.8.1) (pull_request)","CI / build (8.10.1) (pull_request)","CI / build (9.0.1) (pull_request)","CI / build (9.2.1) (pull_request)","CI / build (9.4.1) (pull_request)","CI / build (9.6.1) (pull_request)","devShell ghcghc948 [aarch64-darwin]","devShell ghcghc948 [aarch64-linux]","devShell ghcghc948 [i686-linux]","devShell ghcghc948 [x86_64-linux]","package ghcaarch64-darwin_all [aarch64-darwin]","package ghcaarch64-linux_all [aarch64-linux]","package ghci686-linux_all [i686-linux]","package ghcx86_64-linux_all [x86_64-linux]","devShell ghcghc8107 [aarch64-darwin]","devShell ghcghc8107 [aarch64-linux]","devShell ghcghc8107 [i686-linux]","devShell ghcghc8107 [x86_64-linux]","package ghcaarch64-darwin_all [aarch64-darwin]","package ghcaarch64-linux_all [aarch64-linux]","package ghci686-linux_all [i686-linux]","package ghcx86_64-linux_all [x86_64-linux]","devShell ghcghc902 [aarch64-darwin]","devShell ghcghc902 [aarch64-linux]","devShell ghcghc902 [i686-linux]","devShell ghcghc902 [x86_64-linux]","package ghcaarch64-darwin_all [aarch64-darwin]","package ghcaarch64-linux_all [aarch64-linux]","package ghci686-linux_all [i686-linux]","package ghcx86_64-linux_all [x86_64-linux]","devShell ghcghc924 [aarch64-darwin]","devShell ghcghc924 [aarch64-linux]","devShell ghcghc924 [i686-linux]","devShell ghcghc924 [x86_64-linux]","package ghcaarch64-darwin_all [aarch64-darwin]","package ghcaarch64-linux_all [aarch64-linux]","package ghci686-linux_all [i686-linux]","package ghcx86_64-linux_all [x86_64-linux]","devShell ghcghc942 [aarch64-darwin]","devShell ghcghc942 [aarch64-linux]","devShell ghcghc942 [i686-linux]","devShell ghcghc942 [x86_64-linux]","package ghcaarch64-darwin_all [aarch64-darwin]","package ghcaarch64-linux_all [aarch64-linux]","package ghci686-linux_all [i686-linux]","package ghcx86_64-linux_all [x86_64-linux]","devShell ghcghc962 [aarch64-darwin]","devShell ghcghc962 [aarch64-linux]","devShell ghcghc962 [i686-linux]","devShell ghcghc962 [x86_64-linux]","package ghcaarch64-darwin_all [aarch64-darwin]","package ghcaarch64-linux_all [aarch64-linux]","package ghci686-linux_all [i686-linux]","package ghcx86_64-linux_all [x86_64-linux]","homeConfig aarch64-darwin-dada-example","homeConfig aarch64-linux-dada-example","homeConfig i686-linux-dada-example","homeConfig x86_64-linux-dada-example","package default [aarch64-darwin]","package default [aarch64-linux]","package default [i686-linux]","package default [x86_64-linux]","package dada [aarch64-darwin]","package dada [aarch64-linux]","package dada [i686-linux]","package dada [x86_64-linux]","check formatter [aarch64-darwin]","check formatter [aarch64-linux]","check formatter [i686-linux]","check formatter [x86_64-linux]","devShell default [aarch64-darwin]","devShell default [aarch64-linux]","devShell default [i686-linux]","devShell default [x86_64-linux]"],"strict":false},"restrictions":null}}],"labels":[{"color":"","description":"Created automatically by some service or process","name":"automated"},{"color":"#d73a4a","description":"Something isn’t working","name":"bug"},{"color":"#333333","description":"Updates or other changes to dependencies","name":"dependencies"},{"color":"#0075ca","description":"Improvements or additions to documentation","name":"documentation"},{"color":"#a2eeef","description":"New feature or request","name":"enhancement"},{"color":"#7057ff","description":"Good for newcomers","name":"good first issue"},{"color":"#000000","description":"Issues you want contributors to help with.","name":"hacktoberfest"},{"color":"#ff7518","description":"Indicates acceptance for Hacktoberfest criteria, even if not merged yet.","name":"hacktoberfest-accepted"},{"color":"#008672","description":"Extra attention is needed","name":"help wanted"},{"color":"#333333","description":"Unaccepted contributions that haven’t been closed for some reason.","name":"invalid"},{"color":"#d876e3","description":"Further information is requested","name":"question"},{"color":"#ffc0cb","description":"Topic created in bad faith. Services like Hacktoberfest use this to identify bad actors.","name":"spam"},{"color":"#d4af37","description":"Work prioritized by a sponsor","name":"sponsored"}],"pages":{"build_type":"workflow","source":{"branch":"main"}},"repository":{"allow_merge_commit":true,"allow_rebase_merge":false,"allow_squash_merge":false,"default_branch":"main","delete_branch_on_merge":true,"description":"A total recursion scheme library for Dhall","enable_automated_security_fixes":true,"enable_vulnerability_alerts":true,"has_downloads":false,"has_issues":true,"has_projects":true,"has_wiki":true,"homepage":"https://sellout.github.io/dada","merge_commit_message":"PR_BODY","merge_commit_title":"PR_TITLE","name":"dada","private":false,"topics":"hacktoberfest, library"}}
\ No newline at end of file
+{"branches":[{"name":"main","protection":{"allow_force_pushes":false,"enforce_admins":true,"required_linear_history":false,"required_pull_request_reviews":null,"required_status_checks":{"contexts":["All Garnix checks","check-bounds","check-licenses","build (9.6.1, macos-15)","build (--prefer-oldest, 9.6.1, macos-15)","build (9.8.1, macos-15)","build (--prefer-oldest, 9.8.1, macos-15)","build (9.10.1, macos-15)","build (--prefer-oldest, 9.10.1, macos-15)","build (9.6.1, macos-15-intel)","build (--prefer-oldest, 9.6.1, macos-15-intel)","build (9.8.1, macos-15-intel)","build (--prefer-oldest, 9.8.1, macos-15-intel)","build (9.10.1, macos-15-intel)","build (--prefer-oldest, 9.10.1, macos-15-intel)","build (9.6.1, ubuntu-24.04)","build (--prefer-oldest, 9.6.1, ubuntu-24.04)","build (9.8.1, ubuntu-24.04)","build (--prefer-oldest, 9.8.1, ubuntu-24.04)","build (9.10.1, ubuntu-24.04)","build (--prefer-oldest, 9.10.1, ubuntu-24.04)","build (9.6.1, ubuntu-24.04-arm)","build (--prefer-oldest, 9.6.1, ubuntu-24.04-arm)","build (9.8.1, ubuntu-24.04-arm)","build (--prefer-oldest, 9.8.1, ubuntu-24.04-arm)","build (9.10.1, ubuntu-24.04-arm)","build (--prefer-oldest, 9.10.1, ubuntu-24.04-arm)","build (9.6.1, windows-2025)","build (--prefer-oldest, 9.6.1, windows-2025)","build (9.8.1, windows-2025)","build (--prefer-oldest, 9.8.1, windows-2025)","build (9.10.1, windows-2025)","build (--prefer-oldest, 9.10.1, windows-2025)"],"strict":false},"restrictions":null}}],"labels":[{"color":"#666666","description":"Created automatically by some service or process","name":"automated"},{"color":"#d73a4a","description":"Something isn’t working","name":"bug"},{"color":"#333333","description":"Updates or other changes to dependencies","name":"dependencies"},{"color":"#0075ca","description":"Improvements or additions to documentation","name":"documentation"},{"color":"#a2eeef","description":"New feature or request","name":"enhancement"},{"color":"#7057ff","description":"Good for newcomers","name":"good first issue"},{"color":"#000000","description":"Issues you want contributors to help with.","name":"hacktoberfest"},{"color":"#ff7518","description":"Indicates acceptance for Hacktoberfest criteria, even if not merged yet.","name":"hacktoberfest-accepted"},{"color":"#008672","description":"Extra attention is needed","name":"help wanted"},{"color":"#333333","description":"Unaccepted contributions that haven’t been closed for some reason.","name":"invalid"},{"color":"#d876e3","description":"Further information is requested","name":"question"},{"color":"#ffc0cb","description":"Topic created in bad faith. Services like Hacktoberfest use this to identify bad actors.","name":"spam"},{"color":"#d4af37","description":"Work prioritized by a sponsor","name":"sponsored"}],"repository":{"allow_merge_commit":true,"allow_rebase_merge":false,"allow_squash_merge":false,"default_branch":"main","delete_branch_on_merge":true,"description":"A total recursion scheme library for Dhall","enable_automated_security_fixes":true,"enable_vulnerability_alerts":true,"has_downloads":false,"has_issues":true,"has_projects":true,"has_wiki":true,"homepage":"https://sellout.github.io/dada","merge_commit_message":"PR_BODY","merge_commit_title":"PR_TITLE","name":"dada","private":false,"topics":"hacktoberfest, recursion-schemes"}}
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5eefe2d..950afef 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -1 +1 @@
-{"jobs":{"build":{"env":{"CONFIG":"--enable-tests --enable-benchmarks"},"runs-on":"ubuntu-latest","steps":[{"uses":"actions/checkout@v2"},{"id":"setup-haskell-cabal","uses":"haskell-actions/setup@v2","with":{"cabal-version":"3.10","ghc-version":"${{ matrix.ghc }}"}},{"run":"cabal v2-update"},{"run":"cabal v2-freeze $CONFIG"},{"uses":"actions/cache@v2","with":{"key":"${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}","path":"${{ steps.setup-haskell-cabal.outputs.cabal-store }}\ndist-newstyle\n"}},{"run":"cabal v2-test all $CONFIG"}],"strategy":{"fail-fast":false,"matrix":{"ghc":["8.8.1","8.10.1","9.0.1","9.2.1","9.4.1","9.6.1"]}}}},"name":"CI","on":{"pull_request":{"types":["opened","synchronize"]},"push":{"branches":["main"]}}}
\ No newline at end of file
+{"jobs":{"build":{"env":{"CONFIG":"--enable-benchmarks --enable-tests --allow-newer=dada:all --allow-older=dada:all ${{ matrix.bounds }}"},"runs-on":"${{ matrix.os }}","steps":[{"uses":"actions/checkout@v6"},{"id":"setup-haskell-cabal","uses":"haskell-actions/setup@v2","with":{"cabal-version":"3.14.2.0","ghc-version":"${{ matrix.ghc }}"}},{"run":"cabal v2-freeze $CONFIG"},{"uses":"actions/cache@v4","with":{"key":"${{ matrix.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}","path":"${{ steps.setup-haskell-cabal.outputs.cabal-store }}\ndist-newstyle\n"}},{"run":"cabal v2-build all $CONFIG"},{"run":"cabal v2-test all $CONFIG"},{"run":"mv dist-newstyle/cache/plan.json plan-${{ matrix.os }}-${{ matrix.ghc }}${{ matrix.bounds }}.json"},{"name":"Upload build plan as artifact","uses":"actions/upload-artifact@v4","with":{"name":"plan-${{ matrix.os }}-${{ matrix.ghc }}${{ matrix.bounds }}","path":"plan-${{ matrix.os }}-${{ matrix.ghc }}${{ matrix.bounds }}.json"}}],"strategy":{"fail-fast":false,"matrix":{"bounds":["--prefer-oldest",""],"exclude":[],"ghc":["9.6.1","9.8.1","9.10.1"],"include":[],"os":["macos-15","macos-15-intel","ubuntu-24.04","ubuntu-24.04-arm","windows-2025"]}}},"check-bounds":{"if":"always()","needs":["build"],"runs-on":"ubuntu-24.04","steps":[{"uses":"actions/checkout@v6"},{"id":"setup-haskell-cabal","uses":"haskell-actions/setup@v2","with":{"cabal-version":"3.14.2.0","ghc-version":"9.8.4"}},{"run":"cabal install cabal-plan-bounds"},{"name":"download Cabal plans","uses":"actions/download-artifact@v4","with":{"merge-multiple":true,"path":"plans","pattern":"plan-*"}},{"name":"Cabal plans considered in generated bounds","run":"find plans/"},{"name":"check if bounds have changed","run":"diffs=\"$(find . -name '*.cabal' -exec \\\n cabal-plan-bounds \\\n --dry-run \\\n --also doctest-0.24.0 \\\n plans/*.json \\\n --cabal {} \\;)\"\nif [[ -n \"$diffs\" ]]; then\n echo \"$diffs\"\n exit 1\nfi\n"}]},"check-licenses":{"if":"always()","needs":["build"],"runs-on":"ubuntu-24.04","steps":[{"uses":"actions/checkout@v6"},{"id":"setup-haskell-cabal","uses":"haskell-actions/setup@v2","with":{"cabal-version":"3.14.2.0","ghc-version":"9.8.4"}},{"run":"cabal install cabal-plan \\\n --flags='exe license-report' \\\n --ghc-options='-Wwarn'\n"},{"name":"download Cabal plans","uses":"actions/download-artifact@v4","with":{"merge-multiple":true,"path":"plans","pattern":"plan-*"}},{"run":"mkdir -p dist-newstyle/cache\nmv plans/plan-ubuntu-24.04-9.10.1.json dist-newstyle/cache/plan.json\n"},{"name":"check if licenses have changed","run":"declare -A packages=([dada]=haskell)\nfor package in \"${!packages[@]}\"; do\n {\n echo \"**NB**: This captures the licenses associated with a particular set of dependency versions. If your own build solves differently, it’s possible that the licenses may have changed, or even that the set of dependencies itself is different. Please make sure you run [\\`cabal-plan license-report\\`](https://hackage.haskell.org/package/cabal-plan) on your own components rather than assuming this is authoritative.\"\n echo\n cabal-plan license-report \"$package:lib:$package\"\n } >\"${packages[$package]}/docs/license-report.md\"\ndone\ngit diff --exit-code */docs/license-report.md\n"}]}},"name":"CI","on":{"pull_request":{"types":["opened","synchronize"]},"push":{"branches":["main"]}}}
\ No newline at end of file
diff --git a/.github/workflows/hackage-publish.yml b/.github/workflows/hackage-publish.yml
new file mode 100644
index 0000000..6f53e60
--- /dev/null
+++ b/.github/workflows/hackage-publish.yml
@@ -0,0 +1 @@
+{"jobs":{"hackage-publish":{"permissions":{"contents":"read","id-token":"write"},"runs-on":"ubuntu-24.04","steps":[{"uses":"actions/checkout@v6","with":{"ref":"${{ (inputs.tag != null) && format('refs/tags/{0}', inputs.tag) || '' }}"}},{"id":"setup-haskell-cabal","uses":"haskell-actions/setup@v2","with":{"cabal-version":"3.14.2.0","ghc-version":"9.10.1"}},{"run":"cabal v2-sdist --output-directory='${{ runner.temp }}/packages/' all"},{"uses":"haskell-actions/hackage-publish@v1","with":{"hackageToken":"${{ secrets.HACKAGE_AUTH_TOKEN }}","packagesPath":"${{ runner.temp }}/packages/","publish":true}}]}},"name":"Publish release to Hackage","on":{"push":{"tags":["v?[0-9]+.[0-9]+.[0-9]+*"]},"workflow_dispatch":{"inputs":{"tag":{"description":"The existing version to publish to Hackage","required":true,"type":"string"}}}}}
\ No newline at end of file
diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml
index d07e84c..e5592b4 100644
--- a/.github/workflows/pages.yml
+++ b/.github/workflows/pages.yml
@@ -1 +1 @@
-{"concurrency":{"cancel-in-progress":false,"group":"pages"},"jobs":{"build":{"runs-on":"ubuntu-latest","steps":[{"name":"Checkout","uses":"actions/checkout@v4"},{"name":"Setup Pages","uses":"actions/configure-pages@v4"},{"uses":"cachix/install-nix-action@v24","with":{"extra_nix_config":"extra-trusted-public-keys = cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=\nextra-substituters = https://cache.garnix.io\n"}},{"uses":"lriesebos/nix-develop-command@v1","with":{"command":"dhall-docs \\\n --input ./dhall \\\n --base-import-url \"https://sellout.github.io/dada\" \\\n --package-name \"dada\"\n## We copy here to fix the permissions from the Nix symlinks\ncp -r ./docs ./_site\nchmod --recursive +rwx ./_site\ncp -r ./dhall/* ./_site/\n"}},{"name":"Upload artifact","uses":"actions/upload-pages-artifact@v2"}]},"deploy":{"environment":{"name":"github-pages","url":"$"},"needs":"build","runs-on":"ubuntu-latest","steps":[{"id":"deployment","name":"Deploy to GitHub Pages","uses":"actions/deploy-pages@v3"}]}},"name":"Deploy modules & generated docs to Pages","on":{"push":{"branches":["main"]},"workflow_dispatch":null},"permissions":{"contents":"read","id-token":"write","pages":"write"}}
\ No newline at end of file
+{"concurrency":{"cancel-in-progress":false,"group":"pages"},"jobs":{"build":{"runs-on":"ubuntu-24.04","steps":[{"name":"Checkout","uses":"actions/checkout@v6"},{"name":"Setup Pages","uses":"actions/configure-pages@v4"},{"uses":"cachix/install-nix-action@v24","with":{"extra_nix_config":"extra-trusted-public-keys = cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=\nextra-substituters = https://cache.garnix.io\n"}},{"uses":"lriesebos/nix-develop-command@v1","with":{"command":"dhall-docs \\\n --input ./dhall \\\n --base-import-url \"https://sellout.github.io/dada\" \\\n --package-name \"dada\"\n## We copy here to fix the permissions from the Nix symlinks\ncp -r ./docs ./_site\nchmod --recursive +rwx ./_site\ncp -r ./dhall/* ./_site/\n"}},{"name":"Upload artifact","uses":"actions/upload-pages-artifact@v3"}]},"deploy":{"environment":{"name":"github-pages","url":"${{ steps.deployment.outputs.page_url }}"},"needs":"build","runs-on":"ubuntu-24.04","steps":[{"id":"deployment","name":"Deploy to GitHub Pages","uses":"actions/deploy-pages@v4"}]}},"name":"Deploy modules & generated docs to Pages","on":{"push":{"branches":["main"]},"workflow_dispatch":null},"permissions":{"contents":"read","id-token":"write","pages":"write"}}
\ No newline at end of file
diff --git a/.github/workflows/switch-pm-generation.yml b/.github/workflows/switch-pm-generation.yml
new file mode 100644
index 0000000..e77bf7e
--- /dev/null
+++ b/.github/workflows/switch-pm-generation.yml
@@ -0,0 +1,2 @@
+# This file was generated by Project Manager.
+{"jobs":{"switch":{"if":"github.head_ref == 'renovate/lock-file-maintenance'","runs-on":"ubuntu-24.04","steps":[{"uses":"actions/checkout@v6","with":{"ref":"${{ github.event.pull_request.head.ref }}","repository":"${{ github.event.pull_request.head.repo.full_name }}","token":"${{ secrets.PROJECT_MANAGER_TOKEN }}"}},{"uses":"cachix/install-nix-action@v31"},{"run":"nix develop .#project-manager --accept-flake-config --command project-manager kitchen-sink"},{"name":"commit changes","uses":"EndBug/add-and-commit@v9","with":{"add":"--all","default_author":"github_actions","message":"Switch Project Manager generation","push":"origin --no-verify --set-upstream"}}]}},"name":"Project Manager","on":{"pull_request":{}}}
diff --git a/.gitignore b/.gitignore
index 93e6fc6..f3631bb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,7 +2,14 @@
/source
dist-newstyle
/.cache/vale/*
+!/.cache/vale/config/
+/.cache/vale/config/*
+!/.cache/vale/config/vocabularies/
+/.cache/vale/config/vocabularies/*
+!/.cache/vale/config/vocabularies/dada/
!/.cache/vale/Vocab/
/.cache/vale/Vocab/*
!/.cache/vale/Vocab/dada/
+/.local/state/project-manager/
+/.local/state/nix/profiles/
/.cache/direnv/
diff --git a/.hlint.yaml b/.hlint.yaml
index 0fbd572..c872206 100644
--- a/.hlint.yaml
+++ b/.hlint.yaml
@@ -1 +1,2 @@
-[{"group":{"enabled":true,"name":"dollar"}},{"group":{"enabled":true,"name":"future"}},{"group":{"enabled":true,"name":"generalise"}},{"ignore":{"name":"Eta reduce"}},{"ignore":{"name":"Evaluate"}},{"ignore":{"name":"Reduce duplication"}},{"ignore":{"name":"Use list comprehension"}},{"ignore":{"name":"Use section"}},{"package":{"modules":["import Control.Monad"],"name":"monad"}},{"package":{"modules":["import Data.Foldable","import Data.Traversable"],"name":"traversable"}},{"group":{"imports":["package monad","package traversable"],"name":"generalize","rules":[{"warn":{"lhs":"forM","rhs":"for"}},{"warn":{"lhs":"forM_","rhs":"for_"}},{"warn":{"lhs":"map","rhs":"fmap"}},{"warn":{"lhs":"mapM","rhs":"traverse"}},{"warn":{"lhs":"mapM_","rhs":"traverse_"}},{"warn":{"lhs":"return","rhs":"pure"}},{"warn":{"lhs":"sequence","rhs":"sequenceA"}},{"warn":{"lhs":"sequence_","rhs":"sequenceA_"}}]}},{"group":{"imports":["package traversable"],"name":"generalize","rules":[{"hint":{"lhs":"maybe (pure ())","note":"IncreasesLaziness","rhs":"traverse_"}},{"warn":{"lhs":"mappend","rhs":"(<>)"}},{"warn":{"lhs":"(++)","rhs":"(<>)"}}]}}]
\ No newline at end of file
+# This file was generated by Project Manager.
+[{"group":{"enabled":true,"name":"dollar"}},{"group":{"enabled":true,"name":"future"}},{"group":{"enabled":true,"name":"generalise"}},{"ignore":{"name":"Eta reduce"}},{"ignore":{"name":"Evaluate"}},{"ignore":{"name":"Reduce duplication"}},{"ignore":{"name":"Use list comprehension"}},{"ignore":{"name":"Use section"}},{"package":{"modules":["import Control.Monad"],"name":"monad"}},{"package":{"modules":["import Data.Foldable","import Data.Traversable"],"name":"traversable"}},{"group":{"imports":["package monad","package traversable"],"name":"generalize","rules":[{"warn":{"lhs":"forM","rhs":"for"}},{"warn":{"lhs":"forM_","rhs":"for_"}},{"warn":{"lhs":"map","rhs":"fmap"}},{"warn":{"lhs":"mapM","rhs":"traverse"}},{"warn":{"lhs":"mapM_","rhs":"traverse_"}},{"warn":{"lhs":"return","rhs":"pure"}},{"warn":{"lhs":"sequence","rhs":"sequenceA"}},{"warn":{"lhs":"sequence_","rhs":"sequenceA_"}}]}},{"group":{"imports":["package traversable"],"name":"generalize","rules":[{"hint":{"lhs":"maybe (pure ())","note":"IncreasesLaziness","rhs":"traverse_"}},{"warn":{"lhs":"mappend","rhs":"(<>)"}},{"warn":{"lhs":"(++)","rhs":"(<>)"}}]}}]
diff --git a/.shellcheckrc b/.shellcheckrc
index 73785e9..876bca7 100644
--- a/.shellcheckrc
+++ b/.shellcheckrc
@@ -1,4 +1,4 @@
## -*- mode: sh -*-
-# Unicode quotes are good, and Shellcheck gets this wrong a lot.
+# Unicode quotes are good, and ShellCheck gets this wrong a lot.
disable=SC1111,SC1112
diff --git a/LICENSE b/LICENSE
index be3f7b2..a3f833f 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,661 +1,8 @@
- GNU AFFERO GENERAL PUBLIC LICENSE
- Version 3, 19 November 2007
+LicenseListVersion: 3.27.0
+SPDX-License-Identifier: AGPL-3.0-only WITH Universal-FOSS-exception-1.0 OR LicenseRef-commercial
- Copyright (C) 2007 Free Software Foundation, Inc.
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
+The individual licenses are included in files named “LICENSE.” with a suffix
+that matches each license’s identifier.
- Preamble
-
- The GNU Affero General Public License is a free, copyleft license for
-software and other kinds of works, specifically designed to ensure
-cooperation with the community in the case of network server software.
-
- The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works. By contrast,
-our General Public Licenses are intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
- Developers that use our General Public Licenses protect your rights
-with two steps: (1) assert copyright on the software, and (2) offer
-you this License which gives you legal permission to copy, distribute
-and/or modify the software.
-
- A secondary benefit of defending all users' freedom is that
-improvements made in alternate versions of the program, if they
-receive widespread use, become available for other developers to
-incorporate. Many developers of free software are heartened and
-encouraged by the resulting cooperation. However, in the case of
-software used on network servers, this result may fail to come about.
-The GNU General Public License permits making a modified version and
-letting the public access it on a server without ever releasing its
-source code to the public.
-
- The GNU Affero General Public License is designed specifically to
-ensure that, in such cases, the modified source code becomes available
-to the community. It requires the operator of a network server to
-provide the source code of the modified version running there to the
-users of that server. Therefore, public use of a modified version, on
-a publicly accessible server, gives the public access to the source
-code of the modified version.
-
- An older license, called the Affero General Public License and
-published by Affero, was designed to accomplish similar goals. This is
-a different license, not a version of the Affero GPL, but Affero has
-released a new version of the Affero GPL which permits relicensing under
-this license.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- TERMS AND CONDITIONS
-
- 0. Definitions.
-
- "This License" refers to version 3 of the GNU Affero General Public License.
-
- "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
- "The Program" refers to any copyrightable work licensed under this
-License. Each licensee is addressed as "you". "Licensees" and
-"recipients" may be individuals or organizations.
-
- To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy. The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
- A "covered work" means either the unmodified Program or a work based
-on the Program.
-
- To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy. Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
- To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies. Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
- An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License. If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
- 1. Source Code.
-
- The "source code" for a work means the preferred form of the work
-for making modifications to it. "Object code" means any non-source
-form of a work.
-
- A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
- The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form. A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
- The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities. However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work. For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
- The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
- The Corresponding Source for a work in source code form is that
-same work.
-
- 2. Basic Permissions.
-
- All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met. This License explicitly affirms your unlimited
-permission to run the unmodified Program. The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work. This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
- You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force. You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright. Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
- Conveying under any other circumstances is permitted solely under
-the conditions stated below. Sublicensing is not allowed; section 10
-makes it unnecessary.
-
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
- No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
- When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
- 4. Conveying Verbatim Copies.
-
- You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
- You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
- 5. Conveying Modified Source Versions.
-
- You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
- a) The work must carry prominent notices stating that you modified
- it, and giving a relevant date.
-
- b) The work must carry prominent notices stating that it is
- released under this License and any conditions added under section
- 7. This requirement modifies the requirement in section 4 to
- "keep intact all notices".
-
- c) You must license the entire work, as a whole, under this
- License to anyone who comes into possession of a copy. This
- License will therefore apply, along with any applicable section 7
- additional terms, to the whole of the work, and all its parts,
- regardless of how they are packaged. This License gives no
- permission to license the work in any other way, but it does not
- invalidate such permission if you have separately received it.
-
- d) If the work has interactive user interfaces, each must display
- Appropriate Legal Notices; however, if the Program has interactive
- interfaces that do not display Appropriate Legal Notices, your
- work need not make them do so.
-
- A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit. Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
- 6. Conveying Non-Source Forms.
-
- You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
- a) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by the
- Corresponding Source fixed on a durable physical medium
- customarily used for software interchange.
-
- b) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by a
- written offer, valid for at least three years and valid for as
- long as you offer spare parts or customer support for that product
- model, to give anyone who possesses the object code either (1) a
- copy of the Corresponding Source for all the software in the
- product that is covered by this License, on a durable physical
- medium customarily used for software interchange, for a price no
- more than your reasonable cost of physically performing this
- conveying of source, or (2) access to copy the
- Corresponding Source from a network server at no charge.
-
- c) Convey individual copies of the object code with a copy of the
- written offer to provide the Corresponding Source. This
- alternative is allowed only occasionally and noncommercially, and
- only if you received the object code with such an offer, in accord
- with subsection 6b.
-
- d) Convey the object code by offering access from a designated
- place (gratis or for a charge), and offer equivalent access to the
- Corresponding Source in the same way through the same place at no
- further charge. You need not require recipients to copy the
- Corresponding Source along with the object code. If the place to
- copy the object code is a network server, the Corresponding Source
- may be on a different server (operated by you or a third party)
- that supports equivalent copying facilities, provided you maintain
- clear directions next to the object code saying where to find the
- Corresponding Source. Regardless of what server hosts the
- Corresponding Source, you remain obligated to ensure that it is
- available for as long as needed to satisfy these requirements.
-
- e) Convey the object code using peer-to-peer transmission, provided
- you inform other peers where the object code and Corresponding
- Source of the work are being offered to the general public at no
- charge under subsection 6d.
-
- A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
- A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling. In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage. For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product. A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
- "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source. The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
- If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information. But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
- The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed. Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
- Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
- 7. Additional Terms.
-
- "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law. If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
- When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it. (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.) You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
- Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
- a) Disclaiming warranty or limiting liability differently from the
- terms of sections 15 and 16 of this License; or
-
- b) Requiring preservation of specified reasonable legal notices or
- author attributions in that material or in the Appropriate Legal
- Notices displayed by works containing it; or
-
- c) Prohibiting misrepresentation of the origin of that material, or
- requiring that modified versions of such material be marked in
- reasonable ways as different from the original version; or
-
- d) Limiting the use for publicity purposes of names of licensors or
- authors of the material; or
-
- e) Declining to grant rights under trademark law for use of some
- trade names, trademarks, or service marks; or
-
- f) Requiring indemnification of licensors and authors of that
- material by anyone who conveys the material (or modified versions of
- it) with contractual assumptions of liability to the recipient, for
- any liability that these contractual assumptions directly impose on
- those licensors and authors.
-
- All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10. If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term. If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
- If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
- Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
- 8. Termination.
-
- You may not propagate or modify a covered work except as expressly
-provided under this License. Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
- However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
- Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
- Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License. If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
- 9. Acceptance Not Required for Having Copies.
-
- You are not required to accept this License in order to receive or
-run a copy of the Program. Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance. However,
-nothing other than this License grants you permission to propagate or
-modify any covered work. These actions infringe copyright if you do
-not accept this License. Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
- 10. Automatic Licensing of Downstream Recipients.
-
- Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License. You are not responsible
-for enforcing compliance by third parties with this License.
-
- An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations. If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
- You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License. For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
- 11. Patents.
-
- A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based. The
-work thus licensed is called the contributor's "contributor version".
-
- A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version. For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
- Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
- In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement). To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
- If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients. "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
- If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
- A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License. You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
- Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
- 12. No Surrender of Others' Freedom.
-
- If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all. For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
- 13. Remote Network Interaction; Use with the GNU General Public License.
-
- Notwithstanding any other provision of this License, if you modify the
-Program, your modified version must prominently offer all users
-interacting with it remotely through a computer network (if your version
-supports such interaction) an opportunity to receive the Corresponding
-Source of your version by providing access to the Corresponding Source
-from a network server at no charge, through some standard or customary
-means of facilitating copying of software. This Corresponding Source
-shall include the Corresponding Source for any work covered by version 3
-of the GNU General Public License that is incorporated pursuant to the
-following paragraph.
-
- Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU General Public License into a single
-combined work, and to convey the resulting work. The terms of this
-License will continue to apply to the part which is the covered work,
-but the work with which it is combined will remain governed by version
-3 of the GNU General Public License.
-
- 14. Revised Versions of this License.
-
- The Free Software Foundation may publish revised and/or new versions of
-the GNU Affero General Public License from time to time. Such new versions
-will be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Program specifies that a certain numbered version of the GNU Affero General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation. If the Program does not specify a version number of the
-GNU Affero General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
- If the Program specifies that a proxy can decide which future
-versions of the GNU Affero General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
- Later license versions may give you additional or different
-permissions. However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
- 15. Disclaimer of Warranty.
-
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
- 16. Limitation of Liability.
-
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
- 17. Interpretation of Sections 15 and 16.
-
- If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-
- Copyright (C)
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see .
-
-Also add information on how to contact you by electronic and paper mail.
-
- If your software can interact with users remotely through a computer
-network, you should also make sure that it provides a way for users to
-get its source. For example, if your program is a web application, its
-interface could display a "Source" link that leads users to an archive
-of the code. There are many ways you could offer source, and different
-solutions will be better for different programs; see section 13 for the
-specific requirements.
-
- You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU AGPL, see
-.
+Also make sure you comply with the licenses listed in the docs/license-report.md
+file included with the packages you depend on.
diff --git a/LICENSE.AGPL-3.0-only b/LICENSE.AGPL-3.0-only
new file mode 100644
index 0000000..be3f7b2
--- /dev/null
+++ b/LICENSE.AGPL-3.0-only
@@ -0,0 +1,661 @@
+ GNU AFFERO GENERAL PUBLIC LICENSE
+ Version 3, 19 November 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU Affero General Public License is a free, copyleft license for
+software and other kinds of works, specifically designed to ensure
+cooperation with the community in the case of network server software.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+our General Public Licenses are intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ Developers that use our General Public Licenses protect your rights
+with two steps: (1) assert copyright on the software, and (2) offer
+you this License which gives you legal permission to copy, distribute
+and/or modify the software.
+
+ A secondary benefit of defending all users' freedom is that
+improvements made in alternate versions of the program, if they
+receive widespread use, become available for other developers to
+incorporate. Many developers of free software are heartened and
+encouraged by the resulting cooperation. However, in the case of
+software used on network servers, this result may fail to come about.
+The GNU General Public License permits making a modified version and
+letting the public access it on a server without ever releasing its
+source code to the public.
+
+ The GNU Affero General Public License is designed specifically to
+ensure that, in such cases, the modified source code becomes available
+to the community. It requires the operator of a network server to
+provide the source code of the modified version running there to the
+users of that server. Therefore, public use of a modified version, on
+a publicly accessible server, gives the public access to the source
+code of the modified version.
+
+ An older license, called the Affero General Public License and
+published by Affero, was designed to accomplish similar goals. This is
+a different license, not a version of the Affero GPL, but Affero has
+released a new version of the Affero GPL which permits relicensing under
+this license.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU Affero General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Remote Network Interaction; Use with the GNU General Public License.
+
+ Notwithstanding any other provision of this License, if you modify the
+Program, your modified version must prominently offer all users
+interacting with it remotely through a computer network (if your version
+supports such interaction) an opportunity to receive the Corresponding
+Source of your version by providing access to the Corresponding Source
+from a network server at no charge, through some standard or customary
+means of facilitating copying of software. This Corresponding Source
+shall include the Corresponding Source for any work covered by version 3
+of the GNU General Public License that is incorporated pursuant to the
+following paragraph.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the work with which it is combined will remain governed by version
+3 of the GNU General Public License.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU Affero General Public License from time to time. Such new versions
+will be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU Affero General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU Affero General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU Affero General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If your software can interact with users remotely through a computer
+network, you should also make sure that it provides a way for users to
+get its source. For example, if your program is a web application, its
+interface could display a "Source" link that leads users to an archive
+of the code. There are many ways you could offer source, and different
+solutions will be better for different programs; see section 13 for the
+specific requirements.
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU AGPL, see
+.
diff --git a/LICENSE.Universal-FOSS-exception-1.0 b/LICENSE.Universal-FOSS-exception-1.0
new file mode 100644
index 0000000..b4187e5
--- /dev/null
+++ b/LICENSE.Universal-FOSS-exception-1.0
@@ -0,0 +1,7 @@
+In addition to the rights set forth in the other license(s) included in the distribution for this software, data, and/or documentation (collectively the "Software," and such licenses collectively with this additional permission the "Software License"), the copyright holders wish to facilitate interoperability with other software, data, and/or documentation distributed with complete corresponding source under a license that is OSI-approved and/or categorized by the FSF as free (collectively "Other FOSS"). We therefore hereby grant the following additional permission with respect to the use and distribution of the Software with Other FOSS, and the constants, function signatures, data structures and other invocation methods used to run or interact with each of them (as to each, such software's "Interfaces"):
+
+ (i) The Software's Interfaces may, to the extent permitted by the license of the Other FOSS, be copied into, used and distributed in the Other FOSS in order to enable interoperability, without requiring a change to the license of the Other FOSS other than as to any Interfaces of the Software embedded therein. The Software's Interfaces remain at all times under the Software License, including without limitation as used in the Other FOSS (which upon any such use also then contains a portion of the Software under the Software License).
+ (ii) The Other FOSS's Interfaces may, to the extent permitted by the license of the Other FOSS, be copied into, used and distributed in the Software in order to enable interoperability, without requiring that such Interfaces be licensed under the terms of the Software License or otherwise altering their original terms, if this does not require any portion of the Software other than such Interfaces to be licensed under the terms other than the Software License.
+ (iii) If only Interfaces and no other code is copied between the Software and the Other FOSS in either direction, the use and/or distribution of the Software with the Other FOSS shall not be deemed to require that the Other FOSS be licensed under the license of the Software, other than as to any Interfaces of the Software copied into the Other FOSS. This includes, by way of example and without limitation, statically or dynamically linking the Software together with Other FOSS after enabling interoperability using the Interfaces of one or both, and distributing the resulting combination under different licenses for the respective portions thereof.
+
+For avoidance of doubt, a license which is OSI-approved or categorized by the FSF as free, includes, for the purpose of this permission, such licenses with additional permissions, and any license that has previously been so-approved or categorized as free, even if now deprecated or otherwise no longer recognized as approved or free. Nothing in this additional permission grants any right to distribute any portion of the Software on terms other than those of the Software License or grants any additional permission of any kind for use or distribution of the Software in conjunction with software other than Other FOSS.
diff --git a/LICENSE.commercial b/LICENSE.commercial
new file mode 100644
index 0000000..3bc6320
--- /dev/null
+++ b/LICENSE.commercial
@@ -0,0 +1,3 @@
+This software is available for commercial licensing with flexible terms.
+
+Contact licensing@technomadic.org for more information.
diff --git a/README.md b/README.md
index 33b3e29..4bffdbc 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-# dada
+# Dada
-[](https://garnix.io)
-[](https://repology.org/project/haskell:dada/versions)
-[](https://repology.org/project/haskell:dada/versions)
+[](https://garnix.io/repo/sellout/dada)
+[](https://nix-ci.com/gh:sellout:dada)
+[](https://sellout.github.io/project-manager/)
A total recursion scheme library for Dhall
diff --git a/cabal.project b/cabal.project
index d4b23af..721284b 100644
--- a/cabal.project
+++ b/cabal.project
@@ -1,5 +1,23 @@
+-- Tune the solver to improve the odds of finding a solution. This is useful for
+-- initializing and updating dependency bounds, but shouldn’t have an impact on
+-- regular usage, because the explicit bounds reduce the search space.
+max-backjumps: -1
+minimize-conflict-set: true
+reorder-goals: true
+
program-options
- ghc-options: -Werror
+ ghc-options:
+ -Werror
+
+constraints:
+ -- Versions before this are missing dependency bounds
+ pretty-simple >= 1.0.0.5,
+ -- Versions before this use `-fpackage-trust`, which is a pain
+ yaya >= 0.6.2.2,
+if arch(aarch64)
+ constraints:
+ -- Earlier versions fail to compile on aarch64
+ cborg >= 0.2.9.0
tests: True
diff --git a/flake.lock b/flake.lock
index 3e9be30..1b8ae03 100644
--- a/flake.lock
+++ b/flake.lock
@@ -3,46 +3,34 @@
"bash-strict-mode": {
"inputs": {
"flake-utils": [
+ "flaky",
+ "bash-strict-mode",
+ "flaky",
"flake-utils"
],
"flaky": [
"flaky"
],
"nixpkgs": [
+ "flaky",
+ "bash-strict-mode",
+ "flaky",
"nixpkgs"
],
- "shellcheck-nix-attributes": "shellcheck-nix-attributes"
- },
- "locked": {
- "lastModified": 1702433407,
- "narHash": "sha256-JeQZinbYjQzHg/1DXu0N7nZ9CbKBIwpNChxJcqRU/jM=",
- "owner": "sellout",
- "repo": "bash-strict-mode",
- "rev": "e90ce930e32b766a87b738612925d86878671e3a",
- "type": "github"
- },
- "original": {
- "owner": "sellout",
- "repo": "bash-strict-mode",
- "type": "github"
- }
- },
- "bash-strict-mode_2": {
- "inputs": {
- "flake-utils": "flake-utils",
- "flaky": "flaky",
- "nixpkgs": [
- "concat",
- "nixpkgs"
- ],
- "shellcheck-nix-attributes": "shellcheck-nix-attributes_2"
+ "shellcheck-nix-attributes": "shellcheck-nix-attributes",
+ "systems": [
+ "flaky",
+ "bash-strict-mode",
+ "flaky",
+ "systems"
+ ]
},
"locked": {
- "lastModified": 1702433407,
- "narHash": "sha256-JeQZinbYjQzHg/1DXu0N7nZ9CbKBIwpNChxJcqRU/jM=",
+ "lastModified": 1760335406,
+ "narHash": "sha256-JEUQ0VCJ2vtboskOa4gR+8bqRtF6BCjag+/y4ifjY0c=",
"owner": "sellout",
"repo": "bash-strict-mode",
- "rev": "e90ce930e32b766a87b738612925d86878671e3a",
+ "rev": "8d0fc421b09294c923f4b348eae2ef4b868221fc",
"type": "github"
},
"original": {
@@ -51,51 +39,33 @@
"type": "github"
}
},
- "concat": {
- "inputs": {
- "bash-strict-mode": "bash-strict-mode_2",
- "flake-utils": [
- "flake-utils"
- ],
- "home-manager": "home-manager_2",
- "nixpkgs": [
- "nixpkgs"
- ]
- },
- "locked": {
- "lastModified": 1703163186,
- "narHash": "sha256-Q7w7gIDig6lwJGUE1F7q6eWWcGiWxZ6OIq6SHVKp0ho=",
- "owner": "compiling-to-categories",
- "repo": "concat",
- "rev": "3379bc9611ea245bce949e19ef9e2fb4c584a368",
- "type": "github"
- },
- "original": {
- "owner": "compiling-to-categories",
- "repo": "concat",
- "type": "github"
- }
- },
"dhall-bhat": {
"inputs": {
- "bash-strict-mode": [
+ "flake-utils": [
+ "dhall-bhat",
"flaky",
- "bash-strict-mode"
+ "flake-utils"
],
- "flake-utils": "flake-utils_2",
"flaky": [
"flaky"
],
"nixpkgs": [
+ "dhall-bhat",
+ "flaky",
"nixpkgs"
+ ],
+ "systems": [
+ "dhall-bhat",
+ "flaky",
+ "systems"
]
},
"locked": {
- "lastModified": 1694641803,
- "narHash": "sha256-gvtKNIron95DH4HGzDYy8NjI7umSQkCYxVoSd3B8lNk=",
+ "lastModified": 1764565478,
+ "narHash": "sha256-XqqksEmMgRWRuLP+5V1fP+cQQFFGjJ+wH3PZIbl6fn0=",
"owner": "sellout",
"repo": "dhall-bhat",
- "rev": "59dc4cf691c0b51c6bd856bc5f010524b32460fc",
+ "rev": "b7214f7150a52cc61e10a31953f3a32532906878",
"type": "github"
},
"original": {
@@ -104,38 +74,6 @@
"type": "github"
}
},
- "flake-compat": {
- "flake": false,
- "locked": {
- "lastModified": 1673956053,
- "narHash": "sha256-4gtG9iQuiKITOjNQQeQIpoIB6b16fm+504Ch3sNKLd8=",
- "owner": "edolstra",
- "repo": "flake-compat",
- "rev": "35bb57c0c8d8b62bbfd284272c928ceb64ddbde9",
- "type": "github"
- },
- "original": {
- "owner": "edolstra",
- "repo": "flake-compat",
- "type": "github"
- }
- },
- "flake-compat_2": {
- "flake": false,
- "locked": {
- "lastModified": 1673956053,
- "narHash": "sha256-4gtG9iQuiKITOjNQQeQIpoIB6b16fm+504Ch3sNKLd8=",
- "owner": "edolstra",
- "repo": "flake-compat",
- "rev": "35bb57c0c8d8b62bbfd284272c928ceb64ddbde9",
- "type": "github"
- },
- "original": {
- "owner": "edolstra",
- "repo": "flake-compat",
- "type": "github"
- }
- },
"flake-schemas": {
"locked": {
"lastModified": 1701189173,
@@ -152,68 +90,19 @@
"type": "github"
}
},
- "flake-schemas_2": {
- "locked": {
- "lastModified": 1701189173,
- "narHash": "sha256-ieQZLjqfvOP+52WeMdkD/x5njEIAqjKuAc/jnmruaoc=",
- "owner": "sellout",
- "repo": "flake-schemas",
- "rev": "68727227a8f349fe0831f6389d9a91064637b70c",
- "type": "github"
- },
- "original": {
- "owner": "sellout",
- "ref": "patch-1",
- "repo": "flake-schemas",
- "type": "github"
- }
- },
"flake-utils": {
"inputs": {
- "systems": "systems"
- },
- "locked": {
- "lastModified": 1701680307,
- "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=",
- "owner": "numtide",
- "repo": "flake-utils",
- "rev": "4022d587cbbfd70fe950c1e2083a02621806a725",
- "type": "github"
- },
- "original": {
- "owner": "numtide",
- "repo": "flake-utils",
- "type": "github"
- }
- },
- "flake-utils_2": {
- "inputs": {
- "systems": "systems_2"
- },
- "locked": {
- "lastModified": 1689068808,
- "narHash": "sha256-6ixXo3wt24N/melDWjq70UuHQLxGV8jZvooRanIHXw0=",
- "owner": "numtide",
- "repo": "flake-utils",
- "rev": "919d646de7be200f3bf08cb76ae1f09402b6f9b4",
- "type": "github"
- },
- "original": {
- "owner": "numtide",
- "repo": "flake-utils",
- "type": "github"
- }
- },
- "flake-utils_3": {
- "inputs": {
- "systems": "systems_3"
+ "systems": [
+ "flaky",
+ "systems"
+ ]
},
"locked": {
- "lastModified": 1701680307,
- "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=",
+ "lastModified": 1731533236,
+ "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
- "rev": "4022d587cbbfd70fe950c1e2083a02621806a725",
+ "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
@@ -224,29 +113,22 @@
},
"flaky": {
"inputs": {
- "bash-strict-mode": [
- "concat",
- "bash-strict-mode"
- ],
- "flake-utils": [
- "concat",
- "bash-strict-mode",
- "flake-utils"
- ],
+ "bash-strict-mode": "bash-strict-mode",
+ "flake-utils": "flake-utils",
+ "garnix-systems": "garnix-systems",
"home-manager": "home-manager",
- "nixpkgs": [
- "concat",
- "bash-strict-mode",
- "nixpkgs"
- ],
- "project-manager": "project-manager"
+ "nixpkgs": "nixpkgs",
+ "project-manager": "project-manager",
+ "systems": [
+ "systems"
+ ]
},
"locked": {
- "lastModified": 1702402116,
- "narHash": "sha256-ruM8VVA/LWis7qRryjQIuMx2jAQxwVd7XuEDMVobQDs=",
+ "lastModified": 1764141235,
+ "narHash": "sha256-3iOSKawEthvVPD4PdYEwCemu50SuXzywHgosVx4SI0c=",
"owner": "sellout",
"repo": "flaky",
- "rev": "d3fd32e4e39e3ddce418fe32fc15167a9761d542",
+ "rev": "b5c62448ddfadd3add2b1f16c14da220154ec3e2",
"type": "github"
},
"original": {
@@ -255,81 +137,57 @@
"type": "github"
}
},
- "flaky_2": {
+ "flaky-haskell": {
"inputs": {
- "bash-strict-mode": [
- "bash-strict-mode"
- ],
"flake-utils": [
+ "flaky-haskell",
+ "flaky",
"flake-utils"
],
- "home-manager": "home-manager_3",
- "nixpkgs": [
- "nixpkgs"
+ "flaky": [
+ "flaky"
],
- "project-manager": "project-manager_2"
- },
- "locked": {
- "lastModified": 1703716064,
- "narHash": "sha256-orCYjkCO4dlP7GTSHne6py+kqhDonwdXi9EG0phnPm8=",
- "owner": "sellout",
- "repo": "flaky",
- "rev": "b0878161d1ceb2cc70c120e8e057c51361e04f85",
- "type": "github"
- },
- "original": {
- "owner": "sellout",
- "repo": "flaky",
- "type": "github"
- }
- },
- "home-manager": {
- "inputs": {
"nixpkgs": [
- "concat",
- "bash-strict-mode",
+ "flaky-haskell",
"flaky",
"nixpkgs"
+ ],
+ "systems": [
+ "flaky-haskell",
+ "flaky",
+ "systems"
]
},
"locked": {
- "lastModified": 1700814205,
- "narHash": "sha256-lWqDPKHRbQfi+zNIivf031BUeyciVOtwCwTjyrhDB5g=",
- "owner": "nix-community",
- "repo": "home-manager",
- "rev": "aeb2232d7a32530d3448318790534d196bf9427a",
+ "lastModified": 1764172322,
+ "narHash": "sha256-4MiBcFkgwxEtLQ7d2UPHBhTM+aJ54umsaxYb4/PfMFg=",
+ "owner": "sellout",
+ "repo": "flaky-haskell",
+ "rev": "1b561109518c70a8ac4fb32543c57d17b1c93b7b",
"type": "github"
},
"original": {
- "owner": "nix-community",
- "ref": "release-23.11",
- "repo": "home-manager",
+ "owner": "sellout",
+ "repo": "flaky-haskell",
"type": "github"
}
},
- "home-manager_2": {
- "inputs": {
- "nixpkgs": [
- "concat",
- "nixpkgs"
- ]
- },
+ "garnix-systems": {
"locked": {
- "lastModified": 1700814205,
- "narHash": "sha256-lWqDPKHRbQfi+zNIivf031BUeyciVOtwCwTjyrhDB5g=",
- "owner": "nix-community",
- "repo": "home-manager",
- "rev": "aeb2232d7a32530d3448318790534d196bf9427a",
+ "lastModified": 1723225755,
+ "narHash": "sha256-y17fVgb4LJheN4VDsHCmZRHrOJwKj8oUPvXk2FqUOnI=",
+ "owner": "garnix-io",
+ "repo": "nix-systems",
+ "rev": "c2466c5c1d3591933b4389868902e2f47a47fadb",
"type": "github"
},
"original": {
- "owner": "nix-community",
- "ref": "release-23.11",
- "repo": "home-manager",
+ "owner": "garnix-io",
+ "repo": "nix-systems",
"type": "github"
}
},
- "home-manager_3": {
+ "home-manager": {
"inputs": {
"nixpkgs": [
"flaky",
@@ -337,130 +195,32 @@
]
},
"locked": {
- "lastModified": 1702195709,
- "narHash": "sha256-+zRjWkm5rKqQ57PuLZ3JF3xi3vPMiOJzItb1m/43Cq4=",
+ "lastModified": 1758463745,
+ "narHash": "sha256-uhzsV0Q0I9j2y/rfweWeGif5AWe0MGrgZ/3TjpDYdGA=",
"owner": "nix-community",
"repo": "home-manager",
- "rev": "6761b8188b860f374b457eddfdb05c82eef9752f",
+ "rev": "3b955f5f0a942f9f60cdc9cacb7844335d0f21c3",
"type": "github"
},
"original": {
"owner": "nix-community",
- "ref": "release-23.11",
+ "ref": "release-25.05",
"repo": "home-manager",
"type": "github"
}
},
- "lowdown-src": {
- "flake": false,
- "locked": {
- "lastModified": 1633514407,
- "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=",
- "owner": "kristapsdz",
- "repo": "lowdown",
- "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8",
- "type": "github"
- },
- "original": {
- "owner": "kristapsdz",
- "repo": "lowdown",
- "type": "github"
- }
- },
- "lowdown-src_2": {
- "flake": false,
- "locked": {
- "lastModified": 1633514407,
- "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=",
- "owner": "kristapsdz",
- "repo": "lowdown",
- "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8",
- "type": "github"
- },
- "original": {
- "owner": "kristapsdz",
- "repo": "lowdown",
- "type": "github"
- }
- },
- "nix-schema": {
- "inputs": {
- "flake-compat": "flake-compat",
- "flake-schemas": [
- "concat",
- "bash-strict-mode",
- "flaky",
- "project-manager",
- "flake-schemas"
- ],
- "lowdown-src": "lowdown-src",
- "nixpkgs": [
- "concat",
- "bash-strict-mode",
- "flaky",
- "project-manager",
- "nixpkgs-23_11"
- ],
- "nixpkgs-regression": "nixpkgs-regression"
- },
- "locked": {
- "lastModified": 1697822067,
- "narHash": "sha256-7HCcrF6GqIAreKvzt74do1/Urvp+b901Hckf5+WgR9M=",
- "owner": "DeterminateSystems",
- "repo": "nix",
- "rev": "84867fa212fe08feeb27b668c4c78bc9eaf74e17",
- "type": "github"
- },
- "original": {
- "owner": "DeterminateSystems",
- "ref": "flake-schemas",
- "repo": "nix",
- "type": "github"
- }
- },
- "nix-schema_2": {
- "inputs": {
- "flake-compat": "flake-compat_2",
- "flake-schemas": [
- "flaky",
- "project-manager",
- "flake-schemas"
- ],
- "lowdown-src": "lowdown-src_2",
- "nixpkgs": [
- "flaky",
- "project-manager",
- "nixpkgs-23_11"
- ],
- "nixpkgs-regression": "nixpkgs-regression_2"
- },
- "locked": {
- "lastModified": 1697822067,
- "narHash": "sha256-7HCcrF6GqIAreKvzt74do1/Urvp+b901Hckf5+WgR9M=",
- "owner": "DeterminateSystems",
- "repo": "nix",
- "rev": "84867fa212fe08feeb27b668c4c78bc9eaf74e17",
- "type": "github"
- },
- "original": {
- "owner": "DeterminateSystems",
- "ref": "flake-schemas",
- "repo": "nix",
- "type": "github"
- }
- },
"nixpkgs": {
"locked": {
- "lastModified": 1703714170,
- "narHash": "sha256-ba3hMo8plt3VPswLKQ9nRZdGCwpNBBcXYUd+gyB4aJk=",
+ "lastModified": 1763927997,
+ "narHash": "sha256-exWM223/zmAJ94mHdIcf7KVXydlz5w4xgBLwTLPEzSI=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "6db1324e4c9f702631a0dfe11b10189485af9fc0",
+ "rev": "3fd758b24d9f5079e5e46a44d26f00a27950f2d6",
"type": "github"
},
"original": {
"owner": "NixOS",
- "ref": "release-23.11",
+ "ref": "release-25.05",
"repo": "nixpkgs",
"type": "github"
}
@@ -481,45 +241,13 @@
"type": "github"
}
},
- "nixpkgs-22_11_2": {
- "locked": {
- "lastModified": 1688392541,
- "narHash": "sha256-lHrKvEkCPTUO+7tPfjIcb7Trk6k31rz18vkyqmkeJfY=",
- "owner": "NixOS",
- "repo": "nixpkgs",
- "rev": "ea4c80b39be4c09702b0cb3b42eab59e2ba4f24b",
- "type": "github"
- },
- "original": {
- "owner": "NixOS",
- "ref": "release-22.11",
- "repo": "nixpkgs",
- "type": "github"
- }
- },
"nixpkgs-23_05": {
"locked": {
- "lastModified": 1701540982,
- "narHash": "sha256-5ajSy6ODgGmAbmymRdHnjfVnuVrACjI8wXoGVvrtvww=",
+ "lastModified": 1705957679,
+ "narHash": "sha256-Q8LJaVZGJ9wo33wBafvZSzapYsjOaNjP/pOnSiKVGHY=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "6386d8aafc28b3a7ed03880a57bdc6eb4465491d",
- "type": "github"
- },
- "original": {
- "owner": "NixOS",
- "ref": "release-23.05",
- "repo": "nixpkgs",
- "type": "github"
- }
- },
- "nixpkgs-23_05_2": {
- "locked": {
- "lastModified": 1701540982,
- "narHash": "sha256-5ajSy6ODgGmAbmymRdHnjfVnuVrACjI8wXoGVvrtvww=",
- "owner": "NixOS",
- "repo": "nixpkgs",
- "rev": "6386d8aafc28b3a7ed03880a57bdc6eb4465491d",
+ "rev": "9a333eaa80901efe01df07eade2c16d183761fa3",
"type": "github"
},
"original": {
@@ -531,11 +259,11 @@
},
"nixpkgs-23_11": {
"locked": {
- "lastModified": 1701560443,
- "narHash": "sha256-DKzvb83fVFwoEvy+rzPX1vDYpDQM8BA5qBNtvlLVdGk=",
+ "lastModified": 1720535198,
+ "narHash": "sha256-zwVvxrdIzralnSbcpghA92tWu2DV2lwv89xZc8MTrbg=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "9b1832351c5cce688162ca401a92e72fd50514e4",
+ "rev": "205fd4226592cc83fd4c0885a3e4c9c400efabb5",
"type": "github"
},
"original": {
@@ -545,77 +273,45 @@
"type": "github"
}
},
- "nixpkgs-23_11_2": {
+ "nixpkgs-24_05": {
"locked": {
- "lastModified": 1701560443,
- "narHash": "sha256-DKzvb83fVFwoEvy+rzPX1vDYpDQM8BA5qBNtvlLVdGk=",
+ "lastModified": 1735651292,
+ "narHash": "sha256-YLbzcBtYo1/FEzFsB3AnM16qFc6fWPMIoOuSoDwvg9g=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "9b1832351c5cce688162ca401a92e72fd50514e4",
+ "rev": "0da3c44a9460a26d2025ec3ed2ec60a895eb1114",
"type": "github"
},
"original": {
"owner": "NixOS",
- "ref": "release-23.11",
+ "ref": "release-24.05",
"repo": "nixpkgs",
"type": "github"
}
},
- "nixpkgs-regression": {
+ "nixpkgs-24_11": {
"locked": {
- "lastModified": 1643052045,
- "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=",
+ "lastModified": 1751290243,
+ "narHash": "sha256-kNf+obkpJZWar7HZymXZbW+Rlk3HTEIMlpc6FCNz0Ds=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
+ "rev": "5ab036a8d97cb9476fbe81b09076e6e91d15e1b6",
"type": "github"
},
"original": {
"owner": "NixOS",
+ "ref": "release-24.11",
"repo": "nixpkgs",
- "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
- "type": "github"
- }
- },
- "nixpkgs-regression_2": {
- "locked": {
- "lastModified": 1643052045,
- "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=",
- "owner": "NixOS",
- "repo": "nixpkgs",
- "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
- "type": "github"
- },
- "original": {
- "owner": "NixOS",
- "repo": "nixpkgs",
- "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
"type": "github"
}
},
"nixpkgs-unstable": {
"locked": {
- "lastModified": 1701336116,
- "narHash": "sha256-kEmpezCR/FpITc6yMbAh4WrOCiT2zg5pSjnKrq51h5Y=",
- "owner": "NixOS",
- "repo": "nixpkgs",
- "rev": "f5c27c6136db4d76c30e533c20517df6864c46ee",
- "type": "github"
- },
- "original": {
- "owner": "NixOS",
- "ref": "nixpkgs-unstable",
- "repo": "nixpkgs",
- "type": "github"
- }
- },
- "nixpkgs-unstable_2": {
- "locked": {
- "lastModified": 1701336116,
- "narHash": "sha256-kEmpezCR/FpITc6yMbAh4WrOCiT2zg5pSjnKrq51h5Y=",
+ "lastModified": 1763806073,
+ "narHash": "sha256-FHsEKDvfWpzdADWj99z7vBk4D716Ujdyveo5+A048aI=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "f5c27c6136db4d76c30e533c20517df6864c46ee",
+ "rev": "878e468e02bfabeda08c79250f7ad583037f2227",
"type": "github"
},
"original": {
@@ -627,37 +323,42 @@
},
"project-manager": {
"inputs": {
- "bash-strict-mode": [
- "concat",
- "bash-strict-mode",
- "flaky",
- "bash-strict-mode"
- ],
"flake-schemas": "flake-schemas",
"flake-utils": [
- "concat",
- "bash-strict-mode",
+ "flaky",
+ "project-manager",
"flaky",
"flake-utils"
],
"flaky": [
- "concat",
- "bash-strict-mode",
"flaky"
],
- "nix-schema": "nix-schema",
+ "nixpkgs": [
+ "flaky",
+ "project-manager",
+ "flaky",
+ "nixpkgs"
+ ],
"nixpkgs-22_11": "nixpkgs-22_11",
"nixpkgs-23_05": "nixpkgs-23_05",
"nixpkgs-23_11": "nixpkgs-23_11",
+ "nixpkgs-24_05": "nixpkgs-24_05",
+ "nixpkgs-24_11": "nixpkgs-24_11",
"nixpkgs-unstable": "nixpkgs-unstable",
+ "systems": [
+ "flaky",
+ "project-manager",
+ "flaky",
+ "systems"
+ ],
"treefmt-nix": "treefmt-nix"
},
"locked": {
- "lastModified": 1701854477,
- "narHash": "sha256-O+Psfu6mj9yzJzkjz3mbqtusmtk07MkHy99lebsOxG0=",
+ "lastModified": 1764139823,
+ "narHash": "sha256-AhhWQUJkvkb4JYGykdjjCJF14iOa6ehCnfgbI19CMRY=",
"owner": "sellout",
"repo": "project-manager",
- "rev": "d146c153ad35040bcf666798a4d18ee045ae9daf",
+ "rev": "a3db95793966fdeed78f45804a6ece85f8fe94e5",
"type": "github"
},
"original": {
@@ -666,49 +367,20 @@
"type": "github"
}
},
- "project-manager_2": {
+ "root": {
"inputs": {
- "bash-strict-mode": [
- "flaky",
- "bash-strict-mode"
- ],
- "flake-schemas": "flake-schemas_2",
+ "dhall-bhat": "dhall-bhat",
"flake-utils": [
"flaky",
"flake-utils"
],
- "flaky": [
- "flaky"
+ "flaky": "flaky",
+ "flaky-haskell": "flaky-haskell",
+ "nixpkgs": [
+ "flaky",
+ "nixpkgs"
],
- "nix-schema": "nix-schema_2",
- "nixpkgs-22_11": "nixpkgs-22_11_2",
- "nixpkgs-23_05": "nixpkgs-23_05_2",
- "nixpkgs-23_11": "nixpkgs-23_11_2",
- "nixpkgs-unstable": "nixpkgs-unstable_2",
- "treefmt-nix": "treefmt-nix_2"
- },
- "locked": {
- "lastModified": 1701854477,
- "narHash": "sha256-O+Psfu6mj9yzJzkjz3mbqtusmtk07MkHy99lebsOxG0=",
- "owner": "sellout",
- "repo": "project-manager",
- "rev": "d146c153ad35040bcf666798a4d18ee045ae9daf",
- "type": "github"
- },
- "original": {
- "owner": "sellout",
- "repo": "project-manager",
- "type": "github"
- }
- },
- "root": {
- "inputs": {
- "bash-strict-mode": "bash-strict-mode",
- "concat": "concat",
- "dhall-bhat": "dhall-bhat",
- "flake-utils": "flake-utils_3",
- "flaky": "flaky_2",
- "nixpkgs": "nixpkgs"
+ "systems": "systems"
}
},
"shellcheck-nix-attributes": {
@@ -727,22 +399,6 @@
"type": "github"
}
},
- "shellcheck-nix-attributes_2": {
- "flake": false,
- "locked": {
- "lastModified": 1586929030,
- "narHash": "sha256-a0WyWaz+nMYFWI43Ip9EUnPuBW0O4EIiTzYZKGqNjss=",
- "owner": "Fuuzetsu",
- "repo": "shellcheck-nix-attributes",
- "rev": "51b49d5fe65ece69eb5e2003396bf096083ec281",
- "type": "github"
- },
- "original": {
- "owner": "Fuuzetsu",
- "repo": "shellcheck-nix-attributes",
- "type": "github"
- }
- },
"systems": {
"locked": {
"lastModified": 1681028828,
@@ -758,74 +414,20 @@
"type": "github"
}
},
- "systems_2": {
- "locked": {
- "lastModified": 1681028828,
- "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
- "owner": "nix-systems",
- "repo": "default",
- "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
- "type": "github"
- },
- "original": {
- "owner": "nix-systems",
- "repo": "default",
- "type": "github"
- }
- },
- "systems_3": {
- "locked": {
- "lastModified": 1681028828,
- "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
- "owner": "nix-systems",
- "repo": "default",
- "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
- "type": "github"
- },
- "original": {
- "owner": "nix-systems",
- "repo": "default",
- "type": "github"
- }
- },
"treefmt-nix": {
"inputs": {
"nixpkgs": [
- "concat",
- "bash-strict-mode",
"flaky",
"project-manager",
- "nixpkgs-23_11"
- ]
- },
- "locked": {
- "lastModified": 1699786194,
- "narHash": "sha256-3h3EH1FXQkIeAuzaWB+nK0XK54uSD46pp+dMD3gAcB4=",
- "owner": "numtide",
- "repo": "treefmt-nix",
- "rev": "e82f32aa7f06bbbd56d7b12186d555223dc399d1",
- "type": "github"
- },
- "original": {
- "owner": "numtide",
- "repo": "treefmt-nix",
- "type": "github"
- }
- },
- "treefmt-nix_2": {
- "inputs": {
- "nixpkgs": [
- "flaky",
- "project-manager",
- "nixpkgs-23_11"
+ "nixpkgs"
]
},
"locked": {
- "lastModified": 1699786194,
- "narHash": "sha256-3h3EH1FXQkIeAuzaWB+nK0XK54uSD46pp+dMD3gAcB4=",
+ "lastModified": 1762938485,
+ "narHash": "sha256-AlEObg0syDl+Spi4LsZIBrjw+snSVU4T8MOeuZJUJjM=",
"owner": "numtide",
"repo": "treefmt-nix",
- "rev": "e82f32aa7f06bbbd56d7b12186d555223dc399d1",
+ "rev": "5b4ee75aeefd1e2d5a1cc43cf6ba65eba75e83e4",
"type": "github"
},
"original": {
diff --git a/flake.nix b/flake.nix
index 53d97e3..b58299c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,29 +2,36 @@
description = "A total recursion scheme library for Dhall";
nixConfig = {
+ ## NB: This is a consequence both of the prevailing Haskell infrastructure
+ ## and of using `self.pkgsLib.runEmptyCommand`, which allows us to
+ ## sandbox derivations that otherwise can’t be. Even once we migrate to
+ ## non-IFD Haskell infra, this will probably still need to be enabled
+ ## for the other reason.
+ allow-import-from-derivation = true;
## https://github.com/NixOS/rfcs/blob/master/rfcs/0045-deprecate-url-syntax.md
extra-experimental-features = ["no-url-literals"];
extra-substituters = [
"https://cache.dhall-lang.org"
"https://cache.garnix.io"
"https://dhall.cachix.org"
+ "https://sellout.cachix.org"
];
extra-trusted-public-keys = [
"cache.dhall-lang.org:I9/H18WHd60olG5GsIjolp7CtepSgJmM2CsO813VTmM="
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
"dhall.cachix.org-1:8laGciue2JBwD49ICFtg+cIF8ddDaW7OFBjDb/dHEAo="
+ "sellout.cachix.org-1:v37cTpWBEycnYxSPAgSQ57Wiqd3wjljni2aC0Xry1DE="
];
## Isolate the build.
- registries = false;
sandbox = "relaxed";
+ use-registries = false;
};
### This is a complicated flake. Here’s the rundown:
###
### overlays.default – includes all of the packages from cabal.project
### packages = {
- ### default = points to `packages.dada`
- ### dada = the Dhall project
+ ### default = points to `packages.${defaultGhcVersion}`
### - = an individual package compiled for one
### GHC version
### -all = all of the packages in cabal.project compiled for one
@@ -35,22 +42,22 @@
### = a shell providing all of the dependencies for all
### packages in cabal.project compiled for one GHC version
### };
+ ### checks.format = verify that code matches Ormolu expectations
outputs = {
- bash-strict-mode,
- concat,
dhall-bhat,
flake-utils,
flaky,
+ flaky-haskell,
nixpkgs,
self,
+ systems,
}: let
pname = "dada";
- ## TODO: dhall-bhat doesn’t yet support i686-linux.
- supportedSystems = nixpkgs.lib.remove "i686-linux" flaky.lib.defaultSystems;
+ supportedSystems = import systems;
cabalPackages = pkgs: hpkgs:
- concat.lib.cabalProject2nix
+ flaky-haskell.lib.cabalProject2nix
./cabal.project
pkgs
hpkgs
@@ -72,84 +79,74 @@
;
};
+ # see these issues and discussions:
+ # - NixOS/nixpkgs#16394
+ # - NixOS/nixpkgs#25887
+ # - NixOS/nixpkgs#26561
+ # - https://discourse.nixos.org/t/nix-haskell-development-2020/6170
overlays = {
- default =
- nixpkgs.lib.composeExtensions
- (final: prev: {
- dhallPackages = prev.dhallPackages.override (old: {
- overrides =
- final.lib.composeExtensions
- (old.overrides or (_: _: {}))
- (self.overlays.dhall final prev);
- });
- })
- self.overlays.cabalPackages;
-
- # see these issues and discussions:
- # - NixOS/nixpkgs#16394
- # - NixOS/nixpkgs#25887
- # - NixOS/nixpkgs#26561
- # - https://discourse.nixos.org/t/nix-haskell-development-2020/6170
- cabalPackages =
- nixpkgs.lib.composeExtensions
- self.overlays.haskellDependencies
- (concat.lib.overlayHaskellPackages
- (self.lib.supportedGhcVersions "")
- self.overlays.haskell);
-
- haskellDependencies = final: prev: {
- haskell =
- prev.haskell
- // {
- packages =
- prev.haskell.packages
- // (
- if prev.system == "aarch64-linux"
- then {
- ghc942 = prev.haskell.packages.ghc942.extend (hfinal: hprev: {
- ## A couple test cases fail on this system/GHC combo.
- foundation = prev.haskell.lib.dontCheck hprev.foundation;
- });
- ghc962 = prev.haskell.packages.ghc962.extend (hfinal: hprev: {
- ## The default tls version (1.6.0) doesn’t build on this
- ## system/GHC combo.
- tls = hprev.tls_1_9_0;
- });
- }
- else {}
- );
- };
- };
+ default = final:
+ nixpkgs.lib.composeManyExtensions [
+ flaky.overlays.default
+ (final: prev: {
+ dhallPackages = prev.dhallPackages.override (old: {
+ overrides =
+ final.lib.composeExtensions
+ (old.overrides or (_: _: {}))
+ (self.overlays.dhall final prev);
+ });
+ })
+ (flaky-haskell.lib.overlayHaskellPackages
+ (map self.lib.nixifyGhcVersion
+ (self.lib.supportedGhcVersions final.system))
+ (final: prev:
+ nixpkgs.lib.composeManyExtensions [
+ ## TODO: I think this overlay is only needed by formatters,
+ ## devShells, etc., so it shouldn’t be included in the
+ ## standard overlay.
+ (flaky.overlays.haskellDependencies final prev)
+ (self.overlays.haskell final prev)
+ (self.overlays.haskellDependencies final prev)
+ ]))
+ ]
+ final;
dhall = final: prev: dfinal: dprev: {
${pname} = self.packages.${final.system}.${pname};
};
- haskell = concat.lib.haskellOverlay cabalPackages;
+ haskell = flaky-haskell.lib.haskellOverlay cabalPackages;
+
+ ## NB: Dependencies that are overridden because they are broken in
+ ## Nixpkgs should be pushed upstream to Flaky. This is for
+ ## dependencies that we override for reasons local to the project.
+ haskellDependencies = final: prev: hfinal: hprev: {
+ network = final.haskell.lib.dontCheck hprev.network;
+ repline = final.haskell.lib.doJailbreak hprev.repline;
+ warp = final.haskell.lib.dontCheck hprev.warp;
+ };
};
homeConfigurations =
builtins.listToAttrs
(builtins.map
- (flaky.lib.homeConfigurations.example
- pname
- self
- [
- ({pkgs, ...}: {
- home.packages = [
- ## TODO: Is there something more like `dhallWithPackages`?
- pkgs.dhallPackages.${pname}
- (pkgs.haskellPackages.ghcWithPackages (hpkgs: [
- hpkgs.${pname}
- ]))
- ];
- })
- ])
+ (flaky.lib.homeConfigurations.example self [
+ ({pkgs, ...}: {
+ home.packages = [
+ ## TODO: Is there something more like `dhallWithPackages`?
+ pkgs.dhallPackages.${pname}
+ (pkgs.haskellPackages.ghcWithPackages (hpkgs: [hpkgs.${pname}]))
+ ];
+ })
+ ])
supportedSystems);
lib = {
+ nixifyGhcVersion = version:
+ "ghc" + nixpkgs.lib.replaceStrings ["."] [""] version;
+
## TODO: Extract this automatically from `pkgs.haskellPackages`.
- defaultCompiler = "ghc948";
+ defaultGhcVersion = "9.8.4";
## Test the oldest revision possible for each minor release. If it’s not
## available in nixpkgs, test the oldest available, then try an older
@@ -157,31 +154,22 @@
## explicit conditionalization. And check whatever version `pkgs.ghc`
## maps to in the nixpkgs we depend on.
testedGhcVersions = system: [
- self.lib.defaultCompiler
- "ghc8107"
- "ghc902"
- "ghc924"
- "ghc942"
- "ghc962"
- # "ghc981" # included dhall dependency versions fail
+ self.lib.defaultGhcVersion
+ "9.6.3"
+ "9.8.1"
+ "9.10.1"
+ # "9.12.1" # Yaya doesn’t yet support GHC 9.12
# "ghcHEAD" # doctest doesn’t work on current HEAD
];
- ## dependency compiler-rt-libc-7.1.0 is broken in on aarch64-darwin.
- # TODO: included dependency versions fail
- # ++ nixpkgs.lib.optional (system != "aarch64-darwin") "ghc884";
## The versions that are older than those supported by Nix that we
## prefer to test against.
nonNixTestedGhcVersions = [
- ## Dhall 1.34+ doesn’t support GHC before 8.4.
- # "8.4.1" # dependencies of dhall fail to build
- # "8.6.1" # dependencies of dhall fail to build
- "8.8.1"
- "8.10.1"
- "9.0.1"
- "9.2.1"
- "9.4.1"
"9.6.1"
+ ## since `cabal-plan-bounds` doesn’t work under Nix
+ "9.8.1"
+ "9.10.1"
+ # "9.12.1" # Yaya doesn’t yet support GHC 9.12
];
## However, provide packages in the default overlay for _every_
@@ -189,32 +177,22 @@
supportedGhcVersions = system:
self.lib.testedGhcVersions system
++ [
- "ghc925"
- "ghc926"
- "ghc927"
- "ghc928"
- "ghc943"
- "ghc944"
- "ghc945"
- "ghc946"
- "ghc947"
- "ghc948"
- "ghc963"
+ "9.6.4"
+ "9.6.5"
+ "9.8.2"
+ "9.8.3"
+ "9.10.2"
+ "9.12.2"
];
};
}
- // flake-utils.lib.eachSystem supportedSystems
- (system: let
- pkgs = import nixpkgs {
- inherit system;
- overlays = [
- dhall-bhat.overlays.default
- ## NB: This uses `self.overlays.cabalPackages` because packages need
- ## to be able to find other packages in this flake as
- ## dependencies.
- self.overlays.cabalPackages
- ];
- };
+ // flake-utils.lib.eachSystem supportedSystems (system: let
+ pkgs = nixpkgs.legacyPackages.${system}.appendOverlays [
+ dhall-bhat.overlays.default
+ ## NB: This uses `self.overlays.default` because packages need to be
+ ## able to find other packages in this flake as dependencies.
+ self.overlays.default
+ ];
src = nixpkgs.lib.cleanSource ./.;
in {
@@ -222,97 +200,65 @@
{
default = self.packages.${system}.${pname};
- "${pname}" =
- bash-strict-mode.lib.checkedDrv
- pkgs
- (pkgs.dhallPackages.buildDhallDirectoryPackage {
- src = "${src}/dhall";
- name = pname;
- dependencies = [
- pkgs.dhallPackages.Prelude
- pkgs.dhallPackages.dhall-bhat
- ];
- document = true;
- });
+ "${pname}" = pkgs.checkedDrv (pkgs.dhallPackages.buildDhallDirectoryPackage {
+ src = "${src}/dhall";
+ name = pname;
+ dependencies = [
+ pkgs.dhallPackages.Prelude
+ pkgs.dhallPackages.dhall-bhat
+ ];
+ document = true;
+ });
}
- // concat.lib.mkPackages
+ // flaky-haskell.lib.mkPackages
pkgs
- (self.lib.testedGhcVersions system)
+ (map self.lib.nixifyGhcVersion (self.lib.supportedGhcVersions system))
cabalPackages;
- projectConfigurations =
- flaky.lib.projectConfigurations.default {inherit pkgs self;};
-
devShells =
- {default = self.devShells.${system}.${self.lib.defaultCompiler};}
- // concat.lib.mkDevShells
+ self.projectConfigurations.${system}.devShells
+ // {default = flaky.lib.devShells.default system self [] "";}
+ // flaky-haskell.lib.mkDevShells
pkgs
- (
- if system == "aarch64-darwin"
- then
- nixpkgs.lib.subtractLists
- ## NB: These devShells don’t work when sandboxed. See
- ## NixOS/nix#4119.
- ## TODO: Just disable the sandbox, don’t omit these devShells.
- ["ghc902" "ghc924" "ghc942" "ghc962"]
- (self.lib.testedGhcVersions system)
- else self.lib.testedGhcVersions system
- )
+ (map self.lib.nixifyGhcVersion (self.lib.supportedGhcVersions system))
cabalPackages
(hpkgs:
[self.projectConfigurations.${system}.packages.path]
- ## NB: Haskell Language Server no longer supports GHC <9.
- ## TODO: HLS also apparently broken on 9.8.1
+ ## NB: Haskell Language Server no longer supports GHC <9.4.
++ nixpkgs.lib.optional
- (nixpkgs.lib.versionAtLeast hpkgs.ghc.version "9"
- && builtins.compareVersions hpkgs.ghc.version "9.8.1" != 0)
+ (nixpkgs.lib.versionAtLeast hpkgs.ghc.version "9.4")
hpkgs.haskell-language-server);
+ projectConfigurations = flaky.lib.projectConfigurations.dhall {
+ inherit pkgs self;
+ modules = [flaky.projectModules.haskell];
+ };
+
checks = self.projectConfigurations.${system}.checks;
formatter = self.projectConfigurations.${system}.formatter;
});
inputs = {
- bash-strict-mode = {
- inputs = {
- flake-utils.follows = "flake-utils";
- flaky.follows = "flaky";
- nixpkgs.follows = "nixpkgs";
- };
- url = "github:sellout/bash-strict-mode";
+ ## Flaky should generally be the source of truth for its inputs.
+ flaky = {
+ inputs.systems.follows = "systems";
+ url = "github:sellout/flaky";
};
- # Currently contains our Haskell/Nix lib that should be extracted into its
- # own flake.
- concat = {
- inputs = {
- flake-utils.follows = "flake-utils";
- nixpkgs.follows = "nixpkgs";
- };
- url = "github:compiling-to-categories/concat";
- };
+ flake-utils.follows = "flaky/flake-utils";
+ nixpkgs.follows = "flaky/nixpkgs";
dhall-bhat = {
- inputs = {
- ## TODO: The version currently used by dhall-bhat is quite old..
- bash-strict-mode.follows = "flaky/bash-strict-mode";
- flaky.follows = "flaky";
- nixpkgs.follows = "nixpkgs";
- };
+ inputs.flaky.follows = "flaky";
url = "github:sellout/dhall-bhat";
};
- flake-utils.url = "github:numtide/flake-utils";
-
- flaky = {
- inputs = {
- bash-strict-mode.follows = "bash-strict-mode";
- flake-utils.follows = "flake-utils";
- nixpkgs.follows = "nixpkgs";
- };
- url = "github:sellout/flaky";
+ flaky-haskell = {
+ inputs.flaky.follows = "flaky";
+ url = "github:sellout/flaky-haskell";
};
- nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
+ ## This doesn’t follow Flaky because Dada doesn’t support i686.
+ systems.url = "github:nix-systems/default";
};
}
diff --git a/garnix.yaml b/garnix.yaml
index e9b4b93..7576df8 100644
--- a/garnix.yaml
+++ b/garnix.yaml
@@ -1,2 +1,2 @@
# This file was generated by Project Manager.
-{"builds":{"exclude":["*.x86_64-darwin","*.x86_64-darwin.*","homeConfigurations.x86_64-darwin-dada-example","checks.*.project-manager-files","checks.*.vale","devShells.*.lax-checks"],"include":["*.*","*.*.*"]}}
\ No newline at end of file
+{"builds":[{"exclude":["devShells.aarch64-darwin.lax-checks","devShells.aarch64-linux.lax-checks","devShells.x86_64-linux.lax-checks","*.x86_64-darwin","*.x86_64-darwin.*","*.x86_64-darwin-example","*.x86_64-linux.*"],"include":["homeConfigurations.*","nixosConfigurations.*","checks.aarch64-darwin.*","devShells.aarch64-darwin.default","packages.aarch64-darwin.default","devShells.aarch64-darwin.ghc984","packages.aarch64-darwin.ghc984_all","devShells.aarch64-darwin.ghc963","packages.aarch64-darwin.ghc963_all","devShells.aarch64-darwin.ghc981","packages.aarch64-darwin.ghc981_all","devShells.aarch64-darwin.ghc9101","packages.aarch64-darwin.ghc9101_all","checks.aarch64-linux.*","devShells.aarch64-linux.default","packages.aarch64-linux.default","devShells.aarch64-linux.ghc984","packages.aarch64-linux.ghc984_all","devShells.aarch64-linux.ghc963","packages.aarch64-linux.ghc963_all","devShells.aarch64-linux.ghc981","packages.aarch64-linux.ghc981_all","devShells.aarch64-linux.ghc9101","packages.aarch64-linux.ghc9101_all","checks.x86_64-linux.*","devShells.x86_64-linux.default","packages.x86_64-linux.default","devShells.x86_64-linux.ghc984","packages.x86_64-linux.ghc984_all","devShells.x86_64-linux.ghc963","packages.x86_64-linux.ghc963_all","devShells.x86_64-linux.ghc981","packages.x86_64-linux.ghc981_all","devShells.x86_64-linux.ghc9101","packages.x86_64-linux.ghc9101_all"]}],"servers":[]}
diff --git a/haskell/CHANGELOG.md b/haskell/CHANGELOG.md
new file mode 100644
index 0000000..fd50111
--- /dev/null
+++ b/haskell/CHANGELOG.md
@@ -0,0 +1,14 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog 1.1](https://keepachangelog.com/en/1.1.0/),
+and this project adheres to the [Haskell Package Versioning Policy](https://pvp.haskell.org/).
+
+## [0.0.1.0] -
+
+### Added
+
+- initial release of this package
+
+[0.0.1.0]: https://github.com/sellout/dada/releases/tag/v0.0.1.0
diff --git a/haskell/LICENSE b/haskell/LICENSE
index be3f7b2..a3f833f 100644
--- a/haskell/LICENSE
+++ b/haskell/LICENSE
@@ -1,661 +1,8 @@
- GNU AFFERO GENERAL PUBLIC LICENSE
- Version 3, 19 November 2007
+LicenseListVersion: 3.27.0
+SPDX-License-Identifier: AGPL-3.0-only WITH Universal-FOSS-exception-1.0 OR LicenseRef-commercial
- Copyright (C) 2007 Free Software Foundation, Inc.
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
+The individual licenses are included in files named “LICENSE.” with a suffix
+that matches each license’s identifier.
- Preamble
-
- The GNU Affero General Public License is a free, copyleft license for
-software and other kinds of works, specifically designed to ensure
-cooperation with the community in the case of network server software.
-
- The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works. By contrast,
-our General Public Licenses are intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
- Developers that use our General Public Licenses protect your rights
-with two steps: (1) assert copyright on the software, and (2) offer
-you this License which gives you legal permission to copy, distribute
-and/or modify the software.
-
- A secondary benefit of defending all users' freedom is that
-improvements made in alternate versions of the program, if they
-receive widespread use, become available for other developers to
-incorporate. Many developers of free software are heartened and
-encouraged by the resulting cooperation. However, in the case of
-software used on network servers, this result may fail to come about.
-The GNU General Public License permits making a modified version and
-letting the public access it on a server without ever releasing its
-source code to the public.
-
- The GNU Affero General Public License is designed specifically to
-ensure that, in such cases, the modified source code becomes available
-to the community. It requires the operator of a network server to
-provide the source code of the modified version running there to the
-users of that server. Therefore, public use of a modified version, on
-a publicly accessible server, gives the public access to the source
-code of the modified version.
-
- An older license, called the Affero General Public License and
-published by Affero, was designed to accomplish similar goals. This is
-a different license, not a version of the Affero GPL, but Affero has
-released a new version of the Affero GPL which permits relicensing under
-this license.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- TERMS AND CONDITIONS
-
- 0. Definitions.
-
- "This License" refers to version 3 of the GNU Affero General Public License.
-
- "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
- "The Program" refers to any copyrightable work licensed under this
-License. Each licensee is addressed as "you". "Licensees" and
-"recipients" may be individuals or organizations.
-
- To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy. The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
- A "covered work" means either the unmodified Program or a work based
-on the Program.
-
- To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy. Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
- To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies. Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
- An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License. If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
- 1. Source Code.
-
- The "source code" for a work means the preferred form of the work
-for making modifications to it. "Object code" means any non-source
-form of a work.
-
- A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
- The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form. A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
- The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities. However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work. For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
- The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
- The Corresponding Source for a work in source code form is that
-same work.
-
- 2. Basic Permissions.
-
- All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met. This License explicitly affirms your unlimited
-permission to run the unmodified Program. The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work. This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
- You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force. You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright. Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
- Conveying under any other circumstances is permitted solely under
-the conditions stated below. Sublicensing is not allowed; section 10
-makes it unnecessary.
-
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
- No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
- When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
- 4. Conveying Verbatim Copies.
-
- You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
- You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
- 5. Conveying Modified Source Versions.
-
- You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
- a) The work must carry prominent notices stating that you modified
- it, and giving a relevant date.
-
- b) The work must carry prominent notices stating that it is
- released under this License and any conditions added under section
- 7. This requirement modifies the requirement in section 4 to
- "keep intact all notices".
-
- c) You must license the entire work, as a whole, under this
- License to anyone who comes into possession of a copy. This
- License will therefore apply, along with any applicable section 7
- additional terms, to the whole of the work, and all its parts,
- regardless of how they are packaged. This License gives no
- permission to license the work in any other way, but it does not
- invalidate such permission if you have separately received it.
-
- d) If the work has interactive user interfaces, each must display
- Appropriate Legal Notices; however, if the Program has interactive
- interfaces that do not display Appropriate Legal Notices, your
- work need not make them do so.
-
- A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit. Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
- 6. Conveying Non-Source Forms.
-
- You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
- a) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by the
- Corresponding Source fixed on a durable physical medium
- customarily used for software interchange.
-
- b) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by a
- written offer, valid for at least three years and valid for as
- long as you offer spare parts or customer support for that product
- model, to give anyone who possesses the object code either (1) a
- copy of the Corresponding Source for all the software in the
- product that is covered by this License, on a durable physical
- medium customarily used for software interchange, for a price no
- more than your reasonable cost of physically performing this
- conveying of source, or (2) access to copy the
- Corresponding Source from a network server at no charge.
-
- c) Convey individual copies of the object code with a copy of the
- written offer to provide the Corresponding Source. This
- alternative is allowed only occasionally and noncommercially, and
- only if you received the object code with such an offer, in accord
- with subsection 6b.
-
- d) Convey the object code by offering access from a designated
- place (gratis or for a charge), and offer equivalent access to the
- Corresponding Source in the same way through the same place at no
- further charge. You need not require recipients to copy the
- Corresponding Source along with the object code. If the place to
- copy the object code is a network server, the Corresponding Source
- may be on a different server (operated by you or a third party)
- that supports equivalent copying facilities, provided you maintain
- clear directions next to the object code saying where to find the
- Corresponding Source. Regardless of what server hosts the
- Corresponding Source, you remain obligated to ensure that it is
- available for as long as needed to satisfy these requirements.
-
- e) Convey the object code using peer-to-peer transmission, provided
- you inform other peers where the object code and Corresponding
- Source of the work are being offered to the general public at no
- charge under subsection 6d.
-
- A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
- A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling. In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage. For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product. A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
- "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source. The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
- If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information. But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
- The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed. Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
- Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
- 7. Additional Terms.
-
- "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law. If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
- When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it. (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.) You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
- Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
- a) Disclaiming warranty or limiting liability differently from the
- terms of sections 15 and 16 of this License; or
-
- b) Requiring preservation of specified reasonable legal notices or
- author attributions in that material or in the Appropriate Legal
- Notices displayed by works containing it; or
-
- c) Prohibiting misrepresentation of the origin of that material, or
- requiring that modified versions of such material be marked in
- reasonable ways as different from the original version; or
-
- d) Limiting the use for publicity purposes of names of licensors or
- authors of the material; or
-
- e) Declining to grant rights under trademark law for use of some
- trade names, trademarks, or service marks; or
-
- f) Requiring indemnification of licensors and authors of that
- material by anyone who conveys the material (or modified versions of
- it) with contractual assumptions of liability to the recipient, for
- any liability that these contractual assumptions directly impose on
- those licensors and authors.
-
- All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10. If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term. If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
- If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
- Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
- 8. Termination.
-
- You may not propagate or modify a covered work except as expressly
-provided under this License. Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
- However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
- Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
- Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License. If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
- 9. Acceptance Not Required for Having Copies.
-
- You are not required to accept this License in order to receive or
-run a copy of the Program. Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance. However,
-nothing other than this License grants you permission to propagate or
-modify any covered work. These actions infringe copyright if you do
-not accept this License. Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
- 10. Automatic Licensing of Downstream Recipients.
-
- Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License. You are not responsible
-for enforcing compliance by third parties with this License.
-
- An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations. If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
- You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License. For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
- 11. Patents.
-
- A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based. The
-work thus licensed is called the contributor's "contributor version".
-
- A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version. For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
- Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
- In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement). To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
- If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients. "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
- If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
- A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License. You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
- Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
- 12. No Surrender of Others' Freedom.
-
- If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all. For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
- 13. Remote Network Interaction; Use with the GNU General Public License.
-
- Notwithstanding any other provision of this License, if you modify the
-Program, your modified version must prominently offer all users
-interacting with it remotely through a computer network (if your version
-supports such interaction) an opportunity to receive the Corresponding
-Source of your version by providing access to the Corresponding Source
-from a network server at no charge, through some standard or customary
-means of facilitating copying of software. This Corresponding Source
-shall include the Corresponding Source for any work covered by version 3
-of the GNU General Public License that is incorporated pursuant to the
-following paragraph.
-
- Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU General Public License into a single
-combined work, and to convey the resulting work. The terms of this
-License will continue to apply to the part which is the covered work,
-but the work with which it is combined will remain governed by version
-3 of the GNU General Public License.
-
- 14. Revised Versions of this License.
-
- The Free Software Foundation may publish revised and/or new versions of
-the GNU Affero General Public License from time to time. Such new versions
-will be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Program specifies that a certain numbered version of the GNU Affero General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation. If the Program does not specify a version number of the
-GNU Affero General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
- If the Program specifies that a proxy can decide which future
-versions of the GNU Affero General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
- Later license versions may give you additional or different
-permissions. However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
- 15. Disclaimer of Warranty.
-
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
- 16. Limitation of Liability.
-
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
- 17. Interpretation of Sections 15 and 16.
-
- If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-
- Copyright (C)
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see .
-
-Also add information on how to contact you by electronic and paper mail.
-
- If your software can interact with users remotely through a computer
-network, you should also make sure that it provides a way for users to
-get its source. For example, if your program is a web application, its
-interface could display a "Source" link that leads users to an archive
-of the code. There are many ways you could offer source, and different
-solutions will be better for different programs; see section 13 for the
-specific requirements.
-
- You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU AGPL, see
-.
+Also make sure you comply with the licenses listed in the docs/license-report.md
+file included with the packages you depend on.
diff --git a/haskell/LICENSE.AGPL-3.0-only b/haskell/LICENSE.AGPL-3.0-only
new file mode 100644
index 0000000..be3f7b2
--- /dev/null
+++ b/haskell/LICENSE.AGPL-3.0-only
@@ -0,0 +1,661 @@
+ GNU AFFERO GENERAL PUBLIC LICENSE
+ Version 3, 19 November 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU Affero General Public License is a free, copyleft license for
+software and other kinds of works, specifically designed to ensure
+cooperation with the community in the case of network server software.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+our General Public Licenses are intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ Developers that use our General Public Licenses protect your rights
+with two steps: (1) assert copyright on the software, and (2) offer
+you this License which gives you legal permission to copy, distribute
+and/or modify the software.
+
+ A secondary benefit of defending all users' freedom is that
+improvements made in alternate versions of the program, if they
+receive widespread use, become available for other developers to
+incorporate. Many developers of free software are heartened and
+encouraged by the resulting cooperation. However, in the case of
+software used on network servers, this result may fail to come about.
+The GNU General Public License permits making a modified version and
+letting the public access it on a server without ever releasing its
+source code to the public.
+
+ The GNU Affero General Public License is designed specifically to
+ensure that, in such cases, the modified source code becomes available
+to the community. It requires the operator of a network server to
+provide the source code of the modified version running there to the
+users of that server. Therefore, public use of a modified version, on
+a publicly accessible server, gives the public access to the source
+code of the modified version.
+
+ An older license, called the Affero General Public License and
+published by Affero, was designed to accomplish similar goals. This is
+a different license, not a version of the Affero GPL, but Affero has
+released a new version of the Affero GPL which permits relicensing under
+this license.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU Affero General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Remote Network Interaction; Use with the GNU General Public License.
+
+ Notwithstanding any other provision of this License, if you modify the
+Program, your modified version must prominently offer all users
+interacting with it remotely through a computer network (if your version
+supports such interaction) an opportunity to receive the Corresponding
+Source of your version by providing access to the Corresponding Source
+from a network server at no charge, through some standard or customary
+means of facilitating copying of software. This Corresponding Source
+shall include the Corresponding Source for any work covered by version 3
+of the GNU General Public License that is incorporated pursuant to the
+following paragraph.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the work with which it is combined will remain governed by version
+3 of the GNU General Public License.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU Affero General Public License from time to time. Such new versions
+will be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU Affero General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU Affero General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU Affero General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If your software can interact with users remotely through a computer
+network, you should also make sure that it provides a way for users to
+get its source. For example, if your program is a web application, its
+interface could display a "Source" link that leads users to an archive
+of the code. There are many ways you could offer source, and different
+solutions will be better for different programs; see section 13 for the
+specific requirements.
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU AGPL, see
+.
diff --git a/haskell/LICENSE.Universal-FOSS-exception-1.0 b/haskell/LICENSE.Universal-FOSS-exception-1.0
new file mode 100644
index 0000000..b4187e5
--- /dev/null
+++ b/haskell/LICENSE.Universal-FOSS-exception-1.0
@@ -0,0 +1,7 @@
+In addition to the rights set forth in the other license(s) included in the distribution for this software, data, and/or documentation (collectively the "Software," and such licenses collectively with this additional permission the "Software License"), the copyright holders wish to facilitate interoperability with other software, data, and/or documentation distributed with complete corresponding source under a license that is OSI-approved and/or categorized by the FSF as free (collectively "Other FOSS"). We therefore hereby grant the following additional permission with respect to the use and distribution of the Software with Other FOSS, and the constants, function signatures, data structures and other invocation methods used to run or interact with each of them (as to each, such software's "Interfaces"):
+
+ (i) The Software's Interfaces may, to the extent permitted by the license of the Other FOSS, be copied into, used and distributed in the Other FOSS in order to enable interoperability, without requiring a change to the license of the Other FOSS other than as to any Interfaces of the Software embedded therein. The Software's Interfaces remain at all times under the Software License, including without limitation as used in the Other FOSS (which upon any such use also then contains a portion of the Software under the Software License).
+ (ii) The Other FOSS's Interfaces may, to the extent permitted by the license of the Other FOSS, be copied into, used and distributed in the Software in order to enable interoperability, without requiring that such Interfaces be licensed under the terms of the Software License or otherwise altering their original terms, if this does not require any portion of the Software other than such Interfaces to be licensed under the terms other than the Software License.
+ (iii) If only Interfaces and no other code is copied between the Software and the Other FOSS in either direction, the use and/or distribution of the Software with the Other FOSS shall not be deemed to require that the Other FOSS be licensed under the license of the Software, other than as to any Interfaces of the Software copied into the Other FOSS. This includes, by way of example and without limitation, statically or dynamically linking the Software together with Other FOSS after enabling interoperability using the Interfaces of one or both, and distributing the resulting combination under different licenses for the respective portions thereof.
+
+For avoidance of doubt, a license which is OSI-approved or categorized by the FSF as free, includes, for the purpose of this permission, such licenses with additional permissions, and any license that has previously been so-approved or categorized as free, even if now deprecated or otherwise no longer recognized as approved or free. Nothing in this additional permission grants any right to distribute any portion of the Software on terms other than those of the Software License or grants any additional permission of any kind for use or distribution of the Software in conjunction with software other than Other FOSS.
diff --git a/haskell/LICENSE.commercial b/haskell/LICENSE.commercial
new file mode 100644
index 0000000..3bc6320
--- /dev/null
+++ b/haskell/LICENSE.commercial
@@ -0,0 +1,3 @@
+This software is available for commercial licensing with flexible terms.
+
+Contact licensing@technomadic.org for more information.
diff --git a/haskell/README.md b/haskell/README.md
new file mode 100644
index 0000000..0e21c89
--- /dev/null
+++ b/haskell/README.md
@@ -0,0 +1,102 @@
+# Dada
+
+[](https://repology.org/project/haskell:dada/versions)
+[](https://repology.org/project/haskell:dada/versions)
+
+A total recursion scheme library for Dhall
+
+Recursion schemes allow you to separate recursion from your business logic – making your own operations simpler, more modular, and less error-prone. This library also provides tools for combining your operations in ways that reduce the number of passes over your data and is designed to encourage total (that is, successfully terminating) functions.
+
+## usage
+
+This is the Haskell interpreter for Dada.
+
+## versioning
+
+This project largely follows the [Haskell Package Versioning Policy](https://pvp.haskell.org/) (PVP), but is more strict in some ways.
+
+The version always has four components, `A.B.C.D`. The first three correspond to those required by PVP, while the fourth matches the “patch” component from [Semantic Versioning](https://semver.org/).
+
+Here is a breakdown of some of the constraints:
+
+### sensitivity to additions to the API
+
+PVP recommends that clients follow [these import guidelines](https://wiki.haskell.org/Import_modules_properly) in order that they may be considered insensitive to additions to the API. However, this isn’t sufficient. We expect clients to follow these additional recommendations for API insensitivity
+
+If you don’t follow these recommendations (in addition to the ones made by PVP), you should ensure your dependencies don’t allow a range of `C` values. That is, your dependencies should look like
+
+```cabal
+yaya >=1.2.3 && <1.2.4
+```
+
+rather than
+
+```cabal
+yaya >=1.2.3 && <1.3
+```
+
+#### use package-qualified imports everywhere
+
+If your imports are [package-qualified](https://downloads.haskell.org/ghc/latest/docs/users_guide/exts/package_qualified_imports.html?highlight=packageimports#extension-PackageImports), then a dependency adding new modules can’t cause a conflict with modules you already import.
+
+#### avoid orphans
+
+Because of the transitivity of instances, orphans make you sensitive to your dependencies’ instances. If you have an orphan instance, you are sensitive to the APIs of the packages that define the class and the types of the instance.
+
+One way to minimize this sensitivity is to have a separate package (or packages) dedicated to any orphans you have. Those packages can be sensitive to their dependencies’ APIs, while the primary package remains insensitive, relying on the tighter ranges of the orphan packages to constrain the solver.
+
+### transitively breaking changes (increments `A`)
+
+#### removing a type class instance
+
+Type class instances are imported transitively, and thus changing them can impact packages that only have your package as a transitive dependency.
+
+#### widening a dependency range with new major versions
+
+This is a consequence of instances being transitively imported. A new major version of a dependency can remove instances, and that can break downstream clients that unwittingly depended on those instances.
+
+A library _may_ declare that it always bumps the `A` component when it removes an instance (as this policy dictates). In that case, only `A` widenings need to induce `A` bumps. `B` widenings can be `D` bumps like other widenings, Alternatively, one may compare the APIs when widening a dependency range, and if no instances have been removed, make it a `D` bump.
+
+### breaking changes (increments `B`)
+
+#### restricting an existing dependency’s version range in any way
+
+Consumers have to contend not only with our version bounds, but also with those of other libraries. It’s possible that some dependency overlapped in a very narrow way, and even just restricting a particular patch version of a dependency could make it impossible to find a dependency solution.
+
+#### restricting the license in any way
+
+Making a license more restrictive may prevent clients from being able to continue using the package.
+
+#### adding a dependency
+
+A new dependency may make it impossible to find a solution in the face of other packages dependency ranges.
+
+### non-breaking changes (increments `C`)
+
+#### adding a module
+
+This is also what PVP recommends. However, unlike in PVP, this is because we recommend that package-qualified imports be used on all imports.
+
+### other changes (increments `D`)
+
+#### widening a dependency range for non-major versions
+
+This is fairly uncommon, in the face of `^>=`-style ranges, but it can happen in a few situations.
+
+#### deprecation
+
+**NB**: This case is _weaker_ than PVP, which indicates that packages should bump their major version when adding `deprecation` pragmas.
+
+We disagree with this because packages shouldn’t be _publishing_ with `-Werror`. The intent of deprecation is to indicate that some API _will_ change. To make that signal a major change itself defeats the purpose. You want people to start seeing that warning as soon as possible. The major change occurs when you actually remove the old API.
+
+Yes, in development, `-Werror` is often (and should be) used. However, that just helps developers be aware of deprecations more immediately. They can always add `-Wwarn=deprecation` in some scope if they need to avoid updating it for the time being.
+
+## licensing
+
+This package is licensed under [The GNU AGPL 3.0 only](./LICENSE). If you need a license for usage that isn’t covered under the AGPL, please contact [Greg Pfeil](mailto:greg@technomadic.org?subject=licensing%20dada).
+
+You should review the [license report](docs/license-report.md) for details about dependency licenses.
+
+## comparisons
+
+Other projects similar to this one, and how they differ.
diff --git a/haskell/Setup.hs b/haskell/Setup.hs
index c0bc21b..4d53144 100644
--- a/haskell/Setup.hs
+++ b/haskell/Setup.hs
@@ -1,6 +1,22 @@
-module Main where
+-- __NB__: `custom-setup` doesn’t have any way to specify extensions or options,
+-- so any we want need to be specified here.
+{-# LANGUAGE CPP #-}
+{-# LANGUAGE PackageImports #-}
+{-# LANGUAGE Unsafe #-}
+{-# LANGUAGE NoImplicitPrelude #-}
+#if MIN_VERSION_GLASGOW_HASKELL(8, 0, 0, 0)
+{-# OPTIONS_GHC -Weverything #-}
+-- Warns even when `Unsafe` is explicit, not inferred. See
+-- https://gitlab.haskell.org/ghc/ghc/-/issues/16689
+{-# OPTIONS_GHC -Wno-unsafe #-}
+#else
+{-# OPTIONS_GHC -Wall #-}
+#endif
-import Distribution.Extra.Doctest (defaultMainWithDoctests)
+module Main (main) where
+
+import safe "base" System.IO (IO)
+import "cabal-doctest" Distribution.Extra.Doctest (defaultMainWithDoctests)
main :: IO ()
main = defaultMainWithDoctests "doctests"
diff --git a/haskell/dada.cabal b/haskell/dada.cabal
index ebf5595..a251407 100644
--- a/haskell/dada.cabal
+++ b/haskell/dada.cabal
@@ -1,60 +1,229 @@
-cabal-version: 2.4
-
-name: dada
-version: 0.1.0.0
-synopsis: A total recursion scheme library for Dhall
-description: Recursion schemes allow you to separate recursion from your
- business logic – making your own operations simpler, more
- modular, and less error-prone. This library also provides
- tools for combining your operations in ways that reduce the
- number of passes over your data and is designed to
- encourage total (that is, successfully terminating)
- functions.
-homepage: https://github.com/sellout/dada#readme
-bug-reports: https://github.com/sellout/dada/issues
-author: Greg Pfeil
-maintainer: greg@technomadic.org
-copyright: 2018 Greg Pfeil
-license: AGPL-3.0-or-later
-license-file: LICENSE
-category: Recursion
-build-type: Custom
-extra-source-files: CHANGELOG.md
- , README.md
-tested-with: GHC==8.8.1,
- GHC==8.10.1, GHC==8.10.7,
- GHC==9.0.1, GHC==9.0.2,
- GHC==9.2.1, GHC==9.2.4,
- GHC==9.4.1, GHC==9.4.2, GHC==9.4.8,
- GHC==9.6.1, GHC==9.6.2
+cabal-version: 3.0
+name: dada
+version: 0.0.1.0
+synopsis: A total recursion scheme library for Dhall
+description: Recursion schemes allow you to separate recursion from your business logic – making your own operations simpler, more modular, and less error-prone. This library also provides tools for combining your operations in ways that reduce the number of passes over your data and is designed to encourage total (that is, successfully terminating) functions.
+maintainer: Greg Pfeil
+author: Greg Pfeil
+copyright: 2018 Greg Pfeil
+-- TODO: Remove the redundant `OR AGPL-3.0-only` once
+-- haskell/hackage-server#1440 is fixed.
+license: AGPL-3.0-only WITH Universal-FOSS-exception-1.0 OR AGPL-3.0-only OR LicenseRef-commercial
+license-files:
+ LICENSE
+ LICENSE.AGPL-3.0-only
+ LICENSE.Universal-FOSS-exception-1.0
+ LICENSE.commercial
+category: Recursion
+build-type: Custom
+extra-doc-files:
+ CHANGELOG.md
+ README.md
+ docs/*.md
+tested-with:
+ GHC == {
+ 7.10.3,
+ 8.0.2,
+ 8.2.2,
+ 8.4.1,
+ 8.6.1,
+ 8.8.1,
+ 8.10.1, 8.10.7,
+ 9.0.1, 9.0.2,
+ 9.2.1, 9.2.8,
+ 9.4.1, 9.4.7,
+ 9.6.1, 9.6.3,
+ 9.8.1, 9.8.4,
+ 9.10.1
+ -- 9.12.1 # Yaya doesn’t yet support GHC 9.12
+ }
+
+homepage: https://github.com/sellout/dada#readme
+bug-reports: https://github.com/sellout/dada/issues
source-repository head
type: git
- location: https://github.com/sellout/dada
+ location: https://github.com/sellout/dada.git
+ subdir: haskell
+
+flag noisy-deprecations
+ description:
+ Prior to GHC 9.10, the @DEPRECATED@ pragma can’t distinguish between terms
+ and types. Consenquently, you can get spurious warnings when there’s a name
+ collision and the name in the other namespace is deprecated. Or you can
+ choose to not get those warnings, at the risk of not being warned when
+ there’s a name collision and the namespace you’re referencing is the one
+ that’s deprecated.
+ default: True
+ manual: False
custom-setup
setup-depends:
- base >= 4.11.0 && < 4.20,
- cabal-doctest >= 1.0.0 && < 1.1
+ -- TODO: Due to haskell/cabal#3751, `Cabal` has to be specified even though
+ -- there’s no direct dependency. Its lower bound needs to match
+ -- `cabal-version` at the top of this file, and Hackage requires it to
+ -- have _some_ upper bound. (Since there’s no direct dependency, it
+ -- doesn’t use PVP bounds.)
+ Cabal >= 3.0 && < 99,
+ base ^>= {4.18.0, 4.19.0, 4.20.0},
+ cabal-doctest ^>= {1.0.0},
+
+-- This mimics the GHC2024 extension
+-- (https://ghc.gitlab.haskell.org/ghc/doc/users_guide/exts/control.html?highlight=doandifthenelse#extension-GHC2024),
+-- but supporting compilers back to GHC 7.10. If the oldest supported compiler
+-- is GHC 9.10, then this stanza can be removed and `import: GHC2024` can be
+-- replaced by `default-language: GHC2024`. If the oldest supported compiler is
+-- GHC 9.2, then this can be simplified by setting `default-language: GHC2021`
+-- and only including the extensions added by GHC2024.
+common GHC2024
+ default-language: Haskell2010
+ default-extensions:
+ BangPatterns
+ BinaryLiterals
+ ConstraintKinds
+ DataKinds
+ DeriveDataTypeable
+ DeriveGeneric
+ -- DeriveLift -- uncomment if the oldest supported version is GHC 8.10.1+
+ DeriveTraversable
+ -- DerivingStrategies -- uncomment if the oldest supported version is GHC 8.2.1+
+ DisambiguateRecordFields
+ DoAndIfThenElse
+ EmptyCase
+ ExistentialQuantification
+ FlexibleContexts
+ FlexibleInstances
+ GADTs
+ GeneralizedNewtypeDeriving
+ -- HexFloatLiterals -- uncomment if the oldest supported version is GHC 8.4.1+
+ -- ImportQualifiedPost -- uncomment if the oldest supported version is GHC 8.10.1+
+ InstanceSigs
+ LambdaCase
+ MagicHash
+ MonadComprehensions
+ MonomorphismRestriction
+ MultiParamTypeClasses
+ NamedFieldPuns
+ NamedWildCards
+ -- NumericUnderscores -- uncomment if the oldest supported version is GHC 8.6.1+
+ PolyKinds
+ PostfixOperators
+ RankNTypes
+ RoleAnnotations
+ ScopedTypeVariables
+ StandaloneDeriving
+ -- StandaloneKindSignatures -- uncomment if the oldest supported version is GHC 8.10.1+
+ TupleSections
+ -- TypeApplications -- uncomment if the oldest supported version is GHC 8.0.1+
+ TypeOperators
+ UnicodeSyntax
+
+common defaults
+ import: GHC2024
+ build-depends:
+ base ^>= {4.18.0, 4.19.0, 4.20.0},
+ ghc-options:
+ if impl(ghc >= 8.0.1)
+ ghc-options:
+ -Weverything
+ -- This one just reports unfixable things, AFAICT.
+ -Wno-all-missed-specialisations
+ -- Type inference good.
+ -Wno-missing-local-signatures
+ -- Warns even when `Unsafe` is explicit, not inferred. See
+ -- https://gitlab.haskell.org/ghc/ghc/-/issues/16689
+ -Wno-unsafe
+ if impl(ghc < 8.8.1)
+ ghc-options:
+ -- This used to warn even when `Safe` was explicit.
+ -Wno-safe
+ else
+ ghc-options:
+ -Wall
+ -- remove if the oldest supported version is GHC 8.10.1+
+ if impl(ghc >= 8.10.1)
+ ghc-options:
+ -Wno-prepositive-qualified-module
+ -- remove if the oldest supported version is GHC 9.2.1+
+ if impl(ghc >= 9.2.1)
+ ghc-options:
+ -Wno-missing-kind-signatures
+ if impl(ghc >= 9.8.1)
+ ghc-options:
+ -- remove if the oldest supported version is GHC 9.2.1+
+ -Wno-missing-poly-kind-signatures
+ -- Inference good.
+ -Wno-missing-role-annotations
+ default-extensions:
+ -- BlockArguments - uncomment if the oldest supported version is GHC 8.6.1+
+ DefaultSignatures
+ ExplicitNamespaces
+ FunctionalDependencies
+ LiberalTypeSynonyms
+ -- replace with `LexicalNegation` if the oldest supported version is GHC 9.0.1+
+ NegativeLiterals
+ PackageImports
+ ParallelListComp
+ -- QualifiedDo - uncomment if the oldest supported version is GHC 9.0.1+
+ RecursiveDo
+ -- RequiredTypeArguments - uncomment if the oldest supported version is GHC 9.10.1+
+ -- TemplateHaskellQuotes - uncomment if the oldest supported version is GHC 8.0.1+
+ TransformListComp
+ NoGeneralizedNewtypeDeriving
+ NoImplicitPrelude
+ NoMonomorphismRestriction
+ NoPatternGuards
+ -- NoStarIsType - uncomment if the oldest supported version is GHC 8.6.1+
+ -- NoTypeApplications - uncomment if the oldest supported version is GHC 8.0.1+
+ if impl(ghc >= 8.0.1)
+ default-extensions:
+ StrictData
+ if flag(noisy-deprecations)
+ cpp-options: -DSELLOUT_NOISY_DEPRECATIONS
library
- hs-source-dirs: src
- exposed-modules: Dada
- build-depends: base >= 4.11.0 && < 4.20
- , dhall
- , either
- , yaya
- default-extensions: LambdaCase
- , TupleSections
- default-language: Haskell2010
- ghc-options: -Wall
+ import: defaults
+ hs-source-dirs:
+ src
+ build-depends:
+ dhall ^>= {1.42.1},
+ either ^>= {5.0.2},
+ yaya ^>= {0.6.2},
+ exposed-modules:
+ Dada
test-suite doctests
+ import: defaults
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: doctests.hs
build-depends:
- base >= 4.11.0 && < 4.20,
- doctest >= 0.15.0 && < 0.23,
- dada
- default-language: Haskell2010
+ doctest ^>= {0.21.1, 0.22.2, 0.24.0},
+ dada,
+ if impl(ghc >= 8.10.1)
+ ghc-options:
+ -- `doctest` requires the package containing the doctests as a dependency
+ -- to ensure it gets built before this test-suite, even though the package
+ -- appears to be unused.
+ -Wno-unused-packages
+ -- TODO: The sections below here are necessary because we don’t have control
+ -- over the generated `Build_doctests.hs` file. So we have to silence
+ -- all of its warnings one way or another.
+ if impl(ghc >= 8.0.1)
+ ghc-options:
+ -Wno-missing-import-lists
+ -Wno-safe
+ else
+ ghc-options:
+ -fno-warn-missing-import-lists
+ if impl(ghc >= 8.4.1)
+ ghc-options:
+ -Wno-missing-export-lists
+ if impl(ghc >= 8.8.1)
+ ghc-options:
+ -Wno-missing-deriving-strategies
+ default-extensions:
+ -- Since we can’t add `{-# LANGUAGE Safe -#}` to the generated
+ -- “Build_doctests.hs”, we set it here, and that means it has to match
+ -- doctests.hs, which is `Unsafe`.
+ Unsafe
diff --git a/haskell/docs/license-report.md b/haskell/docs/license-report.md
new file mode 100644
index 0000000..45f2084
--- /dev/null
+++ b/haskell/docs/license-report.md
@@ -0,0 +1,170 @@
+**NB**: This captures the licenses associated with a particular set of dependency versions. If your own build solves differently, it’s possible that the licenses may have changed, or even that the set of dependencies itself is different. Please make sure you run [`cabal-plan license-report`](https://hackage.haskell.org/package/cabal-plan) on your own components rather than assuming this is authoritative.
+
+# Dependency License Report
+
+Bold-faced **`package-name`**s denote standard libraries bundled with `ghc-9.10.1`.
+
+## Direct dependencies of `dada:lib:dada`
+
+| Name | Version | [SPDX](https://spdx.org/licenses/) License Id | Description | Also depended upon by |
+| --- | --- | --- | --- | --- |
+| **`base`** | [`4.20.0.0`](http://hackage.haskell.org/package/base-4.20.0.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/base-4.20.0.0/src/LICENSE) | Core data structures and operations | *(core library)* |
+| `dhall` | [`1.42.3`](http://hackage.haskell.org/package/dhall-1.42.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/dhall-1.42.3/src/LICENSE) | A configuration language guaranteed to terminate | |
+| `either` | [`5.0.3`](http://hackage.haskell.org/package/either-5.0.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/either-5.0.3/src/LICENSE) | Combinators for working with sums | `dhall`, `yaya` |
+| `yaya` | [`0.6.2.3`](http://hackage.haskell.org/package/yaya-0.6.2.3) | [`AGPL-3.0-or-later`](http://hackage.haskell.org/package/yaya-0.6.2.3/src/LICENSE) | Total recursion schemes. | |
+
+## Indirect transitive dependencies
+
+| Name | Version | [SPDX](https://spdx.org/licenses/) License Id | Description | Depended upon by |
+| --- | --- | --- | --- | --- |
+| `Diff` | [`1.0.2`](http://hackage.haskell.org/package/Diff-1.0.2) | [`BSD-3-Clause`](http://hackage.haskell.org/package/Diff-1.0.2/src/LICENSE) | Diff algorithm in pure Haskell | `dhall` |
+| `OneTuple` | [`0.4.2`](http://hackage.haskell.org/package/OneTuple-0.4.2) | [`BSD-3-Clause`](http://hackage.haskell.org/package/OneTuple-0.4.2/src/LICENSE) | Singleton Tuple | `aeson`, `indexed-traversable-instances` |
+| `QuickCheck` | [`2.16.0.0`](http://hackage.haskell.org/package/QuickCheck-2.16.0.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/QuickCheck-2.16.0.0/src/LICENSE) | Automatic testing of Haskell programs | `aeson` |
+| `StateVar` | [`1.2.2`](http://hackage.haskell.org/package/StateVar-1.2.2) | [`BSD-3-Clause`](http://hackage.haskell.org/package/StateVar-1.2.2/src/LICENSE) | State variables | `contravariant`, `invariant` |
+| `adjunctions` | [`4.4.3`](http://hackage.haskell.org/package/adjunctions-4.4.3) | [`BSD-2-Clause`](http://hackage.haskell.org/package/adjunctions-4.4.3/src/LICENSE) | Adjunctions and representable functors | `kan-extensions` |
+| `aeson` | [`2.2.3.0`](http://hackage.haskell.org/package/aeson-2.2.3.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/aeson-2.2.3.0/src/LICENSE) | Fast JSON parsing and encoding | `aeson-pretty`, `cborg-json`, `dhall` |
+| `aeson-pretty` | [`0.8.10`](http://hackage.haskell.org/package/aeson-pretty-0.8.10) | [`BSD-3-Clause`](http://hackage.haskell.org/package/aeson-pretty-0.8.10/src/LICENSE) | JSON pretty-printing library and command-line tool. | `cborg-json`, `dhall` |
+| `ansi-terminal` | [`1.1.3`](http://hackage.haskell.org/package/ansi-terminal-1.1.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/ansi-terminal-1.1.3/src/LICENSE) | Simple ANSI terminal support | `dhall`, `prettyprinter-ansi-terminal` |
+| `ansi-terminal-types` | [`1.1.3`](http://hackage.haskell.org/package/ansi-terminal-types-1.1.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/ansi-terminal-types-1.1.3/src/LICENSE) | Types and functions used to represent SGR aspects | `ansi-terminal` |
+| `appar` | [`0.1.8`](http://hackage.haskell.org/package/appar-0.1.8) | [`BSD-3-Clause`](http://hackage.haskell.org/package/appar-0.1.8/src/LICENSE) | A simple applicative parser | `iproute` |
+| **`array`** | [`0.5.7.0`](http://hackage.haskell.org/package/array-0.5.7.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/array-0.5.7.0/src/LICENSE) | Mutable and immutable arrays | `Diff`, `adjunctions`, `attoparsec`, `binary`, `cborg`, `cereal`, `charset`, `containers`, `deepseq`, `http-client`, `http-types`, `indexed-traversable`, `integer-logarithms`, `invariant`, `kan-extensions`, `lens`, `megaparsec`, `parallel`, `serialise`, `stm`, `streaming-commons`, `text` |
+| `asn1-encoding` | [`0.9.6`](http://hackage.haskell.org/package/asn1-encoding-0.9.6) | [`BSD-3-Clause`](http://hackage.haskell.org/package/asn1-encoding-0.9.6/src/LICENSE) | ASN1 data reader and writer in RAW, BER and DER forms | `asn1-parse`, `crypton-x509`, `crypton-x509-store`, `crypton-x509-validation`, `tls` |
+| `asn1-parse` | [`0.9.5`](http://hackage.haskell.org/package/asn1-parse-0.9.5) | [`BSD-3-Clause`](http://hackage.haskell.org/package/asn1-parse-0.9.5/src/LICENSE) | Simple monadic parser for ASN1 stream types. | `crypton-x509` |
+| `asn1-types` | [`0.3.4`](http://hackage.haskell.org/package/asn1-types-0.3.4) | [`BSD-3-Clause`](http://hackage.haskell.org/package/asn1-types-0.3.4/src/LICENSE) | ASN.1 types | `asn1-encoding`, `asn1-parse`, `crypton-x509`, `crypton-x509-store`, `crypton-x509-validation`, `tls` |
+| `assoc` | [`1.1.1`](http://hackage.haskell.org/package/assoc-1.1.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/assoc-1.1.1/src/LICENSE) | swap and assoc: Symmetric and Semigroupy Bifunctors | `bifunctors`, `lens`, `strict`, `these` |
+| `async` | [`2.2.5`](http://hackage.haskell.org/package/async-2.2.5) | [`BSD-3-Clause`](http://hackage.haskell.org/package/async-2.2.5/src/LICENSE) | Run IO operations asynchronously and wait for their results | `http-client`, `streaming-commons` |
+| `atomic-write` | [`0.2.1.1`](http://hackage.haskell.org/package/atomic-write-0.2.1.1) | [`MIT`](http://hackage.haskell.org/package/atomic-write-0.2.1.1/src/LICENSE) | Atomically write to a file | `dhall` |
+| `attoparsec` | [`0.14.4`](http://hackage.haskell.org/package/attoparsec-0.14.4) | [`BSD-3-Clause`](http://hackage.haskell.org/package/attoparsec-0.14.4/src/LICENSE) | Fast combinator parsing for bytestrings and text | `parsers` |
+| `attoparsec` | [`0.14.4`](http://hackage.haskell.org/package/attoparsec-0.14.4) | [`BSD-3-Clause`](http://hackage.haskell.org/package/attoparsec-0.14.4/src/LICENSE) | Fast combinator parsing for bytestrings and text | `attoparsec` |
+| `base-compat` | [`0.14.1`](http://hackage.haskell.org/package/base-compat-0.14.1) | [`MIT`](http://hackage.haskell.org/package/base-compat-0.14.1/src/LICENSE) | A compatibility layer for base | `aeson-pretty` |
+| `base-orphans` | [`0.9.3`](http://hackage.haskell.org/package/base-orphans-0.9.3) | [`MIT`](http://hackage.haskell.org/package/base-orphans-0.9.3/src/LICENSE) | Backwards-compatible orphan instances for base | `distributive`, `lens`, `profunctors`, `semigroupoids`, `time-compat`, `transformers-base`, `witherable` |
+| `base16-bytestring` | [`1.0.2.0`](http://hackage.haskell.org/package/base16-bytestring-1.0.2.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/base16-bytestring-1.0.2.0/src/LICENSE) | RFC 4648-compliant Base16 encodings for ByteStrings | `dhall`, `ech-config`, `hpke`, `tls` |
+| `base64-bytestring` | [`1.2.1.0`](http://hackage.haskell.org/package/base64-bytestring-1.2.1.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/base64-bytestring-1.2.1.0/src/LICENSE) | Fast base64 encoding and decoding for ByteStrings | `cborg-json`, `http-client` |
+| `basement` | [`0.0.16`](http://hackage.haskell.org/package/basement-0.0.16) | [`BSD-3-Clause`](http://hackage.haskell.org/package/basement-0.0.16/src/LICENSE) | Foundation scrap box of array & string | `crypton`, `memory`, `pem` |
+| `bifunctors` | [`5.6.2`](http://hackage.haskell.org/package/bifunctors-5.6.2) | [`BSD-3-Clause`](http://hackage.haskell.org/package/bifunctors-5.6.2/src/LICENSE) | Bifunctors | `either`, `invariant`, `lens`, `profunctors`, `semigroupoids` |
+| **`binary`** | [`0.8.9.2`](http://hackage.haskell.org/package/binary-0.8.9.2) | [`BSD-3-Clause`](http://hackage.haskell.org/package/binary-0.8.9.2/src/LICENSE) | Binary serialisation for Haskell values using lazy ByteStrings | `half`, `parsers`, `scientific`, `strict`, `text`, `text-short`, `these`, `unix-time`, `uuid-types` |
+| `blaze-builder` | [`0.4.4.1`](http://hackage.haskell.org/package/blaze-builder-0.4.4.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/blaze-builder-0.4.4.1/src/LICENSE) | Efficient buffered output. | `http-client` |
+| `byteorder` | [`1.0.4`](http://hackage.haskell.org/package/byteorder-1.0.4) | [`BSD-3-Clause`](http://hackage.haskell.org/package/byteorder-1.0.4/src/LICENSE) | Exposes the native endianness or byte ordering of the system. | `iproute` |
+| **`bytestring`** | [`0.12.1.0`](http://hackage.haskell.org/package/bytestring-0.12.1.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/bytestring-0.12.1.0/src/LICENSE) | Fast, compact, strict and lazy byte strings with a list interface | `aeson`, `aeson-pretty`, `appar`, `asn1-encoding`, `asn1-parse`, `asn1-types`, `atomic-write`, `attoparsec`, `base16-bytestring`, `base64-bytestring`, `binary`, `blaze-builder`, `case-insensitive`, `cborg`, `cereal`, `charset`, `cookie`, `cryptohash-sha256`, `crypton`, `crypton-connection`, `crypton-socks`, `crypton-x509`, `crypton-x509-store`, `crypton-x509-system`, `crypton-x509-validation`, `dhall`, `ech-config`, `filepath`, `hashable`, `haskeline`, `hpke`, `http-client`, `http-client-tls`, `http-types`, `integer-conversion`, `iproute`, `lens`, `megaparsec`, `memory`, `mime-types`, `network`, `network-byte-order`, `os-string`, `parsec`, `pem`, `random`, `scientific`, `serialise`, `streaming-commons`, `strict`, `text`, `text-short`, `th-lift-instances`, `tls`, `unix`, `unix-time`, `uuid-types`, `zlib` |
+| `call-stack` | [`0.4.0`](http://hackage.haskell.org/package/call-stack-0.4.0) | [`MIT`](http://hackage.haskell.org/package/call-stack-0.4.0/src/LICENSE) | Use GHC call-stacks in a backward compatible way | `lens` |
+| `case-insensitive` | [`1.2.1.0`](http://hackage.haskell.org/package/case-insensitive-1.2.1.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/case-insensitive-1.2.1.0/src/LICENSE) | Case insensitive string comparison | `dhall`, `http-client`, `http-client-tls`, `http-types`, `megaparsec` |
+| `cborg` | [`0.2.10.0`](http://hackage.haskell.org/package/cborg-0.2.10.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/cborg-0.2.10.0/src/LICENSE.txt) | Concise Binary Object Representation (CBOR) | `cborg-json`, `dhall`, `serialise` |
+| `cborg-json` | [`0.2.6.0`](http://hackage.haskell.org/package/cborg-json-0.2.6.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/cborg-json-0.2.6.0/src/LICENSE.txt) | A library for encoding JSON as CBOR | `dhall` |
+| `cereal` | [`0.5.8.3`](http://hackage.haskell.org/package/cereal-0.5.8.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/cereal-0.5.8.3/src/LICENSE) | A binary serialization library | `crypton-socks`, `tls` |
+| `character-ps` | [`0.1`](http://hackage.haskell.org/package/character-ps-0.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/character-ps-0.1/src/LICENSE) | Pattern synonyms for ASCII characters for Word8, Word16 etc | `aeson` |
+| `charset` | [`0.3.12`](http://hackage.haskell.org/package/charset-0.3.12) | [`BSD-3-Clause`](http://hackage.haskell.org/package/charset-0.3.12/src/LICENSE) | Fast unicode character sets based on complemented PATRICIA tries | `parsers` |
+| `colour` | [`2.3.6`](http://hackage.haskell.org/package/colour-2.3.6) | [`MIT`](http://hackage.haskell.org/package/colour-2.3.6/src/LICENSE) | A model for human colour/color perception | `ansi-terminal`, `ansi-terminal-types` |
+| `comonad` | [`5.0.9`](http://hackage.haskell.org/package/comonad-5.0.9) | [`BSD-3-Clause`](http://hackage.haskell.org/package/comonad-5.0.9/src/LICENSE) | Comonads | `adjunctions`, `bifunctors`, `free`, `invariant`, `kan-extensions`, `lens`, `profunctors`, `semigroupoids`, `yaya` |
+| **`containers`** | [`0.7`](http://hackage.haskell.org/package/containers-0.7) | [`BSD-3-Clause`](http://hackage.haskell.org/package/containers-0.7/src/LICENSE) | Assorted concrete container types | `QuickCheck`, `adjunctions`, `aeson`, `attoparsec`, `bifunctors`, `binary`, `cborg`, `cereal`, `charset`, `comonad`, `crypton-connection`, `crypton-x509`, `crypton-x509-store`, `crypton-x509-system`, `crypton-x509-validation`, `data-default`, `dhall`, `dotgen`, `free`, `hashable`, `haskeline`, `http-client`, `http-client-tls`, `indexed-traversable`, `invariant`, `iproute`, `kan-extensions`, `lens`, `megaparsec`, `mime-types`, `parallel`, `parsers`, `pretty-simple`, `repline`, `scientific`, `semialign`, `semigroupoids`, `serialise`, `th-abstraction`, `th-lift-instances`, `witherable` |
+| `contravariant` | [`1.5.5`](http://hackage.haskell.org/package/contravariant-1.5.5) | [`BSD-3-Clause`](http://hackage.haskell.org/package/contravariant-1.5.5/src/LICENSE) | Contravariant functors | `adjunctions`, `dhall`, `invariant`, `kan-extensions`, `lens`, `profunctors`, `semigroupoids` |
+| `cookie` | [`0.5.1`](http://hackage.haskell.org/package/cookie-0.5.1) | [`MIT`](http://hackage.haskell.org/package/cookie-0.5.1/src/LICENSE) | HTTP cookie parsing and rendering | `http-client` |
+| `cryptohash-sha256` | [`0.11.102.1`](http://hackage.haskell.org/package/cryptohash-sha256-0.11.102.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/cryptohash-sha256-0.11.102.1/src/LICENSE) | Fast, pure and practical SHA-256 implementation | `dhall` |
+| `crypton` | [`1.0.4`](http://hackage.haskell.org/package/crypton-1.0.4) | [`BSD-3-Clause`](http://hackage.haskell.org/package/crypton-1.0.4/src/LICENSE) | Cryptography Primitives sink | `crypton-x509`, `crypton-x509-store`, `crypton-x509-validation`, `hpke`, `http-client-tls`, `tls` |
+| `crypton-connection` | [`0.4.5`](http://hackage.haskell.org/package/crypton-connection-0.4.5) | [`BSD-3-Clause`](http://hackage.haskell.org/package/crypton-connection-0.4.5/src/LICENSE) | Simple and easy network connection API | `http-client-tls` |
+| `crypton-socks` | [`0.6.2`](http://hackage.haskell.org/package/crypton-socks-0.6.2) | [`BSD-3-Clause`](http://hackage.haskell.org/package/crypton-socks-0.6.2/src/LICENSE) | SOCKS Protocol Version 5 | `crypton-connection` |
+| `crypton-x509` | [`1.7.7`](http://hackage.haskell.org/package/crypton-x509-1.7.7) | [`BSD-3-Clause`](http://hackage.haskell.org/package/crypton-x509-1.7.7/src/LICENSE) | X509 reader and writer | `crypton-x509-store`, `crypton-x509-system`, `crypton-x509-validation`, `tls` |
+| `crypton-x509-store` | [`1.6.12`](http://hackage.haskell.org/package/crypton-x509-store-1.6.12) | [`BSD-3-Clause`](http://hackage.haskell.org/package/crypton-x509-store-1.6.12/src/LICENSE) | X.509 collection accessing and storing methods | `crypton-connection`, `crypton-x509-system`, `crypton-x509-validation`, `tls` |
+| `crypton-x509-system` | [`1.6.7`](http://hackage.haskell.org/package/crypton-x509-system-1.6.7) | [`BSD-3-Clause`](http://hackage.haskell.org/package/crypton-x509-system-1.6.7/src/LICENSE) | Handle per-operating-system X.509 accessors and storage | `crypton-connection` |
+| `crypton-x509-validation` | [`1.6.14`](http://hackage.haskell.org/package/crypton-x509-validation-1.6.14) | [`BSD-3-Clause`](http://hackage.haskell.org/package/crypton-x509-validation-1.6.14/src/LICENSE) | X.509 Certificate and CRL validation | `tls` |
+| `data-default` | [`0.8.0.1`](http://hackage.haskell.org/package/data-default-0.8.0.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/data-default-0.8.0.1/src/LICENSE) | A class for types with a default value | `crypton-connection`, `crypton-x509-validation`, `data-default-class`, `http-client-tls`, `tls` |
+| `data-default-class` | [`0.2.0.0`](http://hackage.haskell.org/package/data-default-class-0.2.0.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/data-default-class-0.2.0.0/src/LICENSE) | A class for types with a default value (compatibility shim) | `cookie` |
+| `data-fix` | [`0.3.4`](http://hackage.haskell.org/package/data-fix-0.3.4) | [`BSD-3-Clause`](http://hackage.haskell.org/package/data-fix-0.3.4/src/LICENSE) | Fixpoint data types | `aeson`, `dhall` |
+| **`deepseq`** | [`1.5.0.0`](http://hackage.haskell.org/package/deepseq-1.5.0.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/deepseq-1.5.0.0/src/LICENSE) | Deep evaluation of data structures | `QuickCheck`, `aeson`, `attoparsec`, `bytestring`, `case-insensitive`, `cborg`, `containers`, `cookie`, `crypton`, `data-fix`, `dhall`, `dlist`, `filepath`, `half`, `hashable`, `hourglass`, `http-client`, `megaparsec`, `memory`, `network`, `network-uri`, `os-string`, `parallel`, `pretty`, `primitive`, `process`, `random`, `scientific`, `splitmix`, `strict`, `tagged`, `text`, `text-short`, `these`, `time`, `time-compat`, `unordered-containers`, `uuid-types`, `vector` |
+| **`directory`** | [`1.3.8.3`](http://hackage.haskell.org/package/directory-1.3.8.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/directory-1.3.8.3/src/LICENSE) | Platform-agnostic library for filesystem operations | `atomic-write`, `crypton-x509-store`, `crypton-x509-system`, `dhall`, `haskeline`, `network`, `process`, `streaming-commons`, `temporary` |
+| `distributive` | [`0.6.2.1`](http://hackage.haskell.org/package/distributive-0.6.2.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/distributive-0.6.2.1/src/LICENSE) | Distributive functors -- Dual to Traversable | `adjunctions`, `comonad`, `free`, `kan-extensions`, `lens`, `profunctors`, `semigroupoids` |
+| `dlist` | [`1.0`](http://hackage.haskell.org/package/dlist-1.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/dlist-1.0/src/license.md) | Difference lists | `aeson` |
+| `dotgen` | [`0.4.3`](http://hackage.haskell.org/package/dotgen-0.4.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/dotgen-0.4.3/src/LICENSE) | A simple interface for building .dot graph files. | `dhall` |
+| `ech-config` | [`0.0.1`](http://hackage.haskell.org/package/ech-config-0.0.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/ech-config-0.0.1/src/LICENSE) | Config for TLS Encrypted Client Hello | `tls` |
+| **`exceptions`** | [`0.10.7`](http://hackage.haskell.org/package/exceptions-0.10.7) | [`BSD-3-Clause`](http://hackage.haskell.org/package/exceptions-0.10.7/src/LICENSE) | Extensible optionally-pure exceptions | `aeson`, `dhall`, `filepath`, `free`, `haskeline`, `http-client`, `http-client-tls`, `lens`, `os-string`, `repline`, `temporary` |
+| **`filepath`** | [`1.5.2.0`](http://hackage.haskell.org/package/filepath-1.5.2.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/filepath-1.5.2.0/src/LICENSE) | Library for manipulating FilePaths in a cross platform way. | `atomic-write`, `crypton-x509-store`, `crypton-x509-system`, `dhall`, `directory`, `ech-config`, `hashable`, `haskeline`, `http-client`, `lens`, `process`, `temporary`, `unix` |
+| `free` | [`5.2`](http://hackage.haskell.org/package/free-5.2) | [`BSD-3-Clause`](http://hackage.haskell.org/package/free-5.2/src/LICENSE) | Monads for free | `adjunctions`, `kan-extensions`, `lens`, `yaya` |
+| `generically` | [`0.1.1`](http://hackage.haskell.org/package/generically-0.1.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/generically-0.1.1/src/LICENSE) | Generically newtype to use with DerivingVia | `aeson` |
+| **`ghc-bignum`** | [`1.3`](http://hackage.haskell.org/package/ghc-bignum-1.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/ghc-bignum-1.3/src/LICENSE) | GHC BigNum library | `cborg`, `ghc-internal`, `hashable`, `integer-gmp`, `integer-logarithms` |
+| **`ghc-boot-th`** | [`9.10.1`](http://hackage.haskell.org/package/ghc-boot-th-9.10.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/ghc-boot-th-9.10.1/src/LICENSE) | Shared functionality between GHC and the @template-haskell@ library | `template-haskell` |
+| **`ghc-internal`** | [`9.1001.0`](http://hackage.haskell.org/package/ghc-internal-9.1001.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/ghc-internal-9.1001.0/src/LICENSE) | Basic libraries | `base`, `integer-gmp` |
+| **`ghc-prim`** | [`0.11.0`](http://hackage.haskell.org/package/ghc-prim-0.11.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/ghc-prim-0.11.0/src/LICENSE) | GHC primitives | *(core library)* |
+| `half` | [`0.3.3`](http://hackage.haskell.org/package/half-0.3.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/half-0.3.3/src/LICENSE) | Half-precision floating-point | `cborg`, `dhall`, `serialise` |
+| `hashable` | [`1.5.0.0`](http://hackage.haskell.org/package/hashable-1.5.0.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/hashable-1.5.0.0/src/LICENSE) | A class for types that can be converted to a hash value | `aeson`, `async`, `case-insensitive`, `data-fix`, `dhall`, `lens`, `scientific`, `semialign`, `semigroupoids`, `serialise`, `strict`, `text-short`, `these`, `time-compat`, `unordered-containers`, `uuid-types`, `witherable` |
+| **`haskeline`** | [`0.8.2.1`](http://hackage.haskell.org/package/haskeline-0.8.2.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/haskeline-0.8.2.1/src/LICENSE) | A command-line interface for user input, written in Haskell. | `dhall`, `repline` |
+| `hourglass` | [`0.2.12`](http://hackage.haskell.org/package/hourglass-0.2.12) | [`BSD-3-Clause`](http://hackage.haskell.org/package/hourglass-0.2.12/src/LICENSE) | simple performant time related library | `asn1-encoding`, `asn1-types`, `crypton-x509`, `crypton-x509-validation` |
+| `hpke` | [`0.0.0`](http://hackage.haskell.org/package/hpke-0.0.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/hpke-0.0.0/src/LICENSE) | Hybrid Public Key Encryption | `tls` |
+| `http-client` | [`0.7.19`](http://hackage.haskell.org/package/http-client-0.7.19) | [`MIT`](http://hackage.haskell.org/package/http-client-0.7.19/src/LICENSE) | An HTTP client engine | `dhall`, `http-client-tls` |
+| `http-client-tls` | [`0.3.6.4`](http://hackage.haskell.org/package/http-client-tls-0.3.6.4) | [`MIT`](http://hackage.haskell.org/package/http-client-tls-0.3.6.4/src/LICENSE) | http-client backend using the connection package and tls library | `dhall` |
+| `http-types` | [`0.12.4`](http://hackage.haskell.org/package/http-types-0.12.4) | [`BSD-3-Clause`](http://hackage.haskell.org/package/http-types-0.12.4/src/LICENSE) | Generic HTTP types for Haskell (for both client and server code). | `dhall`, `http-client`, `http-client-tls` |
+| `indexed-traversable` | [`0.1.4`](http://hackage.haskell.org/package/indexed-traversable-0.1.4) | [`BSD-2-Clause`](http://hackage.haskell.org/package/indexed-traversable-0.1.4/src/LICENSE) | FunctorWithIndex, FoldableWithIndex, TraversableWithIndex | `aeson`, `comonad`, `dhall`, `free`, `indexed-traversable-instances`, `lens`, `semialign`, `witherable` |
+| `indexed-traversable-instances` | [`0.1.2`](http://hackage.haskell.org/package/indexed-traversable-instances-0.1.2) | [`BSD-2-Clause`](http://hackage.haskell.org/package/indexed-traversable-instances-0.1.2/src/LICENSE) | More instances of FunctorWithIndex, FoldableWithIndex, TraversableWithIndex | `lens`, `semialign`, `witherable` |
+| `integer-conversion` | [`0.1.1`](http://hackage.haskell.org/package/integer-conversion-0.1.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/integer-conversion-0.1.1/src/LICENSE) | Conversion from strings to Integer | `aeson`, `text-iso8601` |
+| **`integer-gmp`** | [`1.1`](http://hackage.haskell.org/package/integer-gmp-1.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/integer-gmp-1.1/src/LICENSE) | Integer library based on GMP | *(core library)* |
+| `integer-logarithms` | [`1.0.4`](http://hackage.haskell.org/package/integer-logarithms-1.0.4) | [`MIT`](http://hackage.haskell.org/package/integer-logarithms-1.0.4/src/LICENSE) | Integer logarithms. | `aeson`, `scientific` |
+| `invariant` | [`0.6.4`](http://hackage.haskell.org/package/invariant-0.6.4) | [`BSD-2-Clause`](http://hackage.haskell.org/package/invariant-0.6.4/src/LICENSE) | Haskell98 invariant functors | `kan-extensions` |
+| `iproute` | [`1.7.15`](http://hackage.haskell.org/package/iproute-1.7.15) | [`BSD-3-Clause`](http://hackage.haskell.org/package/iproute-1.7.15/src/LICENSE) | IP Routing Table | `crypton-x509-validation`, `http-client` |
+| `kan-extensions` | [`5.2.7`](http://hackage.haskell.org/package/kan-extensions-5.2.7) | [`BSD-3-Clause`](http://hackage.haskell.org/package/kan-extensions-5.2.7/src/LICENSE) | Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads | `lens`, `yaya` |
+| `lens` | [`5.3.5`](http://hackage.haskell.org/package/lens-5.3.5) | [`BSD-2-Clause`](http://hackage.haskell.org/package/lens-5.3.5/src/LICENSE) | Lenses, Folds and Traversals | `yaya` |
+| `megaparsec` | [`9.7.0`](http://hackage.haskell.org/package/megaparsec-9.7.0) | [`BSD-2-Clause`](http://hackage.haskell.org/package/megaparsec-9.7.0/src/LICENSE.md) | Monadic parser combinators | `dhall` |
+| `memory` | [`0.18.0`](http://hackage.haskell.org/package/memory-0.18.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/memory-0.18.0/src/LICENSE) | memory and related abstraction stuff | `asn1-types`, `crypton`, `crypton-x509`, `crypton-x509-validation`, `hpke`, `http-client-tls`, `pem`, `tls` |
+| `microlens` | [`0.4.14.0`](http://hackage.haskell.org/package/microlens-0.4.14.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/microlens-0.4.14.0/src/LICENSE) | A tiny lens library with no dependencies | `dhall`, `microlens-mtl` |
+| `microlens-mtl` | [`0.2.1.0`](http://hackage.haskell.org/package/microlens-mtl-0.2.1.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/microlens-mtl-0.2.1.0/src/LICENSE) | microlens support for Reader/Writer/State from mtl | `dhall` |
+| `mime-types` | [`0.1.2.0`](http://hackage.haskell.org/package/mime-types-0.1.2.0) | [`MIT`](http://hackage.haskell.org/package/mime-types-0.1.2.0/src/LICENSE) | Basic mime-type handling types and functions | `http-client` |
+| `mmorph` | [`1.2.1`](http://hackage.haskell.org/package/mmorph-1.2.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/mmorph-1.2.1/src/LICENSE) | Monad morphisms | `dhall` |
+| **`mtl`** | [`2.3.1`](http://hackage.haskell.org/package/mtl-2.3.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/mtl-2.3.1/src/LICENSE) | Monad classes for transformers, using functional dependencies | `adjunctions`, `crypton-x509-store`, `crypton-x509-system`, `crypton-x509-validation`, `dhall`, `either`, `exceptions`, `free`, `kan-extensions`, `lens`, `megaparsec`, `microlens-mtl`, `mmorph`, `parsec`, `parsers`, `pretty-simple`, `random`, `repline`, `tls` |
+| `network` | [`3.2.8.0`](http://hackage.haskell.org/package/network-3.2.8.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/network-3.2.8.0/src/LICENSE) | Low-level networking interface | `crypton-connection`, `crypton-socks`, `http-client`, `http-client-tls`, `iproute`, `streaming-commons`, `tls` |
+| `network-byte-order` | [`0.1.7`](http://hackage.haskell.org/package/network-byte-order-0.1.7) | [`BSD-3-Clause`](http://hackage.haskell.org/package/network-byte-order-0.1.7/src/LICENSE) | Network byte order utilities | `ech-config` |
+| `network-uri` | [`2.6.4.2`](http://hackage.haskell.org/package/network-uri-2.6.4.2) | [`BSD-3-Clause`](http://hackage.haskell.org/package/network-uri-2.6.4.2/src/LICENSE) | URI manipulation | `aeson`, `dhall`, `http-client`, `http-client-tls` |
+| `old-locale` | [`1.0.0.7`](http://hackage.haskell.org/package/old-locale-1.0.0.7) | [`BSD-3-Clause`](http://hackage.haskell.org/package/old-locale-1.0.0.7/src/LICENSE) | locale library | `old-time` |
+| `old-time` | [`1.1.0.4`](http://hackage.haskell.org/package/old-time-1.1.0.4) | [`BSD-3-Clause`](http://hackage.haskell.org/package/old-time-1.1.0.4/src/LICENSE) | Time library | `unix-time` |
+| `optparse-applicative` | [`0.19.0.0`](http://hackage.haskell.org/package/optparse-applicative-0.19.0.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/optparse-applicative-0.19.0.0/src/LICENSE) | Utilities and combinators for parsing command line options | `dhall` |
+| **`os-string`** | [`2.0.2`](http://hackage.haskell.org/package/os-string-2.0.2) | [`BSD-3-Clause`](http://hackage.haskell.org/package/os-string-2.0.2/src/LICENSE) | Library for manipulating Operating system strings. | `directory`, `filepath`, `hashable`, `unix` |
+| `parallel` | [`3.3.0.0`](http://hackage.haskell.org/package/parallel-3.3.0.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/parallel-3.3.0.0/src/LICENSE) | Parallel programming library | `lens` |
+| **`parsec`** | [`3.1.17.0`](http://hackage.haskell.org/package/parsec-3.1.17.0) | [`BSD-2-Clause`](http://hackage.haskell.org/package/parsec-3.1.17.0/src/LICENSE) | Monadic parser combinators | `network-uri`, `parsers` |
+| `parser-combinators` | [`1.3.0`](http://hackage.haskell.org/package/parser-combinators-1.3.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/parser-combinators-1.3.0/src/LICENSE.md) | Lightweight package providing commonly useful parser combinators | `dhall`, `megaparsec` |
+| `parsers` | [`0.12.12`](http://hackage.haskell.org/package/parsers-0.12.12) | [`BSD-3-Clause`](http://hackage.haskell.org/package/parsers-0.12.12/src/LICENSE) | Parsing combinators | `dhall` |
+| `pem` | [`0.2.4`](http://hackage.haskell.org/package/pem-0.2.4) | [`BSD-3-Clause`](http://hackage.haskell.org/package/pem-0.2.4/src/LICENSE) | Privacy Enhanced Mail (PEM) format reader and writer. | `crypton-x509`, `crypton-x509-store`, `crypton-x509-system`, `crypton-x509-validation` |
+| **`pretty`** | [`1.1.3.6`](http://hackage.haskell.org/package/pretty-1.1.3.6) | [`BSD-3-Clause`](http://hackage.haskell.org/package/pretty-1.1.3.6/src/LICENSE) | Pretty-printing library | `Diff`, `template-haskell` |
+| `pretty-simple` | [`4.1.4.0`](http://hackage.haskell.org/package/pretty-simple-4.1.4.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/pretty-simple-4.1.4.0/src/LICENSE) | pretty printer for data types with a 'Show' instance. | `dhall` |
+| `prettyprinter` | [`1.7.1`](http://hackage.haskell.org/package/prettyprinter-1.7.1) | [`BSD-2-Clause`](http://hackage.haskell.org/package/prettyprinter-1.7.1/src/LICENSE.md) | A modern, easy to use, well-documented, extensible pretty-printer. | `dhall`, `optparse-applicative`, `pretty-simple`, `prettyprinter-ansi-terminal` |
+| `prettyprinter-ansi-terminal` | [`1.1.3`](http://hackage.haskell.org/package/prettyprinter-ansi-terminal-1.1.3) | [`BSD-2-Clause`](http://hackage.haskell.org/package/prettyprinter-ansi-terminal-1.1.3/src/LICENSE.md) | ANSI terminal backend for the »prettyprinter« package. | `dhall`, `optparse-applicative`, `pretty-simple` |
+| `primitive` | [`0.9.1.0`](http://hackage.haskell.org/package/primitive-0.9.1.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/primitive-0.9.1.0/src/LICENSE) | Primitive memory-related operations | `aeson`, `cborg`, `integer-conversion`, `scientific`, `serialise`, `vector` |
+| **`process`** | [`1.6.19.0`](http://hackage.haskell.org/package/process-1.6.19.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/process-1.6.19.0/src/LICENSE) | Process libraries | `crypton-x509-system`, `haskeline`, `optparse-applicative`, `repline`, `streaming-commons` |
+| `profunctors` | [`5.6.3`](http://hackage.haskell.org/package/profunctors-5.6.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/profunctors-5.6.3/src/LICENSE) | Profunctors | `adjunctions`, `either`, `free`, `invariant`, `kan-extensions`, `lens`, `yaya` |
+| `random` | [`1.3.1`](http://hackage.haskell.org/package/random-1.3.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/random-1.3.1/src/LICENSE) | Pseudo-random number generation | `QuickCheck`, `http-client`, `streaming-commons`, `temporary`, `tls`, `uuid-types` |
+| `reflection` | [`2.1.9`](http://hackage.haskell.org/package/reflection-2.1.9) | [`BSD-3-Clause`](http://hackage.haskell.org/package/reflection-2.1.9/src/LICENSE) | Reifies arbitrary terms into types that can be reflected back into terms | `lens` |
+| `repline` | [`0.4.3.0`](http://hackage.haskell.org/package/repline-0.4.3.0) | [`MIT`](http://hackage.haskell.org/package/repline-0.4.3.0/src/LICENSE) | Haskeline wrapper for GHCi-like REPL interfaces. | `dhall` |
+| `scientific` | [`0.3.8.0`](http://hackage.haskell.org/package/scientific-0.3.8.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/scientific-0.3.8.0/src/LICENSE) | Numbers represented using scientific notation | `aeson`, `aeson-pretty`, `attoparsec`, `cborg-json`, `dhall`, `megaparsec`, `parsers` |
+| `semialign` | [`1.3.1`](http://hackage.haskell.org/package/semialign-1.3.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/semialign-1.3.1/src/LICENSE) | Align and Zip type-classes from the common Semialign ancestor. | `aeson` |
+| `semigroupoids` | [`6.0.1`](http://hackage.haskell.org/package/semigroupoids-6.0.1) | [`BSD-2-Clause`](http://hackage.haskell.org/package/semigroupoids-6.0.1/src/LICENSE) | Semigroupoids: Category sans id | `adjunctions`, `either`, `free`, `kan-extensions`, `lens`, `semialign` |
+| `semigroups` | [`0.20`](http://hackage.haskell.org/package/semigroups-0.20) | [`BSD-3-Clause`](http://hackage.haskell.org/package/semigroups-0.20/src/LICENSE) | Anything that associates | `adjunctions` |
+| `serialise` | [`0.2.6.1`](http://hackage.haskell.org/package/serialise-0.2.6.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/serialise-0.2.6.1/src/LICENSE.txt) | A binary serialisation library for Haskell values. | `dhall`, `tls` |
+| `splitmix` | [`0.1.3.1`](http://hackage.haskell.org/package/splitmix-0.1.3.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/splitmix-0.1.3.1/src/LICENSE) | Fast Splittable PRNG | `QuickCheck`, `random` |
+| **`stm`** | [`2.5.3.1`](http://hackage.haskell.org/package/stm-2.5.3.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/stm-2.5.3.1/src/LICENSE) | Software Transactional Memory | `StateVar`, `async`, `exceptions`, `haskeline`, `http-client`, `invariant`, `network`, `streaming-commons`, `transformers-base` |
+| `streaming-commons` | [`0.2.3.1`](http://hackage.haskell.org/package/streaming-commons-0.2.3.1) | [`MIT`](http://hackage.haskell.org/package/streaming-commons-0.2.3.1/src/LICENSE) | Common lower-level functions needed by various streaming data libraries | `http-client` |
+| `strict` | [`0.5.1`](http://hackage.haskell.org/package/strict-0.5.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/strict-0.5.1/src/LICENSE) | Strict data types and String IO. | `aeson`, `lens`, `serialise`, `yaya` |
+| `tagged` | [`0.8.9`](http://hackage.haskell.org/package/tagged-0.8.9) | [`BSD-3-Clause`](http://hackage.haskell.org/package/tagged-0.8.9/src/LICENSE) | Haskell 98 phantom types to avoid unsafely passing dummy arguments | `adjunctions`, `aeson`, `bifunctors`, `comonad`, `distributive`, `indexed-traversable-instances`, `invariant`, `kan-extensions`, `lens`, `profunctors`, `semialign`, `semigroupoids` |
+| **`template-haskell`** | [`2.22.0.0`](http://hackage.haskell.org/package/template-haskell-2.22.0.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/template-haskell-2.22.0.0/src/LICENSE) | Support library for Template Haskell | `OneTuple`, `QuickCheck`, `aeson`, `bifunctors`, `bytestring`, `containers`, `dhall`, `exceptions`, `filepath`, `free`, `half`, `invariant`, `lens`, `network-uri`, `os-string`, `primitive`, `reflection`, `scientific`, `semigroupoids`, `tagged`, `text`, `text-short`, `th-abstraction`, `th-compat`, `th-lift`, `th-lift-instances`, `time-compat`, `unordered-containers`, `uuid-types`, `yaya` |
+| `temporary` | [`1.3`](http://hackage.haskell.org/package/temporary-1.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/temporary-1.3/src/LICENSE) | Portable temporary file and directory support | `atomic-write` |
+| **`terminfo`** | [`0.4.1.6`](http://hackage.haskell.org/package/terminfo-0.4.1.6) | [`BSD-3-Clause`](http://hackage.haskell.org/package/terminfo-0.4.1.6/src/LICENSE) | Haskell bindings to the terminfo library. | `haskeline` |
+| **`text`** | [`2.1.1`](http://hackage.haskell.org/package/text-2.1.1) | [`BSD-2-Clause`](http://hackage.haskell.org/package/text-2.1.1/src/LICENSE) | An efficient packed Unicode text type. | `aeson`, `aeson-pretty`, `atomic-write`, `attoparsec`, `blaze-builder`, `case-insensitive`, `cborg`, `cborg-json`, `cookie`, `dhall`, `hashable`, `http-client`, `http-client-tls`, `http-types`, `integer-conversion`, `lens`, `megaparsec`, `mime-types`, `optparse-applicative`, `parsec`, `parsers`, `pretty-simple`, `prettyprinter`, `prettyprinter-ansi-terminal`, `scientific`, `serialise`, `streaming-commons`, `strict`, `text-iso8601`, `text-manipulate`, `text-short`, `th-lift-instances`, `uuid-types` |
+| `text-iso8601` | [`0.1.1`](http://hackage.haskell.org/package/text-iso8601-0.1.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/text-iso8601-0.1.1/src/LICENSE) | Converting time to and from ISO 8601 text. | `aeson` |
+| `text-manipulate` | [`0.3.1.0`](http://hackage.haskell.org/package/text-manipulate-0.3.1.0) | [`MPL-2.0`](http://hackage.haskell.org/package/text-manipulate-0.3.1.0/src/LICENSE) | Case conversion, word boundary manipulation, and textual subjugation. | `dhall` |
+| `text-short` | [`0.1.6`](http://hackage.haskell.org/package/text-short-0.1.6) | [`BSD-3-Clause`](http://hackage.haskell.org/package/text-short-0.1.6/src/LICENSE) | Memory-efficient representation of Unicode text strings | `aeson`, `dhall` |
+| `th-abstraction` | [`0.7.1.0`](http://hackage.haskell.org/package/th-abstraction-0.7.1.0) | [`ISC`](http://hackage.haskell.org/package/th-abstraction-0.7.1.0/src/LICENSE) | Nicer interface for reified information about data types | `aeson`, `bifunctors`, `free`, `invariant`, `lens`, `th-lift`, `yaya` |
+| `th-compat` | [`0.1.6`](http://hackage.haskell.org/package/th-compat-0.1.6) | [`BSD-3-Clause`](http://hackage.haskell.org/package/th-compat-0.1.6/src/LICENSE) | Backward- (and forward-)compatible Quote and Code types | `network-uri` |
+| `th-lift` | [`0.8.6`](http://hackage.haskell.org/package/th-lift-0.8.6) | [`BSD-3-Clause`](http://hackage.haskell.org/package/th-lift-0.8.6/src/COPYING) | Derive Template Haskell's Lift class for datatypes. | `th-lift-instances` |
+| `th-lift-instances` | [`0.1.20`](http://hackage.haskell.org/package/th-lift-instances-0.1.20) | [`BSD-3-Clause`](http://hackage.haskell.org/package/th-lift-instances-0.1.20/src/LICENSE) | Lift instances for template-haskell for common data types. | `dhall` |
+| `these` | [`1.2.1`](http://hackage.haskell.org/package/these-1.2.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/these-1.2.1/src/LICENSE) | An either-or-both data type. | `aeson`, `lens`, `semialign`, `serialise`, `strict` |
+| **`time`** | [`1.12.2`](http://hackage.haskell.org/package/time-1.12.2) | [`BSD-2-Clause`](http://hackage.haskell.org/package/time-1.12.2/src/LICENSE) | A time library | `aeson`, `cookie`, `dhall`, `directory`, `http-client`, `serialise`, `text-iso8601`, `time-compat`, `unix` |
+| `time-compat` | [`1.9.8`](http://hackage.haskell.org/package/time-compat-1.9.8) | [`BSD-3-Clause`](http://hackage.haskell.org/package/time-compat-1.9.8/src/LICENSE) | Compatibility package for time | `aeson`, `text-iso8601` |
+| `tls` | [`2.1.13`](http://hackage.haskell.org/package/tls-2.1.13) | [`BSD-3-Clause`](http://hackage.haskell.org/package/tls-2.1.13/src/LICENSE) | TLS protocol native implementation | `crypton-connection`, `http-client-tls` |
+| **`transformers`** | [`0.6.1.1`](http://hackage.haskell.org/package/transformers-0.6.1.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/transformers-0.6.1.1/src/LICENSE) | Concrete functor and monad transformers | `QuickCheck`, `StateVar`, `adjunctions`, `attoparsec`, `bifunctors`, `comonad`, `contravariant`, `crypton-x509`, `dhall`, `distributive`, `exceptions`, `free`, `haskeline`, `http-client`, `http-client-tls`, `indexed-traversable`, `invariant`, `kan-extensions`, `lens`, `megaparsec`, `microlens-mtl`, `mmorph`, `mtl`, `optparse-applicative`, `parsers`, `pretty-simple`, `primitive`, `profunctors`, `random`, `semialign`, `semigroupoids`, `streaming-commons`, `strict`, `tagged`, `temporary`, `th-lift-instances`, `tls`, `transformers-base`, `transformers-compat`, `witherable`, `yaya` |
+| `transformers-base` | [`0.4.6`](http://hackage.haskell.org/package/transformers-base-0.4.6) | [`BSD-3-Clause`](http://hackage.haskell.org/package/transformers-base-0.4.6/src/LICENSE) | Lift computations from the bottom of a transformer stack | `free` |
+| `transformers-compat` | [`0.7.2`](http://hackage.haskell.org/package/transformers-compat-0.7.2) | [`BSD-3-Clause`](http://hackage.haskell.org/package/transformers-compat-0.7.2/src/LICENSE) | A small compatibility shim for the transformers library | `adjunctions`, `comonad`, `invariant`, `lens`, `microlens-mtl`, `mmorph`, `semigroupoids`, `transformers-base` |
+| **`unix`** | [`2.8.5.1`](http://hackage.haskell.org/package/unix-2.8.5.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/unix-2.8.5.1/src/LICENSE) | POSIX functionality | `base-compat`, `crypton-x509-store`, `dhall`, `directory`, `haskeline`, `process`, `streaming-commons`, `temporary`, `unix-compat` |
+| `unix-compat` | [`0.7.4.1`](http://hackage.haskell.org/package/unix-compat-0.7.4.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/unix-compat-0.7.4.1/src/LICENSE) | Portable POSIX-compatibility layer. | `atomic-write`, `dhall` |
+| `unix-time` | [`0.4.17`](http://hackage.haskell.org/package/unix-time-0.4.17) | [`BSD-3-Clause`](http://hackage.haskell.org/package/unix-time-0.4.17/src/LICENSE) | Unix time parser/formatter and utilities | `tls` |
+| `unordered-containers` | [`0.2.20.1`](http://hackage.haskell.org/package/unordered-containers-0.2.20.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/unordered-containers-0.2.20.1/src/LICENSE) | Efficient hashing-based container types | `aeson`, `aeson-pretty`, `cborg-json`, `charset`, `dhall`, `indexed-traversable-instances`, `invariant`, `lens`, `parsers`, `semialign`, `semigroupoids`, `serialise`, `witherable` |
+| `uuid-types` | [`1.0.6`](http://hackage.haskell.org/package/uuid-types-1.0.6) | [`BSD-3-Clause`](http://hackage.haskell.org/package/uuid-types-1.0.6/src/LICENSE) | Type definitions for Universally Unique Identifiers | `aeson` |
+| `vector` | [`0.13.2.0`](http://hackage.haskell.org/package/vector-0.13.2.0) | [`BSD-3-Clause`](http://hackage.haskell.org/package/vector-0.13.2.0/src/LICENSE) | Efficient Arrays | `aeson`, `aeson-pretty`, `cborg-json`, `dhall`, `indexed-traversable-instances`, `lens`, `semialign`, `serialise`, `th-lift-instances`, `witherable` |
+| `vector-stream` | [`0.1.0.1`](http://hackage.haskell.org/package/vector-stream-0.1.0.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/vector-stream-0.1.0.1/src/LICENSE) | Efficient Streams | `vector` |
+| `void` | [`0.7.3`](http://hackage.haskell.org/package/void-0.7.3) | [`BSD-3-Clause`](http://hackage.haskell.org/package/void-0.7.3/src/LICENSE) | A Haskell 98 logically uninhabited data type | `adjunctions` |
+| `witherable` | [`0.5`](http://hackage.haskell.org/package/witherable-0.5) | [`BSD-3-Clause`](http://hackage.haskell.org/package/witherable-0.5/src/LICENSE) | filterable traversable | `aeson` |
+| `zlib` | [`0.7.1.1`](http://hackage.haskell.org/package/zlib-0.7.1.1) | [`BSD-3-Clause`](http://hackage.haskell.org/package/zlib-0.7.1.1/src/LICENSE) | Compression and decompression in the gzip and zlib formats | `streaming-commons`, `tls` |
+
diff --git a/haskell/src/Dada.hs b/haskell/src/Dada.hs
index 26a96ce..c6094f9 100644
--- a/haskell/src/Dada.hs
+++ b/haskell/src/Dada.hs
@@ -1,19 +1,30 @@
-{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE ScopedTypeVariables #-}
+{-# LANGUAGE Trustworthy #-}
{-# LANGUAGE TypeApplications #-}
-module Dada where
+module Dada
+ ( corecursive,
+ corecursiveAutoWith,
+ )
+where
-import Control.Arrow (Arrow ((&&&)))
-import Data.Either.Validation (Validation)
-import Data.Proxy (Proxy (Proxy))
-import Data.Void (Void)
-import qualified Dhall as D
-import qualified Dhall.Core as D
-import qualified Dhall.Map as D.Map
-import qualified Dhall.Src as D
-import qualified Yaya.Fold as Y
+import safe "base" Control.Applicative ((<*>))
+import safe "base" Control.Arrow ((&&&))
+import safe "base" Control.Category ((.))
+import safe "base" Data.Function (($))
+import safe "base" Data.Functor ((<$>))
+import safe "base" Data.Maybe (maybe)
+import safe "base" Data.Proxy (Proxy (Proxy))
+import safe "base" Data.Semigroup ((<>))
+import safe "base" Data.Traversable (sequenceA)
+import safe "base" Data.Tuple (uncurry)
+import safe "base" Data.Void (Void)
+import qualified "dhall" Dhall as D
+import qualified "dhall" Dhall.Core as D
+import qualified "dhall" Dhall.Map as D.Map
+import qualified "dhall" Dhall.Src as D
+import safe "either" Data.Either.Validation (Validation)
+import safe qualified "yaya" Yaya.Fold as Y
lookupField ::
D.Decoder a ->
@@ -42,16 +53,17 @@ corecursive ψ a =
<*> lookupField a "seed" fields
_ -> D.extractError "Could not decode a non-record value as `Nu`"
)
- ( D.Record . D.Map.fromList
+ ( D.Record
+ . D.Map.fromList
<$> sequenceA
[ ("coalgebra",) . D.makeRecordField <$> D.expected ψ,
("seed",) . D.makeRecordField <$> D.expected a
]
)
---- | An implementation of `autoWith` for any `Y.Corecursive` type.
+-- | An implementation of `autoWith` for any `Y.Corecursive` type.
--
--- TODO: Add `D.FromDhall` instances for various types included with Yaya.
+-- __TODO__: Add `D.FromDhall` instances for various types included with Yaya.
corecursiveAutoWith ::
forall t f a.
(Y.Corecursive (->) t f, D.FromDhall a, D.ToDhall a, D.FromDhall (f a)) =>
diff --git a/haskell/tests/doctests.hs b/haskell/tests/doctests.hs
index 9146e5c..00540fc 100644
--- a/haskell/tests/doctests.hs
+++ b/haskell/tests/doctests.hs
@@ -1,7 +1,12 @@
-module Main where
+{-# LANGUAGE Unsafe #-}
-import Build_doctests (flags, module_sources, pkgs)
-import Test.DocTest (doctest)
+module Main (main) where
+
+import safe "base" Data.Function (($))
+import safe "base" Data.Semigroup (Semigroup ((<>)))
+import safe "base" System.IO (IO)
+import "doctest" Test.DocTest (doctest)
+import "this" Build_doctests (flags, module_sources, pkgs)
main :: IO ()
-main = doctest (flags <> pkgs <> module_sources)
+main = doctest $ flags <> pkgs <> module_sources
diff --git a/nix-ci.nix b/nix-ci.nix
new file mode 100644
index 0000000..aed5be6
--- /dev/null
+++ b/nix-ci.nix
@@ -0,0 +1,2 @@
+# This file was generated by Project Manager.
+{ allow-import-from-derivation = true; auto-retry = true; build-logs = true; cachix = { name = "sellout"; public-key = "sellout.cachix.org-1:v37cTpWBEycnYxSPAgSQ57Wiqd3wjljni2aC0Xry1DE="; }; deploy = { }; doNotBuild = [ "devShells.x86_64-linux.lax-checks" ]; enable = true; fail-fast = false; impure = false; onlyBuild = [ "checks.x86_64-linux.*" "devShells.x86_64-linux.default" "packages.x86_64-linux.default" "devShells.x86_64-linux.ghc984" "packages.x86_64-linux.ghc984_all" "devShells.x86_64-linux.ghc963" "packages.x86_64-linux.ghc963_all" "devShells.x86_64-linux.ghc981" "packages.x86_64-linux.ghc981_all" "devShells.x86_64-linux.ghc9101" "packages.x86_64-linux.ghc9101_all" ]; test = { }; }
diff --git a/renovate.json b/renovate.json
deleted file mode 100644
index b279c48..0000000
--- a/renovate.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "$schema": "https://docs.renovatebot.com/renovate-schema.json",
- "extends": ["config:base"],
- "nix": {
- "enabled": true
- }
-}