├── .gitignore ├── .travis.yml ├── README.md ├── applicative.nix ├── bool.nix ├── default.nix ├── fixpoints.nix ├── flake.nix ├── function.nix ├── functor.nix ├── list.nix ├── monad.nix ├── monoid.nix ├── nonempty.nix ├── nullable.nix ├── num.nix ├── optional.nix ├── path.nix ├── regex.nix ├── semigroup.nix ├── serde.nix ├── set.nix ├── string.nix ├── test ├── default.nix ├── framework.nix └── sections │ ├── bits.nix │ ├── bool.nix │ ├── default.nix │ ├── fixpoints.nix │ ├── function.nix │ ├── list.nix │ ├── nonempty.nix │ ├── num.nix │ ├── optional.nix │ ├── path.nix │ ├── regex.nix │ ├── serde.nix │ ├── set.nix │ └── string.nix ├── tuple.nix ├── types.nix └── version.nix /.gitignore: -------------------------------------------------------------------------------- 1 | result* 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/README.md -------------------------------------------------------------------------------- /applicative.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/applicative.nix -------------------------------------------------------------------------------- /bool.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/bool.nix -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/default.nix -------------------------------------------------------------------------------- /fixpoints.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/fixpoints.nix -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/flake.nix -------------------------------------------------------------------------------- /function.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/function.nix -------------------------------------------------------------------------------- /functor.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/functor.nix -------------------------------------------------------------------------------- /list.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/list.nix -------------------------------------------------------------------------------- /monad.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/monad.nix -------------------------------------------------------------------------------- /monoid.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/monoid.nix -------------------------------------------------------------------------------- /nonempty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/nonempty.nix -------------------------------------------------------------------------------- /nullable.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/nullable.nix -------------------------------------------------------------------------------- /num.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/num.nix -------------------------------------------------------------------------------- /optional.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/optional.nix -------------------------------------------------------------------------------- /path.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/path.nix -------------------------------------------------------------------------------- /regex.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/regex.nix -------------------------------------------------------------------------------- /semigroup.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/semigroup.nix -------------------------------------------------------------------------------- /serde.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/serde.nix -------------------------------------------------------------------------------- /set.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/set.nix -------------------------------------------------------------------------------- /string.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/string.nix -------------------------------------------------------------------------------- /test/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/default.nix -------------------------------------------------------------------------------- /test/framework.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/framework.nix -------------------------------------------------------------------------------- /test/sections/bits.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/bits.nix -------------------------------------------------------------------------------- /test/sections/bool.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/bool.nix -------------------------------------------------------------------------------- /test/sections/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/default.nix -------------------------------------------------------------------------------- /test/sections/fixpoints.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/fixpoints.nix -------------------------------------------------------------------------------- /test/sections/function.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/function.nix -------------------------------------------------------------------------------- /test/sections/list.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/list.nix -------------------------------------------------------------------------------- /test/sections/nonempty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/nonempty.nix -------------------------------------------------------------------------------- /test/sections/num.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/num.nix -------------------------------------------------------------------------------- /test/sections/optional.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/optional.nix -------------------------------------------------------------------------------- /test/sections/path.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/path.nix -------------------------------------------------------------------------------- /test/sections/regex.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/regex.nix -------------------------------------------------------------------------------- /test/sections/serde.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/serde.nix -------------------------------------------------------------------------------- /test/sections/set.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/set.nix -------------------------------------------------------------------------------- /test/sections/string.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/test/sections/string.nix -------------------------------------------------------------------------------- /tuple.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/tuple.nix -------------------------------------------------------------------------------- /types.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/types.nix -------------------------------------------------------------------------------- /version.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chessai/nix-std/HEAD/version.nix --------------------------------------------------------------------------------