├── .github ├── FUNDING.yaml └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE ├── default.nix ├── docs ├── .envrc ├── .gitignore ├── .vitepress │ └── config.js ├── api.md ├── cookbook.md ├── default.nix ├── index.md ├── package-lock.json ├── package.json ├── package.nix ├── public │ └── wrapper.svg ├── readme.md ├── shell.nix └── wm.data.js ├── flake.lock ├── flake.nix ├── modules ├── common-wrapper.nix ├── env-type.nix ├── many-wrappers.nix ├── wrapper-impl.nix └── wrapper.nix └── tests ├── multi.nix └── standalone.nix /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: [viperML] 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *result* 2 | .direnv 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/default.nix -------------------------------------------------------------------------------- /docs/.envrc: -------------------------------------------------------------------------------- 1 | use nix -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | cache 3 | -------------------------------------------------------------------------------- /docs/.vitepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/.vitepress/config.js -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/cookbook.md -------------------------------------------------------------------------------- /docs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/default.nix -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/package.nix -------------------------------------------------------------------------------- /docs/public/wrapper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/public/wrapper.svg -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/shell.nix -------------------------------------------------------------------------------- /docs/wm.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/docs/wm.data.js -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- 1 | { 2 | outputs = _: import ./.; 3 | } 4 | -------------------------------------------------------------------------------- /modules/common-wrapper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/modules/common-wrapper.nix -------------------------------------------------------------------------------- /modules/env-type.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/modules/env-type.nix -------------------------------------------------------------------------------- /modules/many-wrappers.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/modules/many-wrappers.nix -------------------------------------------------------------------------------- /modules/wrapper-impl.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/modules/wrapper-impl.nix -------------------------------------------------------------------------------- /modules/wrapper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/modules/wrapper.nix -------------------------------------------------------------------------------- /tests/multi.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/tests/multi.nix -------------------------------------------------------------------------------- /tests/standalone.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperML/wrapper-manager/HEAD/tests/standalone.nix --------------------------------------------------------------------------------