├── .envrc ├── .github ├── dependabot.yml └── workflows │ ├── flake-update.yml │ └── pages.yml ├── .gitignore ├── .mergify.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── aliases └── WIP-python-pdm.nix ├── default.nix ├── dev-flake ├── default.nix ├── flake-compat.nix ├── flake.lock └── flake.nix ├── docs ├── README.md ├── hooks │ └── render_options.py ├── mkdocs.yml ├── src │ ├── .nav.yml │ ├── development-roundups │ │ ├── 2022-april-june.md │ │ ├── 2022-april-problems-of-nixos-module-system.md │ │ └── 2022-july-september.md │ ├── docs.md │ ├── favicon.png │ ├── guides │ │ ├── .nav.yml │ │ ├── getting-started.md │ │ └── pip.md │ ├── index.md │ ├── modules.md │ ├── overrides.md │ ├── style.css │ └── v1-api │ │ ├── .nav.yml │ │ ├── consuming │ │ ├── inspect-options.md │ │ └── override.md │ │ ├── integrating │ │ ├── integrate-lang2nix-impure.md │ │ └── integrate-lang2nix-pure.md │ │ ├── packaging │ │ ├── monorepo.md │ │ ├── nodejs-init-project.md │ │ ├── nodejs-multiple-repos.md │ │ └── nodejs-workspaces.md │ │ ├── problems.md │ │ ├── summary.md │ │ └── users.md └── theme │ ├── partials │ └── toc-item.html │ ├── reference_header.html │ └── reference_options.html ├── examples ├── packages │ ├── README.md │ ├── basics │ │ ├── derivation │ │ │ ├── default.nix │ │ │ └── flake.nix │ │ ├── htop-with-flags │ │ │ ├── default.nix │ │ │ └── flake.nix │ │ └── mkDerivation │ │ │ ├── default.nix │ │ │ └── flake.nix │ └── languages │ │ ├── haskell-local-development-cabal │ │ ├── .gitignore │ │ ├── app │ │ │ └── Main.hs │ │ ├── default.nix │ │ ├── flake.nix │ │ ├── lock.json │ │ └── my-test-project.cabal │ │ ├── nodejs-local-development-nextjs │ │ ├── README.md │ │ ├── default.nix │ │ ├── flake.lock │ │ ├── flake.nix │ │ └── nextjs-app │ │ │ ├── .eslintrc.json │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── next.config.mjs │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ ├── public │ │ │ ├── next.svg │ │ │ └── vercel.svg │ │ │ ├── src │ │ │ └── app │ │ │ │ ├── favicon.ico │ │ │ │ ├── globals.css │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ ├── tailwind.config.ts │ │ │ └── tsconfig.json │ │ ├── nodejs-local-development-no-lock-file │ │ ├── app.ts │ │ ├── default.nix │ │ ├── flake.nix │ │ ├── lock.json │ │ └── package.json │ │ ├── nodejs-packaging-devshell-only │ │ ├── default.nix │ │ └── flake.nix │ │ ├── nodejs-packaging │ │ ├── default.nix │ │ └── flake.nix │ │ ├── php-packaging │ │ ├── default.nix │ │ └── flake.nix │ │ ├── python-local-development-machine-learning │ │ ├── default.nix │ │ ├── flake.nix │ │ ├── lock.aarch64-darwin.json │ │ ├── lock.x86_64-linux.json │ │ ├── pyproject.toml │ │ └── someproject │ │ │ └── __index__.py │ │ ├── python-local-development-multiple-packages │ │ ├── default.nix │ │ ├── flake.nix │ │ ├── lock.aarch64-darwin.json │ │ ├── lock.x86_64-linux.json │ │ ├── subpkg1 │ │ │ ├── pyproject.toml │ │ │ └── subpkg1.py │ │ └── subpkg2 │ │ │ ├── pyproject.toml │ │ │ └── subpkg2.py │ │ ├── python-local-development-pdm-pytorch-from-nixpkgs │ │ ├── .gitignore │ │ ├── default.nix │ │ ├── flake.nix │ │ ├── my_tool │ │ │ └── __init__.py │ │ ├── pdm.lock │ │ └── pyproject.toml │ │ ├── python-local-development-pdm │ │ ├── default.nix │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── my_tool │ │ │ └── __init__.py │ │ ├── pdm.lock │ │ └── pyproject.toml │ │ ├── python-local-development │ │ ├── default.nix │ │ ├── flake.nix │ │ ├── lock.aarch64-darwin.json │ │ ├── lock.x86_64-linux.json │ │ ├── pyproject.toml │ │ └── src │ │ │ └── my_tool │ │ │ └── __init__.py │ │ ├── python-packaging-ansible │ │ ├── default.nix │ │ ├── flake.nix │ │ ├── lock.aarch64-darwin.json │ │ └── lock.x86_64-linux.json │ │ ├── python-packaging-apache-airflow │ │ ├── default.nix │ │ ├── flake.nix │ │ ├── lock.aarch64-darwin.json │ │ └── lock.x86_64-linux.json │ │ ├── python-packaging-odoo │ │ ├── default.nix │ │ ├── flake.nix │ │ ├── lock.aarch64-darwin.json │ │ └── lock.x86_64-linux.json │ │ ├── python-packaging-pillow │ │ ├── default.nix │ │ ├── flake.nix │ │ ├── lock.aarch64-darwin.json │ │ └── lock.x86_64-linux.json │ │ ├── rust-local-development-workspace │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── app │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── default.nix │ │ └── flake.nix │ │ ├── rust-packaging-buildRustPackage │ │ ├── default.nix │ │ └── flake.nix │ │ ├── rust-packaging │ │ ├── default.nix │ │ └── flake.nix │ │ └── spago-local-development │ │ ├── .gitignore │ │ ├── default.nix │ │ ├── flake.nix │ │ ├── lock.json │ │ ├── spago.yaml │ │ ├── src │ │ └── Main.purs │ │ └── test │ │ └── Test │ │ └── Main.purs ├── repo-with-packages-flake │ ├── flake.nix │ └── packages │ │ └── hello │ │ └── default.nix └── repo-with-packages │ ├── .project-root │ ├── default.nix │ └── packages │ └── hello │ └── default.nix ├── flake.lock ├── flake.nix ├── lib ├── default.nix ├── internal │ ├── dreamLockUtils.nix │ ├── fetchDreamLockSources.nix │ ├── fetchers │ │ ├── archive │ │ │ └── default.nix │ │ ├── crates-io │ │ │ └── default.nix │ │ ├── extractSource.nix │ │ ├── git │ │ │ └── default.nix │ │ ├── github │ │ │ └── default.nix │ │ ├── gitlab │ │ │ └── default.nix │ │ ├── http │ │ │ └── default.nix │ │ ├── npm │ │ │ └── default.nix │ │ ├── path │ │ │ └── default.nix │ │ ├── pypi-sdist │ │ │ └── default.nix │ │ └── pypi-wheel │ │ │ └── default.nix │ ├── findCycles.nix │ ├── getDreamLockSource.nix │ ├── graphUtils.nix │ ├── hashFile.nix │ ├── hashPath.nix │ ├── mkSubmodule.nix │ ├── nodejsLockUtils.nix │ ├── nodejsUtils.nix │ ├── parseSpdxId.nix │ ├── php-semver.nix │ ├── prepareSourceTree.nix │ ├── readDreamLock.nix │ ├── sanitizePath.nix │ ├── sanitizeRelativePath.nix │ ├── simpleTranslate.nix │ ├── simpleTranslate2.nix │ └── toTOML.nix └── types │ └── default.nix ├── misc ├── benchmarks │ ├── benchmark.sh │ ├── builtins-derivation-modules-vs-pkg-func.nix │ └── mkDerivation-modules-vs-pkg-func.nix └── drafts │ └── repo-flake-groups │ └── flake.nix ├── modules ├── dream2nix │ ├── WIP-groups │ │ ├── README.md │ │ ├── default.nix │ │ ├── group.nix │ │ ├── groups-option.nix │ │ ├── interface.nix │ │ └── submoduleWithNameVersion.nix │ ├── WIP-haskell-cabal │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ └── lock.py │ ├── WIP-nodejs-builder-v3 │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ ├── modules │ │ │ ├── dist.nix │ │ │ ├── installed.nix │ │ │ ├── prepared-dev.nix │ │ │ └── prepared-prod.nix │ │ ├── scripts │ │ │ ├── build-node-modules.mjs │ │ │ └── install-trusted-modules.mjs │ │ ├── tests │ │ │ └── packages │ │ │ │ ├── nodejs-nextjs │ │ │ │ ├── README.md │ │ │ │ ├── default.nix │ │ │ │ ├── flake.lock │ │ │ │ ├── flake.nix │ │ │ │ └── nextjs-app │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── next.config.mjs │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ ├── postcss.config.js │ │ │ │ │ ├── public │ │ │ │ │ ├── next.svg │ │ │ │ │ └── vercel.svg │ │ │ │ │ ├── src │ │ │ │ │ └── app │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── globals.css │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── tailwind.config.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── nodejs-packaging-package-lock-v1 │ │ │ │ ├── default.nix │ │ │ │ └── flake.nix │ │ │ │ └── nodejs-packaging-package-lock │ │ │ │ ├── default.nix │ │ │ │ └── flake.nix │ │ ├── types.nix │ │ └── utils.nix │ ├── WIP-python-pyproject │ │ ├── README.md │ │ └── default.nix │ ├── WIP-spago │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ └── lock.py │ ├── _template │ │ ├── default.nix │ │ └── interface.nix │ ├── buildPythonPackage-mixin │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ └── tests │ │ │ └── packages │ │ │ └── basic │ │ │ └── default.nix │ ├── buildPythonPackage │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ ├── options.nix │ │ └── tests │ │ │ └── packages │ │ │ └── basic │ │ │ └── default.nix │ ├── buildRustPackage │ │ ├── README.md │ │ ├── default.nix │ │ └── interface.nix │ ├── builtins-derivation │ │ ├── README.md │ │ ├── default.nix │ │ ├── derivation-common │ │ │ └── options.nix │ │ └── interface.nix │ ├── core │ │ ├── README.md │ │ ├── assertions.nix │ │ ├── default.nix │ │ ├── deps │ │ │ └── default.nix │ │ ├── docs │ │ │ ├── book.toml │ │ │ ├── default.nix │ │ │ ├── options.xsl │ │ │ ├── src │ │ │ │ ├── SUMMARY.md │ │ │ │ └── highlight.js │ │ │ └── theme │ │ │ │ └── favicon.png │ │ ├── env │ │ │ └── default.nix │ │ ├── eval-cache │ │ │ ├── default.nix │ │ │ └── interface.nix │ │ ├── flags │ │ │ ├── default.nix │ │ │ └── interface.nix │ │ ├── lock │ │ │ ├── default.nix │ │ │ └── interface.nix │ │ ├── paths │ │ │ ├── default.nix │ │ │ ├── find-root.py │ │ │ └── interface.nix │ │ ├── public │ │ │ ├── default.nix │ │ │ ├── interface.nix │ │ │ ├── optsPackage.nix │ │ │ ├── optsPackageCompat.nix │ │ │ └── optsPackageDrvParts.nix │ │ ├── tests │ │ │ └── packages │ │ │ │ └── nixpkgs │ │ │ │ └── default.nix │ │ └── ui │ │ │ ├── default.nix │ │ │ └── interface.nix │ ├── mkDerivation-mixin │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ └── tests │ │ │ └── packages │ │ │ └── basic │ │ │ └── default.nix │ ├── mkDerivation │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ ├── options.nix │ │ └── tests │ │ │ └── packages │ │ │ └── basic │ │ │ └── default.nix │ ├── multi-derivation-package │ │ ├── README.md │ │ ├── default.nix │ │ └── interface.nix │ ├── nixpkgs-overrides │ │ ├── README.md │ │ ├── default.nix │ │ └── interface.nix │ ├── nodejs-devshell-v3 │ │ ├── README.md │ │ ├── default.nix │ │ └── interface.nix │ ├── nodejs-devshell │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ └── tests │ │ │ └── packages │ │ │ └── basic │ │ │ ├── default.nix │ │ │ ├── package-lock.json │ │ │ └── package.json │ ├── nodejs-granular-v3 │ │ ├── README.md │ │ ├── buildPhase.nix │ │ ├── configurePhase.nix │ │ ├── default.nix │ │ ├── devShell.nix │ │ ├── fix-package.py │ │ ├── install-deps.py │ │ ├── installPhase.nix │ │ ├── interface.nix │ │ ├── link-bins.py │ │ └── unpackPhase.nix │ ├── nodejs-granular │ │ ├── README.md │ │ ├── buildPhase.nix │ │ ├── configurePhase.nix │ │ ├── default.nix │ │ ├── devShell.nix │ │ ├── fix-package.py │ │ ├── install-deps.py │ │ ├── installPhase.nix │ │ ├── interface.nix │ │ ├── link-bins.py │ │ └── unpackPhase.nix │ ├── nodejs-node-modules-v3 │ │ ├── README.md │ │ └── default.nix │ ├── nodejs-node-modules │ │ ├── README.md │ │ ├── default.nix │ │ └── tests │ │ │ └── packages │ │ │ ├── basic │ │ │ ├── default.nix │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ │ └── nodejs-packaging-node-modules-only │ │ │ ├── default.nix │ │ │ └── flake.nix │ ├── nodejs-package-json-v3 │ │ ├── README.md │ │ ├── default.nix │ │ └── interface.nix │ ├── nodejs-package-json │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ └── tests │ │ │ └── packages │ │ │ └── basic │ │ │ ├── app.ts │ │ │ ├── default.nix │ │ │ ├── lock.json │ │ │ └── package.json │ ├── nodejs-package-lock-v3 │ │ ├── README.md │ │ ├── default.nix │ │ └── interface.nix │ ├── nodejs-package-lock │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ └── translate.nix │ ├── overrides │ │ ├── README.md │ │ ├── default.nix │ │ └── interface.nix │ ├── package-func │ │ ├── README.md │ │ ├── default.nix │ │ └── interface.nix │ ├── php-composer-lock │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ └── translate.nix │ ├── php-granular │ │ ├── README.md │ │ ├── default.nix │ │ ├── devShell.nix │ │ └── interface.nix │ ├── pip │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ ├── pip-hotfixes │ │ │ ├── default.nix │ │ │ └── interface.nix │ │ └── tests │ │ │ └── packages │ │ │ ├── can-build-setuptools │ │ │ ├── default.nix │ │ │ ├── flake.nix │ │ │ ├── lock.x86_64-linux.json │ │ │ ├── my_tool │ │ │ │ └── __init__.py │ │ │ └── pyproject.toml │ │ │ ├── can-handle-setuptools-runtime-dep │ │ │ ├── default.nix │ │ │ ├── flake.nix │ │ │ ├── lock.x86_64-linux.json │ │ │ ├── my_tool │ │ │ │ └── __init__.py │ │ │ └── pyproject.toml │ │ │ ├── lock-script-works │ │ │ ├── default.nix │ │ │ ├── my_tool │ │ │ │ └── __init__.py │ │ │ └── pyproject.toml │ │ │ └── python-nodejs │ │ │ ├── default.nix │ │ │ ├── flake.nix │ │ │ └── lock.x86_64-linux.json │ ├── python-editables │ │ ├── default.nix │ │ ├── editable.nix │ │ ├── editable.py │ │ └── interface.nix │ ├── python-pdm │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface-dependency.nix │ │ ├── interface.nix │ │ ├── lib.nix │ │ ├── lock.nix │ │ ├── sourceSelectorOption.nix │ │ └── tests │ │ │ └── packages │ │ │ ├── jupyter-lab │ │ │ ├── .gitignore │ │ │ ├── default.nix │ │ │ ├── flake.lock │ │ │ ├── flake.nix │ │ │ ├── pdm.lock │ │ │ └── pyproject.toml │ │ │ └── python-local-development │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── default.nix │ │ │ ├── flake.nix │ │ │ ├── my_project │ │ │ └── __init__.py │ │ │ ├── pdm.lock │ │ │ └── pyproject.toml │ ├── rust-cargo-lock │ │ ├── README.md │ │ ├── cargoLock.nix │ │ ├── default.nix │ │ ├── findAllCrates.nix │ │ ├── interface.nix │ │ └── translate.nix │ ├── rust-cargo-vendor │ │ ├── README.md │ │ ├── default.nix │ │ ├── interface.nix │ │ ├── patch-workspace.jq │ │ └── vendor.nix │ └── rust-crane │ │ ├── README.md │ │ ├── default.nix │ │ ├── devshell.nix │ │ └── interface.nix ├── flake-parts │ ├── _template.nix │ ├── all-modules.nix │ ├── apps.update-caches.nix │ ├── apps.update-locks.nix │ ├── checks.nix │ ├── checks.nix-unit.nix │ ├── core-modules.nix │ ├── devShells.nix │ ├── drv-parts-deprecated.nix │ ├── examples.nix │ ├── formatter.nix │ ├── overrides.nix │ ├── pre-commit-check.nix │ ├── pythonEnv │ │ ├── default.nix │ │ └── flake-template.nix │ ├── reference-website │ │ ├── default.nix │ │ └── frontmatter.nix │ ├── website-options.nix │ └── writers.nix └── flake.lock ├── overrides ├── python │ ├── _template │ │ └── default.nix │ ├── certifi │ │ └── default.nix │ ├── nvidia-cublas-cu12 │ │ ├── default.nix │ │ └── remove-nvidia-init.nix │ ├── nvidia-cuda-cupti-cu12 │ │ └── default.nix │ ├── nvidia-cuda-nvrtc-cu12 │ │ └── default.nix │ ├── nvidia-cuda-runtime-cu12 │ │ └── default.nix │ ├── nvidia-cudnn-cu12 │ │ └── default.nix │ ├── nvidia-cufft-cu12 │ │ └── default.nix │ ├── nvidia-curand-cu12 │ │ └── default.nix │ ├── nvidia-cusolver-cu12 │ │ └── default.nix │ ├── nvidia-cusparse-cu12 │ │ └── default.nix │ ├── nvidia-nccl-cu12 │ │ └── default.nix │ ├── nvidia-nvjitlink-cu12 │ │ └── default.nix │ ├── opencv-python │ │ └── default.nix │ ├── pillow │ │ └── default.nix │ ├── psycopg2 │ │ └── default.nix │ ├── reuse │ │ └── default.nix │ ├── torch │ │ └── default.nix │ └── triton │ │ └── default.nix └── rust │ └── jack-sys │ └── default.nix ├── pkgs ├── fetchPipMetadata │ ├── flake-module.nix │ ├── package.nix │ ├── script.nix │ └── src │ │ ├── .envrc │ │ ├── fetch_pip_metadata │ │ ├── __init__.py │ │ └── lock_file_from_report.py │ │ ├── pyproject.toml │ │ └── tests │ │ ├── conftest.py │ │ ├── test_evaluate_extras.py │ │ ├── test_evaluate_requirements.py │ │ ├── test_lock_entry_from_report_entry.py │ │ ├── test_lock_file_from_report.py │ │ ├── test_lock_info_from_fod.py │ │ ├── test_lock_info_from_path.py │ │ └── test_path_from_file_url.py └── writers │ └── default.nix ├── scripts ├── flake.nix ├── update-aarch64-locks.sh └── update-examples.sh ├── shell.nix ├── tests └── nix-unit │ ├── fixtures.nix │ ├── test_findCycles │ └── default.nix │ ├── test_graph_utils │ ├── default.nix │ ├── fileSystem.nix │ └── sanitizeGraph.nix │ ├── test_groups │ └── default.nix │ ├── test_groups_multi_derivation_package │ └── default.nix │ ├── test_nodejs_lock_v3 │ ├── default.nix │ ├── lib │ │ └── package.json │ ├── multiple-versions-lock.json │ └── package-lock.json │ ├── test_nodejs_lockutils │ ├── default.nix │ └── package-lock.json │ ├── test_nodejs_node_builder_v3 │ ├── default.nix │ ├── lib │ │ └── package.json │ ├── multiple-versions-lock.json │ ├── package-lock.json │ └── package.json │ ├── test_paths │ └── default.nix │ ├── test_pip_pyproject │ └── default.nix │ ├── test_python-pdm-lib │ ├── default.nix │ ├── environ.json │ └── fixtures │ │ ├── pdm-example1.lock │ │ ├── pdm-extras.lock │ │ ├── pdm-with-cycles.lock │ │ └── pyproject.toml │ └── test_python-pdm │ └── default.nix └── treefmt.toml /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/.envrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/flake-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/.github/workflows/flake-update.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/.mergify.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/README.md -------------------------------------------------------------------------------- /aliases/WIP-python-pdm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/aliases/WIP-python-pdm.nix -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/default.nix -------------------------------------------------------------------------------- /dev-flake/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/dev-flake/default.nix -------------------------------------------------------------------------------- /dev-flake/flake-compat.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/dev-flake/flake-compat.nix -------------------------------------------------------------------------------- /dev-flake/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/dev-flake/flake.lock -------------------------------------------------------------------------------- /dev-flake/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/dev-flake/flake.nix -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/hooks/render_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/hooks/render_options.py -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/src/.nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/.nav.yml -------------------------------------------------------------------------------- /docs/src/development-roundups/2022-april-june.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/development-roundups/2022-april-june.md -------------------------------------------------------------------------------- /docs/src/development-roundups/2022-april-problems-of-nixos-module-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/development-roundups/2022-april-problems-of-nixos-module-system.md -------------------------------------------------------------------------------- /docs/src/development-roundups/2022-july-september.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/development-roundups/2022-july-september.md -------------------------------------------------------------------------------- /docs/src/docs.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /docs/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/favicon.png -------------------------------------------------------------------------------- /docs/src/guides/.nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/guides/.nav.yml -------------------------------------------------------------------------------- /docs/src/guides/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/guides/getting-started.md -------------------------------------------------------------------------------- /docs/src/guides/pip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/guides/pip.md -------------------------------------------------------------------------------- /docs/src/index.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /docs/src/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/modules.md -------------------------------------------------------------------------------- /docs/src/overrides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/overrides.md -------------------------------------------------------------------------------- /docs/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/style.css -------------------------------------------------------------------------------- /docs/src/v1-api/.nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/.nav.yml -------------------------------------------------------------------------------- /docs/src/v1-api/consuming/inspect-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/consuming/inspect-options.md -------------------------------------------------------------------------------- /docs/src/v1-api/consuming/override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/consuming/override.md -------------------------------------------------------------------------------- /docs/src/v1-api/integrating/integrate-lang2nix-impure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/integrating/integrate-lang2nix-impure.md -------------------------------------------------------------------------------- /docs/src/v1-api/integrating/integrate-lang2nix-pure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/integrating/integrate-lang2nix-pure.md -------------------------------------------------------------------------------- /docs/src/v1-api/packaging/monorepo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/packaging/monorepo.md -------------------------------------------------------------------------------- /docs/src/v1-api/packaging/nodejs-init-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/packaging/nodejs-init-project.md -------------------------------------------------------------------------------- /docs/src/v1-api/packaging/nodejs-multiple-repos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/packaging/nodejs-multiple-repos.md -------------------------------------------------------------------------------- /docs/src/v1-api/packaging/nodejs-workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/packaging/nodejs-workspaces.md -------------------------------------------------------------------------------- /docs/src/v1-api/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/problems.md -------------------------------------------------------------------------------- /docs/src/v1-api/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/summary.md -------------------------------------------------------------------------------- /docs/src/v1-api/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/src/v1-api/users.md -------------------------------------------------------------------------------- /docs/theme/partials/toc-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/theme/partials/toc-item.html -------------------------------------------------------------------------------- /docs/theme/reference_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/theme/reference_header.html -------------------------------------------------------------------------------- /docs/theme/reference_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/docs/theme/reference_options.html -------------------------------------------------------------------------------- /examples/packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/README.md -------------------------------------------------------------------------------- /examples/packages/basics/derivation/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/basics/derivation/default.nix -------------------------------------------------------------------------------- /examples/packages/basics/derivation/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/basics/derivation/flake.nix -------------------------------------------------------------------------------- /examples/packages/basics/htop-with-flags/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/basics/htop-with-flags/default.nix -------------------------------------------------------------------------------- /examples/packages/basics/htop-with-flags/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/basics/htop-with-flags/flake.nix -------------------------------------------------------------------------------- /examples/packages/basics/mkDerivation/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/basics/mkDerivation/default.nix -------------------------------------------------------------------------------- /examples/packages/basics/mkDerivation/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/basics/mkDerivation/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/haskell-local-development-cabal/.gitignore: -------------------------------------------------------------------------------- 1 | dist-newstyle 2 | -------------------------------------------------------------------------------- /examples/packages/languages/haskell-local-development-cabal/app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/haskell-local-development-cabal/app/Main.hs -------------------------------------------------------------------------------- /examples/packages/languages/haskell-local-development-cabal/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/haskell-local-development-cabal/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/haskell-local-development-cabal/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/haskell-local-development-cabal/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/haskell-local-development-cabal/lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/haskell-local-development-cabal/lock.json -------------------------------------------------------------------------------- /examples/packages/languages/haskell-local-development-cabal/my-test-project.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/haskell-local-development-cabal/my-test-project.cabal -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/README.md -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/flake.lock -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/.gitignore -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/README.md -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/next.config.mjs -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/package-lock.json -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/package.json -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/postcss.config.js -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/public/next.svg -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/public/vercel.svg -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/src/app/favicon.ico -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/src/app/globals.css -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/src/app/layout.tsx -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/src/app/page.tsx -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/tailwind.config.ts -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-nextjs/nextjs-app/tsconfig.json -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-no-lock-file/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-no-lock-file/app.ts -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-no-lock-file/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-no-lock-file/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-no-lock-file/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-no-lock-file/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-no-lock-file/lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-no-lock-file/lock.json -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-local-development-no-lock-file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-local-development-no-lock-file/package.json -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-packaging-devshell-only/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-packaging-devshell-only/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-packaging-devshell-only/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-packaging-devshell-only/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-packaging/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-packaging/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/nodejs-packaging/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/nodejs-packaging/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/php-packaging/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/php-packaging/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/php-packaging/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/php-packaging/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-machine-learning/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-machine-learning/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-machine-learning/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-machine-learning/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-machine-learning/lock.aarch64-darwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-machine-learning/lock.aarch64-darwin.json -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-machine-learning/lock.x86_64-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-machine-learning/lock.x86_64-linux.json -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-machine-learning/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-machine-learning/pyproject.toml -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-machine-learning/someproject/__index__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-machine-learning/someproject/__index__.py -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-multiple-packages/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-multiple-packages/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-multiple-packages/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-multiple-packages/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-multiple-packages/lock.aarch64-darwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-multiple-packages/lock.aarch64-darwin.json -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-multiple-packages/lock.x86_64-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-multiple-packages/lock.x86_64-linux.json -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-multiple-packages/subpkg1/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-multiple-packages/subpkg1/pyproject.toml -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-multiple-packages/subpkg1/subpkg1.py: -------------------------------------------------------------------------------- 1 | from subpkg2 import where 2 | -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-multiple-packages/subpkg2/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-multiple-packages/subpkg2/pyproject.toml -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-multiple-packages/subpkg2/subpkg2.py: -------------------------------------------------------------------------------- 1 | def where(): 2 | print(__name__) 3 | -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm-pytorch-from-nixpkgs/.gitignore: -------------------------------------------------------------------------------- 1 | .pdm-python 2 | -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm-pytorch-from-nixpkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-pdm-pytorch-from-nixpkgs/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm-pytorch-from-nixpkgs/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-pdm-pytorch-from-nixpkgs/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm-pytorch-from-nixpkgs/my_tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-pdm-pytorch-from-nixpkgs/my_tool/__init__.py -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm-pytorch-from-nixpkgs/pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-pdm-pytorch-from-nixpkgs/pdm.lock -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm-pytorch-from-nixpkgs/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-pdm-pytorch-from-nixpkgs/pyproject.toml -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-pdm/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-pdm/flake.lock -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-pdm/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm/my_tool/__init__.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | 4 | def main(): 5 | print("Hello World!") 6 | -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm/pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-pdm/pdm.lock -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development-pdm/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development-pdm/pyproject.toml -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development/lock.aarch64-darwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development/lock.aarch64-darwin.json -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development/lock.x86_64-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development/lock.x86_64-linux.json -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-local-development/pyproject.toml -------------------------------------------------------------------------------- /examples/packages/languages/python-local-development/src/my_tool/__init__.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | 4 | def main(): 5 | print("Hello World!") 6 | -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-ansible/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-ansible/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-ansible/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-ansible/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-ansible/lock.aarch64-darwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-ansible/lock.aarch64-darwin.json -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-ansible/lock.x86_64-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-ansible/lock.x86_64-linux.json -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-apache-airflow/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-apache-airflow/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-apache-airflow/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-apache-airflow/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-apache-airflow/lock.aarch64-darwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-apache-airflow/lock.aarch64-darwin.json -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-apache-airflow/lock.x86_64-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-apache-airflow/lock.x86_64-linux.json -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-odoo/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-odoo/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-odoo/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-odoo/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-odoo/lock.aarch64-darwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-odoo/lock.aarch64-darwin.json -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-odoo/lock.x86_64-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-odoo/lock.x86_64-linux.json -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-pillow/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-pillow/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-pillow/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-pillow/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-pillow/lock.aarch64-darwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-pillow/lock.aarch64-darwin.json -------------------------------------------------------------------------------- /examples/packages/languages/python-packaging-pillow/lock.x86_64-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/python-packaging-pillow/lock.x86_64-linux.json -------------------------------------------------------------------------------- /examples/packages/languages/rust-local-development-workspace/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/rust-local-development-workspace/Cargo.lock -------------------------------------------------------------------------------- /examples/packages/languages/rust-local-development-workspace/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/rust-local-development-workspace/Cargo.toml -------------------------------------------------------------------------------- /examples/packages/languages/rust-local-development-workspace/app/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/rust-local-development-workspace/app/Cargo.toml -------------------------------------------------------------------------------- /examples/packages/languages/rust-local-development-workspace/app/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/rust-local-development-workspace/app/src/main.rs -------------------------------------------------------------------------------- /examples/packages/languages/rust-local-development-workspace/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/rust-local-development-workspace/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/rust-local-development-workspace/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/rust-local-development-workspace/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/rust-packaging-buildRustPackage/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/rust-packaging-buildRustPackage/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/rust-packaging-buildRustPackage/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/rust-packaging-buildRustPackage/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/rust-packaging/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/rust-packaging/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/rust-packaging/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/rust-packaging/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/spago-local-development/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/spago-local-development/.gitignore -------------------------------------------------------------------------------- /examples/packages/languages/spago-local-development/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/spago-local-development/default.nix -------------------------------------------------------------------------------- /examples/packages/languages/spago-local-development/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/spago-local-development/flake.nix -------------------------------------------------------------------------------- /examples/packages/languages/spago-local-development/lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/spago-local-development/lock.json -------------------------------------------------------------------------------- /examples/packages/languages/spago-local-development/spago.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/spago-local-development/spago.yaml -------------------------------------------------------------------------------- /examples/packages/languages/spago-local-development/src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/spago-local-development/src/Main.purs -------------------------------------------------------------------------------- /examples/packages/languages/spago-local-development/test/Test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/packages/languages/spago-local-development/test/Test/Main.purs -------------------------------------------------------------------------------- /examples/repo-with-packages-flake/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/repo-with-packages-flake/flake.nix -------------------------------------------------------------------------------- /examples/repo-with-packages-flake/packages/hello/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/repo-with-packages-flake/packages/hello/default.nix -------------------------------------------------------------------------------- /examples/repo-with-packages/.project-root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/repo-with-packages/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/repo-with-packages/default.nix -------------------------------------------------------------------------------- /examples/repo-with-packages/packages/hello/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/examples/repo-with-packages/packages/hello/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/flake.nix -------------------------------------------------------------------------------- /lib/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/default.nix -------------------------------------------------------------------------------- /lib/internal/dreamLockUtils.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/dreamLockUtils.nix -------------------------------------------------------------------------------- /lib/internal/fetchDreamLockSources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchDreamLockSources.nix -------------------------------------------------------------------------------- /lib/internal/fetchers/archive/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchers/archive/default.nix -------------------------------------------------------------------------------- /lib/internal/fetchers/crates-io/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchers/crates-io/default.nix -------------------------------------------------------------------------------- /lib/internal/fetchers/extractSource.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchers/extractSource.nix -------------------------------------------------------------------------------- /lib/internal/fetchers/git/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchers/git/default.nix -------------------------------------------------------------------------------- /lib/internal/fetchers/github/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchers/github/default.nix -------------------------------------------------------------------------------- /lib/internal/fetchers/gitlab/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchers/gitlab/default.nix -------------------------------------------------------------------------------- /lib/internal/fetchers/http/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchers/http/default.nix -------------------------------------------------------------------------------- /lib/internal/fetchers/npm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchers/npm/default.nix -------------------------------------------------------------------------------- /lib/internal/fetchers/path/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchers/path/default.nix -------------------------------------------------------------------------------- /lib/internal/fetchers/pypi-sdist/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchers/pypi-sdist/default.nix -------------------------------------------------------------------------------- /lib/internal/fetchers/pypi-wheel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/fetchers/pypi-wheel/default.nix -------------------------------------------------------------------------------- /lib/internal/findCycles.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/findCycles.nix -------------------------------------------------------------------------------- /lib/internal/getDreamLockSource.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/getDreamLockSource.nix -------------------------------------------------------------------------------- /lib/internal/graphUtils.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/graphUtils.nix -------------------------------------------------------------------------------- /lib/internal/hashFile.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/hashFile.nix -------------------------------------------------------------------------------- /lib/internal/hashPath.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/hashPath.nix -------------------------------------------------------------------------------- /lib/internal/mkSubmodule.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/mkSubmodule.nix -------------------------------------------------------------------------------- /lib/internal/nodejsLockUtils.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/nodejsLockUtils.nix -------------------------------------------------------------------------------- /lib/internal/nodejsUtils.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/nodejsUtils.nix -------------------------------------------------------------------------------- /lib/internal/parseSpdxId.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/parseSpdxId.nix -------------------------------------------------------------------------------- /lib/internal/php-semver.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/php-semver.nix -------------------------------------------------------------------------------- /lib/internal/prepareSourceTree.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/prepareSourceTree.nix -------------------------------------------------------------------------------- /lib/internal/readDreamLock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/readDreamLock.nix -------------------------------------------------------------------------------- /lib/internal/sanitizePath.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/sanitizePath.nix -------------------------------------------------------------------------------- /lib/internal/sanitizeRelativePath.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/sanitizeRelativePath.nix -------------------------------------------------------------------------------- /lib/internal/simpleTranslate.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/simpleTranslate.nix -------------------------------------------------------------------------------- /lib/internal/simpleTranslate2.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/simpleTranslate2.nix -------------------------------------------------------------------------------- /lib/internal/toTOML.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/internal/toTOML.nix -------------------------------------------------------------------------------- /lib/types/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/lib/types/default.nix -------------------------------------------------------------------------------- /misc/benchmarks/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/misc/benchmarks/benchmark.sh -------------------------------------------------------------------------------- /misc/benchmarks/builtins-derivation-modules-vs-pkg-func.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/misc/benchmarks/builtins-derivation-modules-vs-pkg-func.nix -------------------------------------------------------------------------------- /misc/benchmarks/mkDerivation-modules-vs-pkg-func.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/misc/benchmarks/mkDerivation-modules-vs-pkg-func.nix -------------------------------------------------------------------------------- /misc/drafts/repo-flake-groups/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/misc/drafts/repo-flake-groups/flake.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-groups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-groups/README.md -------------------------------------------------------------------------------- /modules/dream2nix/WIP-groups/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-groups/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-groups/group.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-groups/group.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-groups/groups-option.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-groups/groups-option.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-groups/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-groups/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-groups/submoduleWithNameVersion.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-groups/submoduleWithNameVersion.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-haskell-cabal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-haskell-cabal/README.md -------------------------------------------------------------------------------- /modules/dream2nix/WIP-haskell-cabal/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-haskell-cabal/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-haskell-cabal/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-haskell-cabal/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-haskell-cabal/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-haskell-cabal/lock.py -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/README.md -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/modules/dist.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/modules/dist.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/modules/installed.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/modules/installed.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/modules/prepared-dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/modules/prepared-dev.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/modules/prepared-prod.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/modules/prepared-prod.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/scripts/build-node-modules.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/scripts/build-node-modules.mjs -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/scripts/install-trusted-modules.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/scripts/install-trusted-modules.mjs -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/README.md -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/flake.lock -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/flake.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/.gitignore -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/README.md -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/next.config.mjs -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/package-lock.json -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/package.json -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/postcss.config.js -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/public/next.svg -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/public/vercel.svg -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/src/app/favicon.ico -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/src/app/globals.css -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/src/app/layout.tsx -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/src/app/page.tsx -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/tailwind.config.ts -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-nextjs/nextjs-app/tsconfig.json -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-packaging-package-lock-v1/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-packaging-package-lock-v1/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-packaging-package-lock-v1/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-packaging-package-lock-v1/flake.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-packaging-package-lock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-packaging-package-lock/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-packaging-package-lock/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/tests/packages/nodejs-packaging-package-lock/flake.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/types.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/types.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-nodejs-builder-v3/utils.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-nodejs-builder-v3/utils.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-python-pyproject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-python-pyproject/README.md -------------------------------------------------------------------------------- /modules/dream2nix/WIP-python-pyproject/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-python-pyproject/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-spago/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-spago/README.md -------------------------------------------------------------------------------- /modules/dream2nix/WIP-spago/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-spago/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-spago/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-spago/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/WIP-spago/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/WIP-spago/lock.py -------------------------------------------------------------------------------- /modules/dream2nix/_template/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/_template/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/_template/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/_template/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/buildPythonPackage-mixin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildPythonPackage-mixin/README.md -------------------------------------------------------------------------------- /modules/dream2nix/buildPythonPackage-mixin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildPythonPackage-mixin/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/buildPythonPackage-mixin/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildPythonPackage-mixin/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/buildPythonPackage-mixin/tests/packages/basic/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildPythonPackage-mixin/tests/packages/basic/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/buildPythonPackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildPythonPackage/README.md -------------------------------------------------------------------------------- /modules/dream2nix/buildPythonPackage/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildPythonPackage/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/buildPythonPackage/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildPythonPackage/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/buildPythonPackage/options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildPythonPackage/options.nix -------------------------------------------------------------------------------- /modules/dream2nix/buildPythonPackage/tests/packages/basic/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildPythonPackage/tests/packages/basic/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/buildRustPackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildRustPackage/README.md -------------------------------------------------------------------------------- /modules/dream2nix/buildRustPackage/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildRustPackage/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/buildRustPackage/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/buildRustPackage/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/builtins-derivation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/builtins-derivation/README.md -------------------------------------------------------------------------------- /modules/dream2nix/builtins-derivation/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/builtins-derivation/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/builtins-derivation/derivation-common/options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/builtins-derivation/derivation-common/options.nix -------------------------------------------------------------------------------- /modules/dream2nix/builtins-derivation/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/builtins-derivation/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/README.md -------------------------------------------------------------------------------- /modules/dream2nix/core/assertions.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/assertions.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/deps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/deps/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/docs/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/docs/book.toml -------------------------------------------------------------------------------- /modules/dream2nix/core/docs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/docs/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/docs/options.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/docs/options.xsl -------------------------------------------------------------------------------- /modules/dream2nix/core/docs/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/docs/src/SUMMARY.md -------------------------------------------------------------------------------- /modules/dream2nix/core/docs/src/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/docs/src/highlight.js -------------------------------------------------------------------------------- /modules/dream2nix/core/docs/theme/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/docs/theme/favicon.png -------------------------------------------------------------------------------- /modules/dream2nix/core/env/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/env/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/eval-cache/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/eval-cache/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/eval-cache/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/eval-cache/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/flags/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/flags/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/flags/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/flags/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/lock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/lock/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/lock/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/lock/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/paths/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/paths/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/paths/find-root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/paths/find-root.py -------------------------------------------------------------------------------- /modules/dream2nix/core/paths/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/paths/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/public/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/public/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/public/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/public/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/public/optsPackage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/public/optsPackage.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/public/optsPackageCompat.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/public/optsPackageCompat.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/public/optsPackageDrvParts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/public/optsPackageDrvParts.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/tests/packages/nixpkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/tests/packages/nixpkgs/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/ui/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/ui/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/core/ui/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/core/ui/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/mkDerivation-mixin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/mkDerivation-mixin/README.md -------------------------------------------------------------------------------- /modules/dream2nix/mkDerivation-mixin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/mkDerivation-mixin/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/mkDerivation-mixin/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/mkDerivation-mixin/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/mkDerivation-mixin/tests/packages/basic/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/mkDerivation-mixin/tests/packages/basic/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/mkDerivation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/mkDerivation/README.md -------------------------------------------------------------------------------- /modules/dream2nix/mkDerivation/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/mkDerivation/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/mkDerivation/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/mkDerivation/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/mkDerivation/options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/mkDerivation/options.nix -------------------------------------------------------------------------------- /modules/dream2nix/mkDerivation/tests/packages/basic/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/mkDerivation/tests/packages/basic/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/multi-derivation-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/multi-derivation-package/README.md -------------------------------------------------------------------------------- /modules/dream2nix/multi-derivation-package/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/multi-derivation-package/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/multi-derivation-package/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/multi-derivation-package/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/nixpkgs-overrides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nixpkgs-overrides/README.md -------------------------------------------------------------------------------- /modules/dream2nix/nixpkgs-overrides/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nixpkgs-overrides/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nixpkgs-overrides/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nixpkgs-overrides/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-devshell-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-devshell-v3/README.md -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-devshell-v3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-devshell-v3/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-devshell-v3/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-devshell-v3/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-devshell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-devshell/README.md -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-devshell/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-devshell/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-devshell/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-devshell/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-devshell/tests/packages/basic/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-devshell/tests/packages/basic/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-devshell/tests/packages/basic/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-devshell/tests/packages/basic/package-lock.json -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-devshell/tests/packages/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-devshell/tests/packages/basic/package.json -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular-v3/README.md -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular-v3/buildPhase.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular-v3/buildPhase.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular-v3/configurePhase.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular-v3/configurePhase.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular-v3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular-v3/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular-v3/devShell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular-v3/devShell.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular-v3/fix-package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular-v3/fix-package.py -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular-v3/install-deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular-v3/install-deps.py -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular-v3/installPhase.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular-v3/installPhase.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular-v3/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular-v3/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular-v3/link-bins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular-v3/link-bins.py -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular-v3/unpackPhase.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular-v3/unpackPhase.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular/README.md -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular/buildPhase.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular/buildPhase.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular/configurePhase.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular/configurePhase.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular/devShell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular/devShell.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular/fix-package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular/fix-package.py -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular/install-deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular/install-deps.py -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular/installPhase.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular/installPhase.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular/link-bins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular/link-bins.py -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-granular/unpackPhase.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-granular/unpackPhase.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-node-modules-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-node-modules-v3/README.md -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-node-modules-v3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-node-modules-v3/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-node-modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-node-modules/README.md -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-node-modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-node-modules/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-node-modules/tests/packages/basic/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-node-modules/tests/packages/basic/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-node-modules/tests/packages/basic/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-node-modules/tests/packages/basic/package-lock.json -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-node-modules/tests/packages/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-node-modules/tests/packages/basic/package.json -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-node-modules/tests/packages/nodejs-packaging-node-modules-only/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-node-modules/tests/packages/nodejs-packaging-node-modules-only/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-node-modules/tests/packages/nodejs-packaging-node-modules-only/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-node-modules/tests/packages/nodejs-packaging-node-modules-only/flake.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-json-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-json-v3/README.md -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-json-v3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-json-v3/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-json-v3/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-json-v3/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-json/README.md -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-json/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-json/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-json/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-json/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-json/tests/packages/basic/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-json/tests/packages/basic/app.ts -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-json/tests/packages/basic/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-json/tests/packages/basic/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-json/tests/packages/basic/lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-json/tests/packages/basic/lock.json -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-json/tests/packages/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-json/tests/packages/basic/package.json -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-lock-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-lock-v3/README.md -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-lock-v3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-lock-v3/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-lock-v3/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-lock-v3/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-lock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-lock/README.md -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-lock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-lock/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-lock/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-lock/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/nodejs-package-lock/translate.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/nodejs-package-lock/translate.nix -------------------------------------------------------------------------------- /modules/dream2nix/overrides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/overrides/README.md -------------------------------------------------------------------------------- /modules/dream2nix/overrides/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/overrides/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/overrides/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/overrides/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/package-func/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/package-func/README.md -------------------------------------------------------------------------------- /modules/dream2nix/package-func/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/package-func/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/package-func/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/package-func/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/php-composer-lock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/php-composer-lock/README.md -------------------------------------------------------------------------------- /modules/dream2nix/php-composer-lock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/php-composer-lock/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/php-composer-lock/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/php-composer-lock/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/php-composer-lock/translate.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/php-composer-lock/translate.nix -------------------------------------------------------------------------------- /modules/dream2nix/php-granular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/php-granular/README.md -------------------------------------------------------------------------------- /modules/dream2nix/php-granular/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/php-granular/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/php-granular/devShell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/php-granular/devShell.nix -------------------------------------------------------------------------------- /modules/dream2nix/php-granular/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/php-granular/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/README.md -------------------------------------------------------------------------------- /modules/dream2nix/pip/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/pip-hotfixes/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/pip-hotfixes/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/pip-hotfixes/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/pip-hotfixes/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/can-build-setuptools/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/can-build-setuptools/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/can-build-setuptools/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/can-build-setuptools/flake.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/can-build-setuptools/lock.x86_64-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/can-build-setuptools/lock.x86_64-linux.json -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/can-build-setuptools/my_tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/can-build-setuptools/my_tool/__init__.py -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/can-build-setuptools/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/can-build-setuptools/pyproject.toml -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/can-handle-setuptools-runtime-dep/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/can-handle-setuptools-runtime-dep/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/can-handle-setuptools-runtime-dep/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/can-handle-setuptools-runtime-dep/flake.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/can-handle-setuptools-runtime-dep/lock.x86_64-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/can-handle-setuptools-runtime-dep/lock.x86_64-linux.json -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/can-handle-setuptools-runtime-dep/my_tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/can-handle-setuptools-runtime-dep/my_tool/__init__.py -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/can-handle-setuptools-runtime-dep/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/can-handle-setuptools-runtime-dep/pyproject.toml -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/lock-script-works/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/lock-script-works/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/lock-script-works/my_tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/lock-script-works/my_tool/__init__.py -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/lock-script-works/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/lock-script-works/pyproject.toml -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/python-nodejs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/python-nodejs/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/python-nodejs/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/python-nodejs/flake.nix -------------------------------------------------------------------------------- /modules/dream2nix/pip/tests/packages/python-nodejs/lock.x86_64-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/pip/tests/packages/python-nodejs/lock.x86_64-linux.json -------------------------------------------------------------------------------- /modules/dream2nix/python-editables/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-editables/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-editables/editable.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-editables/editable.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-editables/editable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-editables/editable.py -------------------------------------------------------------------------------- /modules/dream2nix/python-editables/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-editables/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/README.md -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/interface-dependency.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/interface-dependency.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/lib.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/lock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/lock.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/sourceSelectorOption.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/sourceSelectorOption.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/jupyter-lab/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/tests/packages/jupyter-lab/.gitignore -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/jupyter-lab/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/tests/packages/jupyter-lab/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/jupyter-lab/flake.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/jupyter-lab/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/tests/packages/jupyter-lab/flake.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/jupyter-lab/pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/tests/packages/jupyter-lab/pdm.lock -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/jupyter-lab/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/tests/packages/jupyter-lab/pyproject.toml -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/python-local-development/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/tests/packages/python-local-development/.gitignore -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/python-local-development/README.md: -------------------------------------------------------------------------------- 1 | # example-package 2 | -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/python-local-development/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/tests/packages/python-local-development/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/python-local-development/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/tests/packages/python-local-development/flake.nix -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/python-local-development/my_project/__init__.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | 4 | def main(): 5 | print("Hello, world!") 6 | -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/python-local-development/pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/tests/packages/python-local-development/pdm.lock -------------------------------------------------------------------------------- /modules/dream2nix/python-pdm/tests/packages/python-local-development/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/python-pdm/tests/packages/python-local-development/pyproject.toml -------------------------------------------------------------------------------- /modules/dream2nix/rust-cargo-lock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-cargo-lock/README.md -------------------------------------------------------------------------------- /modules/dream2nix/rust-cargo-lock/cargoLock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-cargo-lock/cargoLock.nix -------------------------------------------------------------------------------- /modules/dream2nix/rust-cargo-lock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-cargo-lock/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/rust-cargo-lock/findAllCrates.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-cargo-lock/findAllCrates.nix -------------------------------------------------------------------------------- /modules/dream2nix/rust-cargo-lock/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-cargo-lock/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/rust-cargo-lock/translate.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-cargo-lock/translate.nix -------------------------------------------------------------------------------- /modules/dream2nix/rust-cargo-vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-cargo-vendor/README.md -------------------------------------------------------------------------------- /modules/dream2nix/rust-cargo-vendor/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-cargo-vendor/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/rust-cargo-vendor/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-cargo-vendor/interface.nix -------------------------------------------------------------------------------- /modules/dream2nix/rust-cargo-vendor/patch-workspace.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-cargo-vendor/patch-workspace.jq -------------------------------------------------------------------------------- /modules/dream2nix/rust-cargo-vendor/vendor.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-cargo-vendor/vendor.nix -------------------------------------------------------------------------------- /modules/dream2nix/rust-crane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-crane/README.md -------------------------------------------------------------------------------- /modules/dream2nix/rust-crane/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-crane/default.nix -------------------------------------------------------------------------------- /modules/dream2nix/rust-crane/devshell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-crane/devshell.nix -------------------------------------------------------------------------------- /modules/dream2nix/rust-crane/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/dream2nix/rust-crane/interface.nix -------------------------------------------------------------------------------- /modules/flake-parts/_template.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/_template.nix -------------------------------------------------------------------------------- /modules/flake-parts/all-modules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/all-modules.nix -------------------------------------------------------------------------------- /modules/flake-parts/apps.update-caches.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/apps.update-caches.nix -------------------------------------------------------------------------------- /modules/flake-parts/apps.update-locks.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/apps.update-locks.nix -------------------------------------------------------------------------------- /modules/flake-parts/checks.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/checks.nix -------------------------------------------------------------------------------- /modules/flake-parts/checks.nix-unit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/checks.nix-unit.nix -------------------------------------------------------------------------------- /modules/flake-parts/core-modules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/core-modules.nix -------------------------------------------------------------------------------- /modules/flake-parts/devShells.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/devShells.nix -------------------------------------------------------------------------------- /modules/flake-parts/drv-parts-deprecated.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/drv-parts-deprecated.nix -------------------------------------------------------------------------------- /modules/flake-parts/examples.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/examples.nix -------------------------------------------------------------------------------- /modules/flake-parts/formatter.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/formatter.nix -------------------------------------------------------------------------------- /modules/flake-parts/overrides.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/overrides.nix -------------------------------------------------------------------------------- /modules/flake-parts/pre-commit-check.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/pre-commit-check.nix -------------------------------------------------------------------------------- /modules/flake-parts/pythonEnv/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/pythonEnv/default.nix -------------------------------------------------------------------------------- /modules/flake-parts/pythonEnv/flake-template.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/pythonEnv/flake-template.nix -------------------------------------------------------------------------------- /modules/flake-parts/reference-website/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/reference-website/default.nix -------------------------------------------------------------------------------- /modules/flake-parts/reference-website/frontmatter.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/reference-website/frontmatter.nix -------------------------------------------------------------------------------- /modules/flake-parts/website-options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/website-options.nix -------------------------------------------------------------------------------- /modules/flake-parts/writers.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake-parts/writers.nix -------------------------------------------------------------------------------- /modules/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/modules/flake.lock -------------------------------------------------------------------------------- /overrides/python/_template/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/_template/default.nix -------------------------------------------------------------------------------- /overrides/python/certifi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/certifi/default.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-cublas-cu12/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-cublas-cu12/default.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-cublas-cu12/remove-nvidia-init.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-cublas-cu12/remove-nvidia-init.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-cuda-cupti-cu12/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-cuda-cupti-cu12/default.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-cuda-nvrtc-cu12/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-cuda-nvrtc-cu12/default.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-cuda-runtime-cu12/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-cuda-runtime-cu12/default.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-cudnn-cu12/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-cudnn-cu12/default.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-cufft-cu12/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-cufft-cu12/default.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-curand-cu12/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-curand-cu12/default.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-cusolver-cu12/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-cusolver-cu12/default.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-cusparse-cu12/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-cusparse-cu12/default.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-nccl-cu12/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-nccl-cu12/default.nix -------------------------------------------------------------------------------- /overrides/python/nvidia-nvjitlink-cu12/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/nvidia-nvjitlink-cu12/default.nix -------------------------------------------------------------------------------- /overrides/python/opencv-python/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/opencv-python/default.nix -------------------------------------------------------------------------------- /overrides/python/pillow/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/pillow/default.nix -------------------------------------------------------------------------------- /overrides/python/psycopg2/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/psycopg2/default.nix -------------------------------------------------------------------------------- /overrides/python/reuse/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/reuse/default.nix -------------------------------------------------------------------------------- /overrides/python/torch/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/torch/default.nix -------------------------------------------------------------------------------- /overrides/python/triton/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/python/triton/default.nix -------------------------------------------------------------------------------- /overrides/rust/jack-sys/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/overrides/rust/jack-sys/default.nix -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/flake-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/flake-module.nix -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/package.nix -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/script.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/script.nix -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/.envrc: -------------------------------------------------------------------------------- 1 | use flake .#fetch-pip-metadata 2 | -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/fetch_pip_metadata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/src/fetch_pip_metadata/__init__.py -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/fetch_pip_metadata/lock_file_from_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/src/fetch_pip_metadata/lock_file_from_report.py -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/src/pyproject.toml -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/src/tests/conftest.py -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/tests/test_evaluate_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/src/tests/test_evaluate_extras.py -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/tests/test_evaluate_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/src/tests/test_evaluate_requirements.py -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/tests/test_lock_entry_from_report_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/src/tests/test_lock_entry_from_report_entry.py -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/tests/test_lock_file_from_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/src/tests/test_lock_file_from_report.py -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/tests/test_lock_info_from_fod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/src/tests/test_lock_info_from_fod.py -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/tests/test_lock_info_from_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/src/tests/test_lock_info_from_path.py -------------------------------------------------------------------------------- /pkgs/fetchPipMetadata/src/tests/test_path_from_file_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/fetchPipMetadata/src/tests/test_path_from_file_url.py -------------------------------------------------------------------------------- /pkgs/writers/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/pkgs/writers/default.nix -------------------------------------------------------------------------------- /scripts/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/scripts/flake.nix -------------------------------------------------------------------------------- /scripts/update-aarch64-locks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/scripts/update-aarch64-locks.sh -------------------------------------------------------------------------------- /scripts/update-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/scripts/update-examples.sh -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/shell.nix -------------------------------------------------------------------------------- /tests/nix-unit/fixtures.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/fixtures.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_findCycles/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_findCycles/default.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_graph_utils/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_graph_utils/default.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_graph_utils/fileSystem.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_graph_utils/fileSystem.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_graph_utils/sanitizeGraph.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_graph_utils/sanitizeGraph.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_groups/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_groups/default.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_groups_multi_derivation_package/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_groups_multi_derivation_package/default.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_nodejs_lock_v3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_nodejs_lock_v3/default.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_nodejs_lock_v3/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_nodejs_lock_v3/lib/package.json -------------------------------------------------------------------------------- /tests/nix-unit/test_nodejs_lock_v3/multiple-versions-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_nodejs_lock_v3/multiple-versions-lock.json -------------------------------------------------------------------------------- /tests/nix-unit/test_nodejs_lock_v3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_nodejs_lock_v3/package-lock.json -------------------------------------------------------------------------------- /tests/nix-unit/test_nodejs_lockutils/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_nodejs_lockutils/default.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_nodejs_lockutils/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_nodejs_lockutils/package-lock.json -------------------------------------------------------------------------------- /tests/nix-unit/test_nodejs_node_builder_v3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_nodejs_node_builder_v3/default.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_nodejs_node_builder_v3/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_nodejs_node_builder_v3/lib/package.json -------------------------------------------------------------------------------- /tests/nix-unit/test_nodejs_node_builder_v3/multiple-versions-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_nodejs_node_builder_v3/multiple-versions-lock.json -------------------------------------------------------------------------------- /tests/nix-unit/test_nodejs_node_builder_v3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_nodejs_node_builder_v3/package-lock.json -------------------------------------------------------------------------------- /tests/nix-unit/test_nodejs_node_builder_v3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_nodejs_node_builder_v3/package.json -------------------------------------------------------------------------------- /tests/nix-unit/test_paths/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_paths/default.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_pip_pyproject/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_pip_pyproject/default.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_python-pdm-lib/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_python-pdm-lib/default.nix -------------------------------------------------------------------------------- /tests/nix-unit/test_python-pdm-lib/environ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_python-pdm-lib/environ.json -------------------------------------------------------------------------------- /tests/nix-unit/test_python-pdm-lib/fixtures/pdm-example1.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_python-pdm-lib/fixtures/pdm-example1.lock -------------------------------------------------------------------------------- /tests/nix-unit/test_python-pdm-lib/fixtures/pdm-extras.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_python-pdm-lib/fixtures/pdm-extras.lock -------------------------------------------------------------------------------- /tests/nix-unit/test_python-pdm-lib/fixtures/pdm-with-cycles.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_python-pdm-lib/fixtures/pdm-with-cycles.lock -------------------------------------------------------------------------------- /tests/nix-unit/test_python-pdm-lib/fixtures/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_python-pdm-lib/fixtures/pyproject.toml -------------------------------------------------------------------------------- /tests/nix-unit/test_python-pdm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/tests/nix-unit/test_python-pdm/default.nix -------------------------------------------------------------------------------- /treefmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/dream2nix/HEAD/treefmt.toml --------------------------------------------------------------------------------