├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── ISOLATED_BUILDS.md ├── LICENSE.md ├── README.md ├── UPGRADING.md ├── dist └── yarn-plugin-nixify.js ├── package.json ├── src ├── FetchCommand.ts ├── InjectBuildCommand.ts ├── InstallBinCommand.ts ├── generate.ts ├── index.ts ├── narUtils.ts ├── nixUtils.ts ├── textUtils.ts ├── tmpl │ ├── bin-wrapper-node-modules.sh.in │ ├── bin-wrapper-pnp.sh.in │ ├── default.nix.in │ └── yarn-project.nix.in └── types.d.ts ├── tsconfig.json └── yarn.lock /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.yarn 2 | /.pnp.* 3 | 4 | /dist/yarn-plugin-nixify.dev.js 5 | -------------------------------------------------------------------------------- /ISOLATED_BUILDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/ISOLATED_BUILDS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /dist/yarn-plugin-nixify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/dist/yarn-plugin-nixify.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/package.json -------------------------------------------------------------------------------- /src/FetchCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/FetchCommand.ts -------------------------------------------------------------------------------- /src/InjectBuildCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/InjectBuildCommand.ts -------------------------------------------------------------------------------- /src/InstallBinCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/InstallBinCommand.ts -------------------------------------------------------------------------------- /src/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/generate.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/narUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/narUtils.ts -------------------------------------------------------------------------------- /src/nixUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/nixUtils.ts -------------------------------------------------------------------------------- /src/textUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/textUtils.ts -------------------------------------------------------------------------------- /src/tmpl/bin-wrapper-node-modules.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/tmpl/bin-wrapper-node-modules.sh.in -------------------------------------------------------------------------------- /src/tmpl/bin-wrapper-pnp.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/tmpl/bin-wrapper-pnp.sh.in -------------------------------------------------------------------------------- /src/tmpl/default.nix.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/tmpl/default.nix.in -------------------------------------------------------------------------------- /src/tmpl/yarn-project.nix.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/tmpl/yarn-project.nix.in -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/HEAD/yarn.lock --------------------------------------------------------------------------------