├── .clang-format ├── .clang-tidy ├── .coderabbit.yaml ├── .dir-locals.el ├── .editorconfig ├── .git-blame-ignore-revs ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── installer.md │ └── missing_documentation.md ├── PULL_REQUEST_TEMPLATE.md ├── STALE-BOT.md ├── actions │ └── install-nix-action │ │ └── action.yaml ├── dependabot.yml ├── labeler.yml ├── stale.yml └── workflows │ ├── backport.yml │ ├── ci.yml │ └── labels.yml ├── .gitignore ├── .shellcheckrc ├── .version ├── CITATION.cff ├── CONTRIBUTING.md ├── COPYING ├── HACKING.md ├── README.md ├── ci └── gha │ ├── profile-build │ └── default.nix │ └── tests │ ├── build-checks │ ├── default.nix │ ├── pre-commit-checks │ ├── prepare-installer-for-github-actions │ └── wrapper.nix ├── contrib └── stack-collapse.py ├── default.nix ├── doc └── manual │ ├── .version │ ├── anchors.jq │ ├── book.toml.in │ ├── custom.css │ ├── generate-builtins.nix │ ├── generate-deps.py │ ├── generate-manpage.nix │ ├── generate-settings.nix │ ├── generate-store-info.nix │ ├── generate-store-types.nix │ ├── generate-xp-features-shortlist.nix │ ├── generate-xp-features.nix │ ├── meson.build │ ├── package.nix │ ├── quote-literals.xsl │ ├── redirects.js │ ├── remove_before_wrapper.py │ ├── render-manpage.sh │ ├── rl-next │ ├── channels-subdomain.md │ ├── config │ ├── json-format-changes.md │ ├── libcurl-pausing.md │ ├── s3-curl-implementation.md │ ├── s3-object-versioning.md │ └── s3-storage-class.md │ ├── source │ ├── SUMMARY.md.in │ ├── _redirects │ ├── advanced-topics │ │ ├── cores-vs-jobs.md │ │ ├── diff-hook.md │ │ ├── distributed-builds.md │ │ ├── eval-profiler.md │ │ ├── index.md │ │ └── post-build-hook.md │ ├── architecture │ │ └── architecture.md │ ├── c-api.md │ ├── command-ref │ │ ├── conf-file-prefix.md │ │ ├── env-common.md │ │ ├── experimental-commands.md │ │ ├── files.md │ │ ├── files │ │ │ ├── channels.md │ │ │ ├── default-nix-expression.md │ │ │ ├── manifest.json.md │ │ │ ├── manifest.nix.md │ │ │ └── profiles.md │ │ ├── index.md │ │ ├── main-commands.md │ │ ├── meson.build │ │ ├── nix-build.md │ │ ├── nix-channel.md │ │ ├── nix-collect-garbage.md │ │ ├── nix-copy-closure.md │ │ ├── nix-daemon.md │ │ ├── nix-env.md │ │ ├── nix-env │ │ │ ├── delete-generations.md │ │ │ ├── env-common.md │ │ │ ├── install.md │ │ │ ├── list-generations.md │ │ │ ├── opt-common.md │ │ │ ├── query.md │ │ │ ├── rollback.md │ │ │ ├── set-flag.md │ │ │ ├── set.md │ │ │ ├── switch-generation.md │ │ │ ├── switch-profile.md │ │ │ ├── uninstall.md │ │ │ └── upgrade.md │ │ ├── nix-hash.md │ │ ├── nix-instantiate.md │ │ ├── nix-prefetch-url.md │ │ ├── nix-shell.md │ │ ├── nix-store.md │ │ ├── nix-store │ │ │ ├── add-fixed.md │ │ │ ├── add.md │ │ │ ├── delete.md │ │ │ ├── dump-db.md │ │ │ ├── dump.md │ │ │ ├── export.md │ │ │ ├── gc.md │ │ │ ├── generate-binary-cache-key.md │ │ │ ├── import.md │ │ │ ├── load-db.md │ │ │ ├── opt-common.md │ │ │ ├── optimise.md │ │ │ ├── print-env.md │ │ │ ├── query.md │ │ │ ├── read-log.md │ │ │ ├── realise.md │ │ │ ├── repair-path.md │ │ │ ├── restore.md │ │ │ ├── serve.md │ │ │ ├── verify-path.md │ │ │ └── verify.md │ │ ├── opt-common.md │ │ ├── status-build-failure.md │ │ └── utilities.md │ ├── development │ │ ├── benchmarking.md │ │ ├── building.md │ │ ├── cli-guideline.md │ │ ├── contributing.md │ │ ├── cxx.md │ │ ├── debugging.md │ │ ├── documentation.md │ │ ├── experimental-features.md │ │ ├── index.md │ │ ├── json-guideline.md │ │ ├── meson.build │ │ └── testing.md │ ├── favicon.png │ ├── favicon.svg │ ├── figures │ │ ├── user-environments.png │ │ └── user-environments.sxd │ ├── glossary.md │ ├── installation │ │ ├── building-source.md │ │ ├── env-variables.md │ │ ├── index.md │ │ ├── installing-binary.md │ │ ├── installing-docker.md │ │ ├── installing-source.md │ │ ├── multi-user.md │ │ ├── nix-security.md │ │ ├── obtaining-source.md │ │ ├── prerequisites-source.md │ │ ├── single-user.md │ │ ├── supported-platforms.md │ │ ├── uninstall.md │ │ └── upgrading.md │ ├── introduction.md │ ├── language │ │ ├── advanced-attributes.md │ │ ├── builtins-prefix.md │ │ ├── builtins-suffix.md │ │ ├── constructs.md │ │ ├── constructs │ │ │ └── lookup-path.md │ │ ├── derivations.md │ │ ├── evaluation.md │ │ ├── identifiers.md │ │ ├── import-from-derivation.md │ │ ├── index.md │ │ ├── meson.build │ │ ├── operators.md │ │ ├── scope.md │ │ ├── string-context.md │ │ ├── string-interpolation.md │ │ ├── string-literals.md │ │ ├── syntax.md │ │ ├── types.md │ │ ├── values.md │ │ └── variables.md │ ├── meson.build │ ├── package-management │ │ ├── binary-cache-substituter.md │ │ ├── garbage-collection.md │ │ ├── garbage-collector-roots.md │ │ ├── index.md │ │ ├── profiles.md │ │ ├── sharing-packages.md │ │ └── ssh-substituter.md │ ├── protocols │ │ ├── derivation-aterm.md │ │ ├── index.md │ │ ├── json │ │ │ ├── build-result.md │ │ │ ├── build-trace-entry.md │ │ │ ├── content-address.md │ │ │ ├── derivation │ │ │ │ ├── index.md │ │ │ │ └── options.md │ │ │ ├── deriving-path.md │ │ │ ├── file-system-object.md │ │ │ ├── fixup-json-schema-generated-doc.sed │ │ │ ├── hash.md │ │ │ ├── index.md │ │ │ ├── json-schema-for-humans-config.yaml │ │ │ ├── meson.build │ │ │ ├── schema │ │ │ │ ├── build-result-v1 │ │ │ │ ├── build-result-v1.yaml │ │ │ │ ├── build-trace-entry-v1 │ │ │ │ ├── build-trace-entry-v1.yaml │ │ │ │ ├── content-address-v1 │ │ │ │ ├── content-address-v1.yaml │ │ │ │ ├── derivation-options-v1 │ │ │ │ ├── derivation-options-v1.yaml │ │ │ │ ├── derivation-v4.yaml │ │ │ │ ├── deriving-path-v1 │ │ │ │ ├── deriving-path-v1.yaml │ │ │ │ ├── file-system-object-v1 │ │ │ │ ├── file-system-object-v1.yaml │ │ │ │ ├── hash-v1 │ │ │ │ ├── hash-v1.yaml │ │ │ │ ├── nar-info-v1 │ │ │ │ ├── store-object-info-v2 │ │ │ │ ├── store-object-info-v2.yaml │ │ │ │ ├── store-path-v1 │ │ │ │ ├── store-path-v1.yaml │ │ │ │ ├── store-v1 │ │ │ │ └── store-v1.yaml │ │ │ ├── store-object-info.md │ │ │ ├── store-path.md │ │ │ └── store.md │ │ ├── meson.build │ │ ├── nix-archive │ │ │ ├── index.md │ │ │ └── nar.ksy │ │ ├── store-path.md │ │ └── tarball-fetcher.md │ ├── quick-start.md │ ├── release-notes │ │ ├── index.md │ │ ├── meson.build │ │ ├── rl-0.10.1.md │ │ ├── rl-0.10.md │ │ ├── rl-0.11.md │ │ ├── rl-0.12.md │ │ ├── rl-0.13.md │ │ ├── rl-0.14.md │ │ ├── rl-0.15.md │ │ ├── rl-0.16.md │ │ ├── rl-0.5.md │ │ ├── rl-0.6.md │ │ ├── rl-0.7.md │ │ ├── rl-0.8.1.md │ │ ├── rl-0.8.md │ │ ├── rl-0.9.1.md │ │ ├── rl-0.9.2.md │ │ ├── rl-0.9.md │ │ ├── rl-1.0.md │ │ ├── rl-1.1.md │ │ ├── rl-1.10.md │ │ ├── rl-1.11.10.md │ │ ├── rl-1.11.md │ │ ├── rl-1.2.md │ │ ├── rl-1.3.md │ │ ├── rl-1.4.md │ │ ├── rl-1.5.1.md │ │ ├── rl-1.5.2.md │ │ ├── rl-1.5.md │ │ ├── rl-1.6.1.md │ │ ├── rl-1.6.md │ │ ├── rl-1.7.md │ │ ├── rl-1.8.md │ │ ├── rl-1.9.md │ │ ├── rl-2.0.md │ │ ├── rl-2.1.md │ │ ├── rl-2.10.md │ │ ├── rl-2.11.md │ │ ├── rl-2.12.md │ │ ├── rl-2.13.md │ │ ├── rl-2.14.md │ │ ├── rl-2.15.md │ │ ├── rl-2.16.md │ │ ├── rl-2.17.md │ │ ├── rl-2.18.md │ │ ├── rl-2.19.md │ │ ├── rl-2.2.md │ │ ├── rl-2.20.md │ │ ├── rl-2.21.md │ │ ├── rl-2.22.md │ │ ├── rl-2.23.md │ │ ├── rl-2.24.md │ │ ├── rl-2.25.md │ │ ├── rl-2.26.md │ │ ├── rl-2.27.md │ │ ├── rl-2.28.md │ │ ├── rl-2.29.md │ │ ├── rl-2.3.md │ │ ├── rl-2.30.md │ │ ├── rl-2.31.md │ │ ├── rl-2.32.md │ │ ├── rl-2.4.md │ │ ├── rl-2.5.md │ │ ├── rl-2.6.md │ │ ├── rl-2.7.md │ │ ├── rl-2.8.md │ │ └── rl-2.9.md │ └── store │ │ ├── build-trace.md │ │ ├── building.md │ │ ├── derivation │ │ ├── index.md │ │ └── outputs │ │ │ ├── content-address.md │ │ │ ├── index.md │ │ │ └── input-address.md │ │ ├── file-system-object.md │ │ ├── file-system-object │ │ └── content-address.md │ │ ├── index.md │ │ ├── math-notation.md │ │ ├── meson.build │ │ ├── resolution.md │ │ ├── secrets.md │ │ ├── store-object.md │ │ ├── store-object │ │ └── content-address.md │ │ ├── store-path.md │ │ └── types │ │ └── index.md.in │ ├── substitute.py │ ├── theme │ ├── head.hbs │ └── highlight.js │ └── utils.nix ├── docker.nix ├── flake.lock ├── flake.nix ├── maintainers ├── README.md ├── backporting.md ├── data │ ├── release-credits-email-to-handle.json │ └── release-credits-handle-to-name.json ├── flake-module.nix ├── format.sh ├── onboarding.md ├── release-credits ├── release-notes ├── release-notes-todo ├── release-process.md ├── security-reports.md └── upload-release.pl ├── meson.build ├── meson.format ├── meson.options ├── misc ├── bash │ ├── completion.sh │ └── meson.build ├── fish │ ├── completion.fish │ └── meson.build ├── freebsd │ ├── meson.build │ └── nix-daemon.in ├── launchd │ ├── meson.build │ └── org.nixos.nix-daemon.plist.in ├── meson.build ├── systemd │ ├── meson.build │ ├── nix-daemon.conf.in │ ├── nix-daemon.service.in │ └── nix-daemon.socket.in ├── systemv │ └── nix-daemon ├── upstart │ └── nix-daemon.conf.in └── zsh │ ├── completion.zsh │ ├── meson.build │ └── run-help-nix ├── nix-meson-build-support ├── big-objs │ └── meson.build ├── common │ ├── asan-options │ │ ├── asan-options.cc │ │ └── meson.build │ ├── assert-fail │ │ ├── meson.build │ │ └── wrap-assert-fail.cc │ └── meson.build ├── default-system-cpu │ └── meson.build ├── deps-lists │ └── meson.build ├── export-all-symbols │ └── meson.build ├── export │ └── meson.build ├── generate-header │ └── meson.build ├── libatomic │ └── meson.build ├── subprojects │ └── meson.build └── windows-version │ └── meson.build ├── packaging ├── binary-tarball.nix ├── components.nix ├── dependencies.nix ├── dev-shell.nix ├── everything.nix ├── hydra.nix └── installer │ ├── default.nix │ └── install.in ├── scripts ├── bigsur-nixbld-user-migration.sh ├── create-darwin-volume.sh ├── install-darwin-multi-user.sh ├── install-freebsd-multi-user.sh ├── install-multi-user.sh ├── install-nix-from-tarball.sh ├── install-systemd-multi-user.sh ├── meson.build ├── nix-profile-daemon.fish.in ├── nix-profile-daemon.sh.in ├── nix-profile.fish.in ├── nix-profile.sh.in └── sequoia-nixbld-user-migration.sh ├── shell.nix ├── src ├── external-api-docs │ ├── .gitignore │ ├── .version │ ├── README.md │ ├── doxygen.cfg.in │ ├── meson.build │ └── package.nix ├── internal-api-docs │ ├── .gitignore │ ├── .version │ ├── doxygen.cfg.in │ ├── meson.build │ └── package.nix ├── json-schema-checks │ ├── .version │ ├── build-result │ ├── build-trace-entry │ ├── content-address │ ├── derivation │ ├── derivation-options │ ├── deriving-path │ ├── file-system-object │ ├── hash │ ├── meson.build │ ├── nar-info │ ├── package.nix │ ├── schema │ ├── store │ ├── store-object-info │ └── store-path ├── kaitai-struct-checks │ ├── .version │ ├── meson.build │ ├── nar.ksy │ ├── nars │ ├── nix-meson-build-support │ ├── package.nix │ └── test-parse-nar.cc ├── libcmd │ ├── .version │ ├── built-path.cc │ ├── command-installable-value.cc │ ├── command.cc │ ├── common-eval-args.cc │ ├── editor-for.cc │ ├── include │ │ └── nix │ │ │ └── cmd │ │ │ ├── built-path.hh │ │ │ ├── command-installable-value.hh │ │ │ ├── command.hh │ │ │ ├── common-eval-args.hh │ │ │ ├── compatibility-settings.hh │ │ │ ├── editor-for.hh │ │ │ ├── installable-attr-path.hh │ │ │ ├── installable-derived-path.hh │ │ │ ├── installable-flake.hh │ │ │ ├── installable-value.hh │ │ │ ├── installables.hh │ │ │ ├── legacy.hh │ │ │ ├── markdown.hh │ │ │ ├── meson.build │ │ │ ├── misc-store-flags.hh │ │ │ ├── network-proxy.hh │ │ │ ├── repl-interacter.hh │ │ │ └── repl.hh │ ├── installable-attr-path.cc │ ├── installable-derived-path.cc │ ├── installable-flake.cc │ ├── installable-value.cc │ ├── installables.cc │ ├── markdown.cc │ ├── meson.build │ ├── meson.options │ ├── misc-store-flags.cc │ ├── network-proxy.cc │ ├── nix-meson-build-support │ ├── package.nix │ ├── pch │ │ └── precompiled-headers.hh │ ├── repl-interacter.cc │ └── repl.cc ├── libexpr-c │ ├── .version │ ├── meson.build │ ├── nix-meson-build-support │ ├── nix_api_expr.cc │ ├── nix_api_expr.h │ ├── nix_api_expr_internal.h │ ├── nix_api_external.cc │ ├── nix_api_external.h │ ├── nix_api_value.cc │ ├── nix_api_value.h │ └── package.nix ├── libexpr-test-support │ ├── .version │ ├── include │ │ └── nix │ │ │ └── expr │ │ │ └── tests │ │ │ ├── libexpr.hh │ │ │ ├── meson.build │ │ │ ├── nix_api_expr.hh │ │ │ └── value │ │ │ └── context.hh │ ├── meson.build │ ├── nix-meson-build-support │ ├── package.nix │ └── tests │ │ └── value │ │ └── context.cc ├── libexpr-tests │ ├── .version │ ├── data │ │ └── .gitkeep │ ├── derived-path.cc │ ├── error_traces.cc │ ├── eval.cc │ ├── json.cc │ ├── main.cc │ ├── meson.build │ ├── nix-meson-build-support │ ├── nix_api_expr.cc │ ├── nix_api_external.cc │ ├── nix_api_value.cc │ ├── nix_api_value_internal.cc │ ├── package.nix │ ├── pch │ │ └── precompiled-headers.hh │ ├── primops.cc │ ├── search-path.cc │ ├── trivial.cc │ └── value │ │ ├── context.cc │ │ ├── print.cc │ │ └── value.cc ├── libexpr │ ├── .version │ ├── attr-path.cc │ ├── attr-set.cc │ ├── eval-cache.cc │ ├── eval-error.cc │ ├── eval-gc.cc │ ├── eval-profiler-settings.cc │ ├── eval-profiler.cc │ ├── eval-settings.cc │ ├── eval.cc │ ├── fetchurl.nix │ ├── function-trace.cc │ ├── get-drvs.cc │ ├── imported-drv-to-derivation.nix │ ├── include │ │ └── nix │ │ │ └── expr │ │ │ ├── attr-path.hh │ │ │ ├── attr-set.hh │ │ │ ├── counter.hh │ │ │ ├── eval-cache.hh │ │ │ ├── eval-error.hh │ │ │ ├── eval-gc.hh │ │ │ ├── eval-inline.hh │ │ │ ├── eval-profiler-settings.hh │ │ │ ├── eval-profiler.hh │ │ │ ├── eval-settings.hh │ │ │ ├── eval.hh │ │ │ ├── function-trace.hh │ │ │ ├── gc-small-vector.hh │ │ │ ├── get-drvs.hh │ │ │ ├── json-to-value.hh │ │ │ ├── meson.build │ │ │ ├── nixexpr.hh │ │ │ ├── parser-state.hh │ │ │ ├── primops.hh │ │ │ ├── print-ambiguous.hh │ │ │ ├── print-options.hh │ │ │ ├── print.hh │ │ │ ├── repl-exit-status.hh │ │ │ ├── search-path.hh │ │ │ ├── static-string-data.hh │ │ │ ├── symbol-table.hh │ │ │ ├── value-to-json.hh │ │ │ ├── value-to-xml.hh │ │ │ ├── value.hh │ │ │ └── value │ │ │ └── context.hh │ ├── json-to-value.cc │ ├── lexer-helpers.cc │ ├── lexer-helpers.hh │ ├── lexer.l │ ├── meson.build │ ├── meson.options │ ├── nix-meson-build-support │ ├── nixexpr.cc │ ├── package.nix │ ├── parser-scanner-decls.hh │ ├── parser.y │ ├── paths.cc │ ├── pch │ │ └── precompiled-headers.hh │ ├── primops.cc │ ├── primops │ │ ├── context.cc │ │ ├── derivation.nix │ │ ├── fetchClosure.cc │ │ ├── fetchMercurial.cc │ │ ├── fetchTree.cc │ │ ├── fromTOML.cc │ │ └── meson.build │ ├── print-ambiguous.cc │ ├── print.cc │ ├── search-path.cc │ ├── value-to-json.cc │ ├── value-to-xml.cc │ ├── value.cc │ └── value │ │ └── context.cc ├── libfetchers-c │ ├── .version │ ├── meson.build │ ├── nix-meson-build-support │ ├── nix_api_fetchers.cc │ ├── nix_api_fetchers.h │ ├── nix_api_fetchers_internal.hh │ └── package.nix ├── libfetchers-tests │ ├── .version │ ├── access-tokens.cc │ ├── data │ │ └── public-key │ │ │ ├── defaultType.json │ │ │ ├── noRoundTrip.json │ │ │ └── simple.json │ ├── git-utils.cc │ ├── git.cc │ ├── input.cc │ ├── meson.build │ ├── nix-meson-build-support │ ├── nix_api_fetchers.cc │ ├── package.nix │ └── public-key.cc ├── libfetchers │ ├── .version │ ├── attrs.cc │ ├── cache.cc │ ├── fetch-settings.cc │ ├── fetch-to-store.cc │ ├── fetchers.cc │ ├── filtering-source-accessor.cc │ ├── git-lfs-fetch.cc │ ├── git-utils.cc │ ├── git.cc │ ├── github.cc │ ├── include │ │ └── nix │ │ │ └── fetchers │ │ │ ├── attrs.hh │ │ │ ├── cache.hh │ │ │ ├── fetch-settings.hh │ │ │ ├── fetch-to-store.hh │ │ │ ├── fetchers.hh │ │ │ ├── filtering-source-accessor.hh │ │ │ ├── git-lfs-fetch.hh │ │ │ ├── git-utils.hh │ │ │ ├── input-cache.hh │ │ │ ├── meson.build │ │ │ ├── registry.hh │ │ │ └── tarball.hh │ ├── indirect.cc │ ├── input-cache.cc │ ├── mercurial.cc │ ├── meson.build │ ├── nix-meson-build-support │ ├── package.nix │ ├── path.cc │ ├── pch │ │ └── precompiled-headers.hh │ ├── registry.cc │ └── tarball.cc ├── libflake-c │ ├── .version │ ├── meson.build │ ├── nix-meson-build-support │ ├── nix_api_flake.cc │ ├── nix_api_flake.h │ ├── nix_api_flake_internal.hh │ └── package.nix ├── libflake-tests │ ├── .version │ ├── data │ │ └── .gitkeep │ ├── flakeref.cc │ ├── meson.build │ ├── nix-meson-build-support │ ├── nix_api_flake.cc │ ├── package.nix │ └── url-name.cc ├── libflake │ ├── .version │ ├── call-flake.nix │ ├── config.cc │ ├── flake-primops.cc │ ├── flake.cc │ ├── flakeref.cc │ ├── include │ │ └── nix │ │ │ └── flake │ │ │ ├── flake-primops.hh │ │ │ ├── flake.hh │ │ │ ├── flakeref.hh │ │ │ ├── lockfile.hh │ │ │ ├── meson.build │ │ │ ├── settings.hh │ │ │ └── url-name.hh │ ├── lockfile.cc │ ├── meson.build │ ├── nix-meson-build-support │ ├── package.nix │ ├── settings.cc │ └── url-name.cc ├── libmain-c │ ├── .version │ ├── meson.build │ ├── nix-meson-build-support │ ├── nix_api_main.cc │ ├── nix_api_main.h │ └── package.nix ├── libmain │ ├── .version │ ├── common-args.cc │ ├── include │ │ └── nix │ │ │ └── main │ │ │ ├── common-args.hh │ │ │ ├── loggers.hh │ │ │ ├── meson.build │ │ │ ├── plugin.hh │ │ │ ├── progress-bar.hh │ │ │ └── shared.hh │ ├── loggers.cc │ ├── meson.build │ ├── nix-meson-build-support │ ├── package.nix │ ├── plugin.cc │ ├── progress-bar.cc │ ├── shared.cc │ └── unix │ │ └── stack.cc ├── libstore-c │ ├── .version │ ├── meson.build │ ├── nix-meson-build-support │ ├── nix_api_store.cc │ ├── nix_api_store.h │ ├── nix_api_store │ │ ├── derivation.h │ │ └── store_path.h │ ├── nix_api_store_internal.h │ └── package.nix ├── libstore-test-support │ ├── .version │ ├── derived-path.cc │ ├── include │ │ └── nix │ │ │ └── store │ │ │ └── tests │ │ │ ├── derived-path.hh │ │ │ ├── libstore.hh │ │ │ ├── meson.build │ │ │ ├── nix_api_store.hh │ │ │ ├── outputs-spec.hh │ │ │ ├── path.hh │ │ │ ├── protocol.hh │ │ │ └── test-main.hh │ ├── meson.build │ ├── nix-meson-build-support │ ├── outputs-spec.cc │ ├── package.nix │ ├── path.cc │ └── test-main.cc ├── libstore-tests │ ├── .version │ ├── bench-main.cc │ ├── build-result.cc │ ├── common-protocol.cc │ ├── content-address.cc │ ├── data │ │ ├── build-result │ │ │ ├── not-deterministic.json │ │ │ ├── output-rejected.json │ │ │ └── success.json │ │ ├── common-protocol │ │ │ ├── content-address.bin │ │ │ ├── content-address.json │ │ │ ├── drv-output.bin │ │ │ ├── drv-output.json │ │ │ ├── optional-content-address.bin │ │ │ ├── optional-content-address.json │ │ │ ├── optional-store-path.bin │ │ │ ├── optional-store-path.json │ │ │ ├── realisation-with-deps.bin │ │ │ ├── realisation-with-deps.json │ │ │ ├── realisation.bin │ │ │ ├── realisation.json │ │ │ ├── set.bin │ │ │ ├── set.json │ │ │ ├── store-path.bin │ │ │ ├── store-path.json │ │ │ ├── string.bin │ │ │ ├── string.json │ │ │ ├── vector.bin │ │ │ └── vector.json │ │ ├── content-address │ │ │ ├── nar.json │ │ │ └── text.json │ │ ├── derivation │ │ │ ├── bad-old-version-dyn-deps.drv │ │ │ ├── bad-version.drv │ │ │ ├── ca │ │ │ │ ├── advanced-attributes-defaults.drv │ │ │ │ ├── advanced-attributes-defaults.json │ │ │ │ ├── advanced-attributes-structured-attrs-defaults.drv │ │ │ │ ├── advanced-attributes-structured-attrs-defaults.json │ │ │ │ ├── advanced-attributes-structured-attrs.drv │ │ │ │ ├── advanced-attributes-structured-attrs.json │ │ │ │ ├── advanced-attributes.drv │ │ │ │ ├── advanced-attributes.json │ │ │ │ ├── all_set.json │ │ │ │ ├── self-contained.json │ │ │ │ └── structuredAttrs_all_set.json │ │ │ ├── dyn-dep-derivation.drv │ │ │ ├── dyn-dep-derivation.json │ │ │ ├── firefox.drv │ │ │ ├── hello.drv │ │ │ ├── ia │ │ │ │ ├── advanced-attributes-defaults.drv │ │ │ │ ├── advanced-attributes-defaults.json │ │ │ │ ├── advanced-attributes-structured-attrs-defaults.drv │ │ │ │ ├── advanced-attributes-structured-attrs-defaults.json │ │ │ │ ├── advanced-attributes-structured-attrs.drv │ │ │ │ ├── advanced-attributes-structured-attrs.json │ │ │ │ ├── advanced-attributes.drv │ │ │ │ ├── advanced-attributes.json │ │ │ │ ├── all_set.json │ │ │ │ ├── defaults.json │ │ │ │ ├── structuredAttrs_all_set.json │ │ │ │ └── structuredAttrs_defaults.json │ │ │ ├── invariants │ │ │ │ ├── bad-depends-on-drv-pre.json │ │ │ │ ├── bad-env-var.json │ │ │ │ ├── bad-path.json │ │ │ │ ├── depends-on-drv-pre.json │ │ │ │ ├── filled-in-deferred-empty-env-var-post.json │ │ │ │ ├── filled-in-deferred-empty-env-var-pre.json │ │ │ │ ├── filled-in-deferred-no-env-var-post.json │ │ │ │ ├── filled-in-deferred-no-env-var-pre.json │ │ │ │ └── filled-in-idempotent.json │ │ │ ├── output-caFixedFlat.json │ │ │ ├── output-caFixedNAR.json │ │ │ ├── output-caFixedText.json │ │ │ ├── output-caFloating.json │ │ │ ├── output-deferred.json │ │ │ ├── output-impure.json │ │ │ ├── output-inputAddressed.json │ │ │ ├── simple-derivation.drv │ │ │ └── simple-derivation.json │ │ ├── derived-path │ │ │ ├── multi_built_built.json │ │ │ ├── multi_built_built_wildcard.json │ │ │ ├── multi_opaque.json │ │ │ ├── mutli_built.json │ │ │ ├── single_built.json │ │ │ ├── single_built_built.json │ │ │ └── single_opaque.json │ │ ├── dummy-store │ │ │ ├── empty.json │ │ │ ├── one-derivation.json │ │ │ ├── one-flat-file.json │ │ │ └── one-realisation.json │ │ ├── machines │ │ │ ├── bad_format │ │ │ └── valid │ │ ├── nar-info │ │ │ ├── impure.json │ │ │ └── pure.json │ │ ├── outputs-spec │ │ │ ├── all.json │ │ │ ├── extended │ │ │ │ ├── all.json │ │ │ │ ├── def.json │ │ │ │ ├── name.json │ │ │ │ └── names.json │ │ │ ├── name.json │ │ │ └── names.json │ │ ├── path-info │ │ │ ├── empty_impure.json │ │ │ ├── empty_pure.json │ │ │ ├── impure.json │ │ │ └── pure.json │ │ ├── realisation │ │ │ ├── simple.json │ │ │ ├── with-dependent-realisations.json │ │ │ └── with-signature.json │ │ ├── serve-protocol │ │ │ ├── build-options-2.1.bin │ │ │ ├── build-options-2.2.bin │ │ │ ├── build-options-2.3.bin │ │ │ ├── build-options-2.7.bin │ │ │ ├── build-result-2.2.bin │ │ │ ├── build-result-2.2.json │ │ │ ├── build-result-2.3.bin │ │ │ ├── build-result-2.3.json │ │ │ ├── build-result-2.6.bin │ │ │ ├── build-result-2.6.json │ │ │ ├── content-address.bin │ │ │ ├── content-address.json │ │ │ ├── drv-output.bin │ │ │ ├── drv-output.json │ │ │ ├── handshake-to-client.bin │ │ │ ├── optional-content-address.bin │ │ │ ├── optional-content-address.json │ │ │ ├── optional-store-path.bin │ │ │ ├── optional-store-path.json │ │ │ ├── realisation-with-deps.bin │ │ │ ├── realisation-with-deps.json │ │ │ ├── realisation.bin │ │ │ ├── realisation.json │ │ │ ├── set.bin │ │ │ ├── set.json │ │ │ ├── store-path.bin │ │ │ ├── store-path.json │ │ │ ├── string.bin │ │ │ ├── string.json │ │ │ ├── unkeyed-valid-path-info-2.3.bin │ │ │ ├── unkeyed-valid-path-info-2.3.json │ │ │ ├── unkeyed-valid-path-info-2.4.bin │ │ │ ├── unkeyed-valid-path-info-2.4.json │ │ │ ├── vector.bin │ │ │ └── vector.json │ │ ├── store-path │ │ │ └── simple.json │ │ ├── store-reference │ │ │ ├── auto.txt │ │ │ ├── auto_param.txt │ │ │ ├── daemon_shorthand.txt │ │ │ ├── local_1.txt │ │ │ ├── local_2.txt │ │ │ ├── local_3.txt │ │ │ ├── local_3_no_percent.txt │ │ │ ├── local_shorthand_1.txt │ │ │ ├── local_shorthand_2.txt │ │ │ ├── local_shorthand_3.txt │ │ │ ├── ssh.txt │ │ │ ├── ssh_unbracketed_ipv6_1.txt │ │ │ ├── ssh_unbracketed_ipv6_2.txt │ │ │ ├── ssh_unbracketed_ipv6_3.txt │ │ │ ├── ssh_unbracketed_ipv6_4.txt │ │ │ ├── ssh_unbracketed_ipv6_5.txt │ │ │ ├── ssh_unbracketed_ipv6_6.txt │ │ │ ├── ssh_unbracketed_ipv6_7.txt │ │ │ ├── ssh_unbracketed_ipv6_8.txt │ │ │ ├── ssh_unbracketed_ipv6_9.txt │ │ │ ├── unix.txt │ │ │ └── unix_shorthand.txt │ │ └── worker-protocol │ │ │ ├── build-mode.bin │ │ │ ├── build-mode.json │ │ │ ├── build-result-1.27.bin │ │ │ ├── build-result-1.27.json │ │ │ ├── build-result-1.28.bin │ │ │ ├── build-result-1.28.json │ │ │ ├── build-result-1.29.bin │ │ │ ├── build-result-1.29.json │ │ │ ├── build-result-1.37.bin │ │ │ ├── build-result-1.37.json │ │ │ ├── client-handshake-info_1_30.bin │ │ │ ├── client-handshake-info_1_33.bin │ │ │ ├── client-handshake-info_1_35.bin │ │ │ ├── content-address.bin │ │ │ ├── content-address.json │ │ │ ├── derived-path-1.29.bin │ │ │ ├── derived-path-1.29.json │ │ │ ├── derived-path-1.30.bin │ │ │ ├── derived-path-1.30.json │ │ │ ├── drv-output.bin │ │ │ ├── drv-output.json │ │ │ ├── handshake-to-client.bin │ │ │ ├── keyed-build-result-1.29.bin │ │ │ ├── keyed-build-result-1.29.json │ │ │ ├── optional-content-address.bin │ │ │ ├── optional-content-address.json │ │ │ ├── optional-store-path.bin │ │ │ ├── optional-store-path.json │ │ │ ├── optional-trusted-flag.bin │ │ │ ├── optional-trusted-flag.json │ │ │ ├── realisation-with-deps.bin │ │ │ ├── realisation-with-deps.json │ │ │ ├── realisation.bin │ │ │ ├── realisation.json │ │ │ ├── set.bin │ │ │ ├── set.json │ │ │ ├── store-path.bin │ │ │ ├── store-path.json │ │ │ ├── string.bin │ │ │ ├── string.json │ │ │ ├── unkeyed-valid-path-info-1.15.bin │ │ │ ├── unkeyed-valid-path-info-1.15.json │ │ │ ├── valid-path-info-1.15.bin │ │ │ ├── valid-path-info-1.15.json │ │ │ ├── valid-path-info-1.16.bin │ │ │ ├── valid-path-info-1.16.json │ │ │ ├── vector.bin │ │ │ └── vector.json │ ├── derivation-advanced-attrs.cc │ ├── derivation-parser-bench.cc │ ├── derivation │ │ ├── external-formats.cc │ │ ├── invariants.cc │ │ └── test-support.hh │ ├── derived-path.cc │ ├── downstream-placeholder.cc │ ├── dummy-store.cc │ ├── http-binary-cache-store.cc │ ├── legacy-ssh-store.cc │ ├── local-binary-cache-store.cc │ ├── local-overlay-store.cc │ ├── local-store.cc │ ├── machines.cc │ ├── main.cc │ ├── meson.build │ ├── meson.options │ ├── nar-info-disk-cache.cc │ ├── nar-info.cc │ ├── nix-meson-build-support │ ├── nix_api_store.cc │ ├── outputs-spec.cc │ ├── package.nix │ ├── path-info.cc │ ├── path.cc │ ├── pch │ │ └── precompiled-headers.hh │ ├── realisation.cc │ ├── ref-scan-bench.cc │ ├── references.cc │ ├── s3-binary-cache-store.cc │ ├── s3-url.cc │ ├── serve-protocol.cc │ ├── ssh-store.cc │ ├── store-reference.cc │ ├── uds-remote-store.cc │ ├── worker-protocol.cc │ └── write-derivation.cc ├── libstore │ ├── .version │ ├── aws-creds.cc │ ├── binary-cache-store.cc │ ├── build-result.cc │ ├── build │ │ ├── derivation-builder.cc │ │ ├── derivation-building-goal.cc │ │ ├── derivation-check.cc │ │ ├── derivation-check.hh │ │ ├── derivation-env-desugar.cc │ │ ├── derivation-goal.cc │ │ ├── derivation-resolution-goal.cc │ │ ├── derivation-trampoline-goal.cc │ │ ├── drv-output-substitution-goal.cc │ │ ├── entry-points.cc │ │ ├── goal.cc │ │ ├── substitution-goal.cc │ │ └── worker.cc │ ├── builtins │ │ ├── buildenv.cc │ │ ├── fetchurl.cc │ │ └── unpack-channel.cc │ ├── ca-specific-schema.sql │ ├── common-protocol.cc │ ├── common-ssh-store-config.cc │ ├── content-address.cc │ ├── daemon.cc │ ├── derivation-options.cc │ ├── derivations.cc │ ├── derived-path-map.cc │ ├── derived-path.cc │ ├── downstream-placeholder.cc │ ├── dummy-store.cc │ ├── dummy-store.md │ ├── export-import.cc │ ├── filetransfer.cc │ ├── gc.cc │ ├── globals.cc │ ├── http-binary-cache-store.cc │ ├── http-binary-cache-store.md │ ├── include │ │ └── nix │ │ │ └── store │ │ │ ├── aws-creds.hh │ │ │ ├── binary-cache-store.hh │ │ │ ├── build-result.hh │ │ │ ├── build │ │ │ ├── derivation-builder.hh │ │ │ ├── derivation-building-goal.hh │ │ │ ├── derivation-building-misc.hh │ │ │ ├── derivation-env-desugar.hh │ │ │ ├── derivation-goal.hh │ │ │ ├── derivation-resolution-goal.hh │ │ │ ├── derivation-trampoline-goal.hh │ │ │ ├── drv-output-substitution-goal.hh │ │ │ ├── goal.hh │ │ │ ├── substitution-goal.hh │ │ │ └── worker.hh │ │ │ ├── builtins.hh │ │ │ ├── builtins │ │ │ └── buildenv.hh │ │ │ ├── common-protocol-impl.hh │ │ │ ├── common-protocol.hh │ │ │ ├── common-ssh-store-config.hh │ │ │ ├── content-address.hh │ │ │ ├── daemon.hh │ │ │ ├── derivation-options.hh │ │ │ ├── derivations.hh │ │ │ ├── derived-path-map.hh │ │ │ ├── derived-path.hh │ │ │ ├── downstream-placeholder.hh │ │ │ ├── dummy-store-impl.hh │ │ │ ├── dummy-store.hh │ │ │ ├── export-import.hh │ │ │ ├── filetransfer.hh │ │ │ ├── gc-store.hh │ │ │ ├── globals.hh │ │ │ ├── http-binary-cache-store.hh │ │ │ ├── indirect-root-store.hh │ │ │ ├── keys.hh │ │ │ ├── legacy-ssh-store.hh │ │ │ ├── length-prefixed-protocol-helper.hh │ │ │ ├── local-binary-cache-store.hh │ │ │ ├── local-fs-store.hh │ │ │ ├── local-overlay-store.hh │ │ │ ├── local-store.hh │ │ │ ├── log-store.hh │ │ │ ├── machines.hh │ │ │ ├── make-content-addressed.hh │ │ │ ├── meson.build │ │ │ ├── names.hh │ │ │ ├── nar-info-disk-cache.hh │ │ │ ├── nar-info.hh │ │ │ ├── outputs-spec.hh │ │ │ ├── parsed-derivations.hh │ │ │ ├── path-info.hh │ │ │ ├── path-references.hh │ │ │ ├── path-regex.hh │ │ │ ├── path-with-outputs.hh │ │ │ ├── path.hh │ │ │ ├── pathlocks.hh │ │ │ ├── posix-fs-canonicalise.hh │ │ │ ├── profiles.hh │ │ │ ├── realisation.hh │ │ │ ├── references.hh │ │ │ ├── remote-fs-accessor.hh │ │ │ ├── remote-store-connection.hh │ │ │ ├── remote-store.hh │ │ │ ├── restricted-store.hh │ │ │ ├── s3-binary-cache-store.hh │ │ │ ├── s3-url.hh │ │ │ ├── serve-protocol-connection.hh │ │ │ ├── serve-protocol-impl.hh │ │ │ ├── serve-protocol.hh │ │ │ ├── sqlite.hh │ │ │ ├── ssh-store.hh │ │ │ ├── ssh.hh │ │ │ ├── store-api.hh │ │ │ ├── store-cast.hh │ │ │ ├── store-dir-config.hh │ │ │ ├── store-open.hh │ │ │ ├── store-reference.hh │ │ │ ├── store-registration.hh │ │ │ ├── uds-remote-store.hh │ │ │ ├── worker-protocol-connection.hh │ │ │ ├── worker-protocol-impl.hh │ │ │ └── worker-protocol.hh │ ├── indirect-root-store.cc │ ├── keys.cc │ ├── legacy-ssh-store.cc │ ├── legacy-ssh-store.md │ ├── linux │ │ ├── fchmodat2-compat.hh │ │ ├── include │ │ │ └── nix │ │ │ │ └── store │ │ │ │ ├── meson.build │ │ │ │ └── personality.hh │ │ ├── meson.build │ │ └── personality.cc │ ├── local-binary-cache-store.cc │ ├── local-binary-cache-store.md │ ├── local-fs-store.cc │ ├── local-overlay-store.cc │ ├── local-overlay-store.md │ ├── local-store.cc │ ├── local-store.md │ ├── log-store.cc │ ├── machines.cc │ ├── make-content-addressed.cc │ ├── meson.build │ ├── meson.options │ ├── misc.cc │ ├── mounted-ssh-store.md │ ├── names.cc │ ├── nar-info-disk-cache.cc │ ├── nar-info.cc │ ├── nix-meson-build-support │ ├── optimise-store.cc │ ├── outputs-spec.cc │ ├── package.nix │ ├── parsed-derivations.cc │ ├── path-info.cc │ ├── path-references.cc │ ├── path-with-outputs.cc │ ├── path.cc │ ├── pathlocks.cc │ ├── pch │ │ └── precompiled-headers.hh │ ├── posix-fs-canonicalise.cc │ ├── profiles.cc │ ├── realisation.cc │ ├── references.cc │ ├── remote-fs-accessor.cc │ ├── remote-store.cc │ ├── restricted-store.cc │ ├── s3-binary-cache-store.cc │ ├── s3-binary-cache-store.md │ ├── s3-url.cc │ ├── schema.sql │ ├── serve-protocol-connection.cc │ ├── serve-protocol.cc │ ├── sqlite.cc │ ├── ssh-store.cc │ ├── ssh-store.md │ ├── ssh.cc │ ├── store-api.cc │ ├── store-dir-config.cc │ ├── store-reference.cc │ ├── store-registration.cc │ ├── uds-remote-store.cc │ ├── uds-remote-store.md │ ├── unix │ │ ├── build │ │ │ ├── child.cc │ │ │ ├── chroot-derivation-builder.cc │ │ │ ├── darwin-derivation-builder.cc │ │ │ ├── derivation-builder.cc │ │ │ ├── external-derivation-builder.cc │ │ │ ├── hook-instance.cc │ │ │ ├── linux-derivation-builder.cc │ │ │ ├── sandbox-defaults.sb │ │ │ ├── sandbox-minimal.sb │ │ │ └── sandbox-network.sb │ │ ├── include │ │ │ └── nix │ │ │ │ └── store │ │ │ │ ├── build │ │ │ │ ├── child.hh │ │ │ │ └── hook-instance.hh │ │ │ │ ├── meson.build │ │ │ │ └── user-lock.hh │ │ ├── meson.build │ │ ├── pathlocks.cc │ │ └── user-lock.cc │ ├── windows │ │ ├── meson.build │ │ └── pathlocks.cc │ ├── worker-protocol-connection.cc │ └── worker-protocol.cc ├── libutil-c │ ├── .version │ ├── meson.build │ ├── meson.options │ ├── nix-meson-build-support │ ├── nix_api_util.cc │ ├── nix_api_util.h │ ├── nix_api_util_internal.h │ └── package.nix ├── libutil-test-support │ ├── .version │ ├── hash.cc │ ├── include │ │ └── nix │ │ │ └── util │ │ │ └── tests │ │ │ ├── characterization.hh │ │ │ ├── gmock-matchers.hh │ │ │ ├── gtest-with-params.hh │ │ │ ├── hash.hh │ │ │ ├── json-characterization.hh │ │ │ ├── meson.build │ │ │ ├── nix_api_util.hh │ │ │ └── string_callback.hh │ ├── meson.build │ ├── nix-meson-build-support │ ├── package.nix │ └── string_callback.cc ├── libutil-tests │ ├── .version │ ├── alignment.cc │ ├── archive.cc │ ├── args.cc │ ├── base-n.cc │ ├── canon-path.cc │ ├── checked-arithmetic.cc │ ├── chunked-vector.cc │ ├── closure.cc │ ├── compression.cc │ ├── config.cc │ ├── data │ │ ├── git │ │ │ ├── check-data.sh │ │ │ ├── hello-world-blob.bin │ │ │ ├── hello-world.bin │ │ │ ├── tree-sha1.bin │ │ │ ├── tree-sha1.txt │ │ │ ├── tree-sha256.bin │ │ │ └── tree-sha256.txt │ │ ├── hash │ │ │ ├── blake3-base64.json │ │ │ ├── sha256-base16.json │ │ │ ├── sha256-base64.json │ │ │ ├── sha256-nix32.json │ │ │ └── simple.json │ │ ├── memory-source-accessor │ │ │ ├── complex.json │ │ │ └── simple.json │ │ ├── nar-listing │ │ │ ├── deep.json │ │ │ └── shallow.json │ │ └── nars │ │ │ ├── dot.nar │ │ │ ├── dotdot.nar │ │ │ ├── empty.nar │ │ │ ├── executable-after-contents.nar │ │ │ ├── invalid-tag-instead-of-contents.nar │ │ │ ├── name-after-node.nar │ │ │ ├── nul-character.nar │ │ │ └── slash.nar │ ├── executable-path.cc │ ├── file-content-address.cc │ ├── file-system.cc │ ├── git.cc │ ├── hash.cc │ ├── hilite.cc │ ├── json-utils.cc │ ├── logging.cc │ ├── lru-cache.cc │ ├── memory-source-accessor.cc │ ├── meson.build │ ├── monitorfdhup.cc │ ├── nar-listing.cc │ ├── nix-meson-build-support │ ├── nix_api_util.cc │ ├── nix_api_util_internal.cc │ ├── package.nix │ ├── pch │ │ └── precompiled-headers.hh │ ├── pool.cc │ ├── position.cc │ ├── processes.cc │ ├── sort.cc │ ├── spawn.cc │ ├── strings.cc │ ├── suggestions.cc │ ├── terminal.cc │ ├── topo-sort.cc │ ├── url.cc │ ├── util.cc │ └── xml-writer.cc ├── libutil │ ├── .version │ ├── archive.cc │ ├── args.cc │ ├── base-n.cc │ ├── base-nix-32.cc │ ├── canon-path.cc │ ├── compression.cc │ ├── compute-levels.cc │ ├── config-global.cc │ ├── configuration.cc │ ├── current-process.cc │ ├── english.cc │ ├── environment-variables.cc │ ├── error.cc │ ├── executable-path.cc │ ├── exit.cc │ ├── experimental-features.cc │ ├── file-content-address.cc │ ├── file-descriptor.cc │ ├── file-system.cc │ ├── freebsd │ │ ├── freebsd-jail.cc │ │ ├── include │ │ │ └── nix │ │ │ │ └── util │ │ │ │ ├── freebsd-jail.hh │ │ │ │ └── meson.build │ │ └── meson.build │ ├── fs-sink.cc │ ├── git.cc │ ├── hash.cc │ ├── hilite.cc │ ├── include │ │ └── nix │ │ │ └── util │ │ │ ├── abstract-setting-to-json.hh │ │ │ ├── alignment.hh │ │ │ ├── ansicolor.hh │ │ │ ├── archive.hh │ │ │ ├── args.hh │ │ │ ├── args │ │ │ └── root.hh │ │ │ ├── array-from-string-literal.hh │ │ │ ├── base-n.hh │ │ │ ├── base-nix-32.hh │ │ │ ├── callback.hh │ │ │ ├── canon-path.hh │ │ │ ├── checked-arithmetic.hh │ │ │ ├── chunked-vector.hh │ │ │ ├── closure.hh │ │ │ ├── comparator.hh │ │ │ ├── compression.hh │ │ │ ├── compute-levels.hh │ │ │ ├── config-global.hh │ │ │ ├── config-impl.hh │ │ │ ├── configuration.hh │ │ │ ├── current-process.hh │ │ │ ├── english.hh │ │ │ ├── environment-variables.hh │ │ │ ├── error.hh │ │ │ ├── exec.hh │ │ │ ├── executable-path.hh │ │ │ ├── exit.hh │ │ │ ├── experimental-features.hh │ │ │ ├── file-content-address.hh │ │ │ ├── file-descriptor.hh │ │ │ ├── file-path-impl.hh │ │ │ ├── file-path.hh │ │ │ ├── file-system.hh │ │ │ ├── finally.hh │ │ │ ├── fmt.hh │ │ │ ├── fs-sink.hh │ │ │ ├── git.hh │ │ │ ├── hash.hh │ │ │ ├── hilite.hh │ │ │ ├── json-impls.hh │ │ │ ├── json-non-null.hh │ │ │ ├── json-utils.hh │ │ │ ├── logging.hh │ │ │ ├── lru-cache.hh │ │ │ ├── memory-source-accessor.hh │ │ │ ├── meson.build │ │ │ ├── mounted-source-accessor.hh │ │ │ ├── muxable-pipe.hh │ │ │ ├── nar-accessor.hh │ │ │ ├── os-string.hh │ │ │ ├── pool.hh │ │ │ ├── pos-idx.hh │ │ │ ├── pos-table.hh │ │ │ ├── position.hh │ │ │ ├── posix-source-accessor.hh │ │ │ ├── processes.hh │ │ │ ├── ref.hh │ │ │ ├── regex-combinators.hh │ │ │ ├── repair-flag.hh │ │ │ ├── serialise.hh │ │ │ ├── signals.hh │ │ │ ├── signature │ │ │ ├── local-keys.hh │ │ │ └── signer.hh │ │ │ ├── sort.hh │ │ │ ├── source-accessor.hh │ │ │ ├── source-path.hh │ │ │ ├── split.hh │ │ │ ├── std-hash.hh │ │ │ ├── strings-inline.hh │ │ │ ├── strings.hh │ │ │ ├── suggestions.hh │ │ │ ├── sync.hh │ │ │ ├── tarfile.hh │ │ │ ├── terminal.hh │ │ │ ├── thread-pool.hh │ │ │ ├── topo-sort.hh │ │ │ ├── types.hh │ │ │ ├── unix-domain-socket.hh │ │ │ ├── url-parts.hh │ │ │ ├── url.hh │ │ │ ├── users.hh │ │ │ ├── util.hh │ │ │ ├── variant-wrapper.hh │ │ │ └── xml-writer.hh │ ├── json-utils.cc │ ├── linux │ │ ├── cgroup.cc │ │ ├── include │ │ │ └── nix │ │ │ │ └── util │ │ │ │ ├── cgroup.hh │ │ │ │ ├── linux-namespaces.hh │ │ │ │ └── meson.build │ │ ├── linux-namespaces.cc │ │ └── meson.build │ ├── logging.cc │ ├── memory-source-accessor.cc │ ├── memory-source-accessor │ │ └── json.cc │ ├── meson.build │ ├── meson.options │ ├── mounted-source-accessor.cc │ ├── nar-accessor.cc │ ├── nix-meson-build-support │ ├── package.nix │ ├── pch │ │ └── precompiled-headers.hh │ ├── pos-table.cc │ ├── position.cc │ ├── posix-source-accessor.cc │ ├── serialise.cc │ ├── signature │ │ ├── local-keys.cc │ │ └── signer.cc │ ├── source-accessor.cc │ ├── source-path.cc │ ├── strings.cc │ ├── suggestions.cc │ ├── tarfile.cc │ ├── tee-logger.cc │ ├── terminal.cc │ ├── thread-pool.cc │ ├── union-source-accessor.cc │ ├── unix-domain-socket.cc │ ├── unix │ │ ├── current-process.cc │ │ ├── environment-variables.cc │ │ ├── file-descriptor.cc │ │ ├── file-path.cc │ │ ├── file-system.cc │ │ ├── include │ │ │ └── nix │ │ │ │ └── util │ │ │ │ ├── meson.build │ │ │ │ ├── monitor-fd.hh │ │ │ │ └── signals-impl.hh │ │ ├── meson.build │ │ ├── muxable-pipe.cc │ │ ├── os-string.cc │ │ ├── processes.cc │ │ ├── signals.cc │ │ └── users.cc │ ├── url.cc │ ├── users.cc │ ├── util.cc │ ├── widecharwidth │ │ ├── LICENSE │ │ └── widechar_width.h │ ├── windows │ │ ├── current-process.cc │ │ ├── environment-variables.cc │ │ ├── file-descriptor.cc │ │ ├── file-path.cc │ │ ├── file-system.cc │ │ ├── include │ │ │ └── nix │ │ │ │ └── util │ │ │ │ ├── meson.build │ │ │ │ ├── signals-impl.hh │ │ │ │ ├── windows-async-pipe.hh │ │ │ │ └── windows-error.hh │ │ ├── meson.build │ │ ├── muxable-pipe.cc │ │ ├── os-string.cc │ │ ├── processes.cc │ │ ├── users.cc │ │ ├── windows-async-pipe.cc │ │ └── windows-error.cc │ └── xml-writer.cc ├── nix-functional-tests ├── nix-manual ├── nix │ ├── .version │ ├── add-to-store.cc │ ├── add.md │ ├── app.cc │ ├── build-remote │ │ └── build-remote.cc │ ├── build.cc │ ├── build.md │ ├── bundle.cc │ ├── bundle.md │ ├── cat.cc │ ├── config-check.cc │ ├── config.cc │ ├── copy.cc │ ├── copy.md │ ├── crash-handler.cc │ ├── crash-handler.hh │ ├── derivation-add.cc │ ├── derivation-add.md │ ├── derivation-show.cc │ ├── derivation-show.md │ ├── derivation.cc │ ├── develop.cc │ ├── develop.md │ ├── diff-closures.cc │ ├── diff-closures.md │ ├── doc │ ├── dump-path.cc │ ├── edit.cc │ ├── edit.md │ ├── env.cc │ ├── eval.cc │ ├── eval.md │ ├── flake-archive.md │ ├── flake-check.md │ ├── flake-clone.md │ ├── flake-command.hh │ ├── flake-init.md │ ├── flake-lock.md │ ├── flake-metadata.md │ ├── flake-new.md │ ├── flake-prefetch-inputs.cc │ ├── flake-prefetch-inputs.md │ ├── flake-prefetch.md │ ├── flake-show.md │ ├── flake-update.md │ ├── flake.cc │ ├── flake.md │ ├── formatter-build.md │ ├── formatter-run.md │ ├── formatter.cc │ ├── get-env.sh │ ├── hash-convert.md │ ├── hash.cc │ ├── help-stores.md │ ├── help.md │ ├── key-convert-secret-to-public.md │ ├── key-generate-secret.md │ ├── log.cc │ ├── log.md │ ├── ls.cc │ ├── main.cc │ ├── make-content-addressed.cc │ ├── make-content-addressed.md │ ├── man-pages.cc │ ├── man-pages.hh │ ├── meson.build │ ├── meson.options │ ├── misc │ ├── nar-cat.md │ ├── nar-dump-path.md │ ├── nar-ls.md │ ├── nar.cc │ ├── nar.md │ ├── nix-build │ │ └── nix-build.cc │ ├── nix-channel │ │ ├── nix-channel.cc │ │ └── unpack-channel.nix │ ├── nix-collect-garbage │ │ └── nix-collect-garbage.cc │ ├── nix-copy-closure │ │ └── nix-copy-closure.cc │ ├── nix-env │ │ ├── buildenv.nix │ │ ├── nix-env.cc │ │ ├── user-env.cc │ │ └── user-env.hh │ ├── nix-instantiate │ │ └── nix-instantiate.cc │ ├── nix-meson-build-support │ ├── nix-store │ │ ├── dotgraph.cc │ │ ├── dotgraph.hh │ │ ├── graphml.cc │ │ ├── graphml.hh │ │ └── nix-store.cc │ ├── nix.md │ ├── optimise-store.cc │ ├── optimise-store.md │ ├── package.nix │ ├── path-from-hash-part.cc │ ├── path-from-hash-part.md │ ├── path-info.cc │ ├── path-info.md │ ├── pch │ │ └── precompiled-headers.hh │ ├── prefetch.cc │ ├── print-dev-env.md │ ├── profile-add.md │ ├── profile-diff-closures.md │ ├── profile-history.md │ ├── profile-list.md │ ├── profile-remove.md │ ├── profile-rollback.md │ ├── profile-upgrade.md │ ├── profile-wipe-history.md │ ├── profile.cc │ ├── profile.md │ ├── profiles.md │ ├── realisation.cc │ ├── realisation │ │ └── info.md │ ├── registry-add.md │ ├── registry-list.md │ ├── registry-pin.md │ ├── registry-remove.md │ ├── registry-resolve.md │ ├── registry.cc │ ├── registry.md │ ├── repl.cc │ ├── repl.md │ ├── run.cc │ ├── run.hh │ ├── run.md │ ├── scripts │ ├── search.cc │ ├── search.md │ ├── self-exe.cc │ ├── self-exe.hh │ ├── shell.md │ ├── sigs.cc │ ├── store-cat.md │ ├── store-copy-log.cc │ ├── store-copy-log.md │ ├── store-copy-sigs.md │ ├── store-delete.cc │ ├── store-delete.md │ ├── store-dump-path.md │ ├── store-gc.cc │ ├── store-gc.md │ ├── store-info.cc │ ├── store-info.md │ ├── store-ls.md │ ├── store-prefetch-file.md │ ├── store-repair.cc │ ├── store-repair.md │ ├── store.cc │ ├── unix │ │ ├── daemon.cc │ │ └── daemon.md │ ├── upgrade-nix.cc │ ├── upgrade-nix.md │ ├── verify.cc │ ├── verify.md │ ├── why-depends.cc │ └── why-depends.md └── perl │ ├── .version │ ├── .yath.rc.in │ ├── MANIFEST │ ├── lib │ └── Nix │ │ ├── Config.pm.in │ │ ├── CopyClosure.pm │ │ ├── Manifest.pm │ │ ├── SSH.pm │ │ ├── Store.pm │ │ ├── Store.xs │ │ ├── Utils.pm │ │ └── meson.build │ ├── meson.build │ ├── meson.options │ ├── package.nix │ └── t │ ├── init.t │ └── meson.build └── tests ├── functional ├── .version ├── add.sh ├── bash-profile.sh ├── big-derivation-attr.nix ├── binary-cache-build-remote.sh ├── binary-cache.sh ├── brotli.sh ├── build-cores.nix ├── build-cores.sh ├── build-delete.sh ├── build-dry.sh ├── build-hook-ca-fixed.nix ├── build-hook-ca-floating.nix ├── build-hook-list-paths.sh ├── build-hook.nix ├── build-remote-content-addressed-fixed.sh ├── build-remote-content-addressed-floating.sh ├── build-remote-input-addressed.sh ├── build-remote-trustless-after.sh ├── build-remote-trustless-should-fail-0.sh ├── build-remote-trustless-should-pass-0.sh ├── build-remote-trustless-should-pass-1.sh ├── build-remote-trustless-should-pass-2.sh ├── build-remote-trustless-should-pass-3.sh ├── build-remote-trustless.sh ├── build-remote-with-mounted-ssh-ng.sh ├── build-remote.sh ├── build.sh ├── ca-shell.nix ├── ca │ ├── build-cache.sh │ ├── build-delete.sh │ ├── build-dry.sh │ ├── build-with-garbage-path.sh │ ├── build.sh │ ├── common.sh │ ├── concurrent-builds.sh │ ├── config.nix │ ├── config.nix.in │ ├── content-addressed.nix │ ├── derivation-advanced-attributes.sh │ ├── derivation-json.sh │ ├── duplicate-realisation-in-closure.sh │ ├── eval-store.sh │ ├── flake.nix │ ├── gc.sh │ ├── import-from-derivation.sh │ ├── issue-13247.nix │ ├── issue-13247.sh │ ├── meson.build │ ├── multiple-outputs.sh │ ├── new-build-cmd.sh │ ├── nix-copy.sh │ ├── nix-run.sh │ ├── nix-shell.sh │ ├── nondeterministic.nix │ ├── post-hook.sh │ ├── racy.nix │ ├── recursive.sh │ ├── repl.sh │ ├── selfref-gc.sh │ ├── signatures.sh │ ├── substitute.sh │ └── why-depends.sh ├── case-collision.nar ├── case.nar ├── characterisation-test-infra.sh ├── characterisation │ ├── empty │ └── framework.sh ├── check-refs.nix ├── check-refs.sh ├── check-reqs.nix ├── check-reqs.sh ├── check.nix ├── check.sh ├── chroot-store.sh ├── common.sh ├── common │ ├── functions.sh │ ├── init.sh │ ├── meson.build │ ├── paths.sh │ ├── subst-vars.sh.in │ ├── test-root.sh │ └── vars.sh ├── completions.sh ├── compression-levels.sh ├── compute-levels.sh ├── config.nix ├── config.nix.in ├── config.sh ├── config │ ├── extra-config.conf │ ├── nix-with-bang-include.conf │ ├── nix-with-include.conf │ └── nix-with-substituters.conf ├── db-migration.sh ├── debugger.sh ├── dependencies.builder0.sh ├── dependencies.nix ├── dependencies.sh ├── derivation-advanced-attributes.sh ├── derivation-json.sh ├── derivation │ ├── advanced-attributes-defaults.nix │ ├── advanced-attributes-structured-attrs-defaults.nix │ ├── advanced-attributes-structured-attrs.nix │ ├── advanced-attributes.nix │ ├── ca │ │ ├── advanced-attributes-defaults.drv │ │ ├── advanced-attributes-structured-attrs-defaults.drv │ │ ├── advanced-attributes-structured-attrs.drv │ │ └── advanced-attributes.drv │ └── ia │ │ ├── advanced-attributes-defaults.drv │ │ ├── advanced-attributes-structured-attrs-defaults.drv │ │ ├── advanced-attributes-structured-attrs.drv │ │ └── advanced-attributes.drv ├── dummy ├── dump-db.sh ├── duplicate.nar ├── dyn-drv │ ├── build-built-drv.sh │ ├── common.sh │ ├── config.nix │ ├── config.nix.in │ ├── dep-built-drv-2.sh │ ├── dep-built-drv.sh │ ├── eval-outputOf.sh │ ├── failing-outer.sh │ ├── meson.build │ ├── non-trivial.nix │ ├── old-daemon-error-hack.nix │ ├── old-daemon-error-hack.sh │ ├── recursive-mod-json.nix │ ├── recursive-mod-json.sh │ ├── text-hashed-output.nix │ └── text-hashed-output.sh ├── eval-store.sh ├── eval.nix ├── eval.sh ├── experimental-features.sh ├── export-graph.nix ├── export-graph.sh ├── export.sh ├── external-builders.sh ├── extra-sandbox-profile.nix ├── extra-sandbox-profile.sh ├── failing.nix ├── fetchClosure.sh ├── fetchGit.sh ├── fetchGitRefs.sh ├── fetchGitShallow.sh ├── fetchGitSubmodules.sh ├── fetchGitVerification.sh ├── fetchMercurial.sh ├── fetchPath.sh ├── fetchTree-file.sh ├── fetchurl.sh ├── filter-source.nix ├── filter-source.sh ├── fixed.builder1.sh ├── fixed.builder2.sh ├── fixed.nix ├── fixed.sh ├── flakes │ ├── absolute-attr-paths.sh │ ├── absolute-paths.sh │ ├── build-paths.sh │ ├── bundle.sh │ ├── check.sh │ ├── circular.sh │ ├── commit-lock-file-summary.sh │ ├── common.sh │ ├── config.sh │ ├── debugger.sh │ ├── develop.sh │ ├── dubious-query.sh │ ├── edit.sh │ ├── eval-cache.sh │ ├── flake-in-submodule.sh │ ├── flakes.sh │ ├── follow-paths.sh │ ├── init.sh │ ├── inputs.sh │ ├── mercurial.sh │ ├── meson.build │ ├── non-flake-inputs.sh │ ├── old-lockfiles.sh │ ├── prefetch.sh │ ├── relative-paths-lockfile.sh │ ├── relative-paths.sh │ ├── run.sh │ ├── search-root.sh │ ├── shebang.sh │ ├── show.sh │ ├── source-paths.sh │ ├── symlink-paths.sh │ ├── trace-ifd.sh │ ├── tree.zip │ └── unlocked-override.sh ├── flamegraph-profiler.sh ├── fod-failing.nix ├── formatter.sh ├── formatter.simple.sh ├── function-trace.sh ├── gc-auto.sh ├── gc-concurrent.builder.sh ├── gc-concurrent.nix ├── gc-concurrent.sh ├── gc-concurrent2.builder.sh ├── gc-non-blocking.sh ├── gc-runtime.nix ├── gc-runtime.sh ├── gc.sh ├── git-hashing │ ├── common.sh │ ├── fixed.sh │ ├── meson.build │ ├── simple-common.sh │ ├── simple-sha1.sh │ └── simple-sha256.sh ├── git │ ├── meson.build │ └── packed-refs-no-cache.sh ├── hash-check.nix ├── hash-convert.sh ├── hash-path.sh ├── help.sh ├── hermetic.nix ├── ifd.nix ├── import-from-derivation.nix ├── import-from-derivation.sh ├── impure-derivations.nix ├── impure-derivations.sh ├── impure-env.nix ├── impure-env.sh ├── impure-eval.sh ├── install-darwin.sh ├── json.sh ├── lang-gc.sh ├── lang-gc │ └── issue-11141-gc-coroutine-test.nix ├── lang.sh ├── lang │ ├── binary-data │ ├── data │ ├── dir1 │ │ └── a.nix │ ├── dir2 │ │ ├── a.nix │ │ └── b.nix │ ├── dir3 │ │ ├── a.nix │ │ ├── b.nix │ │ └── c.nix │ ├── dir4 │ │ ├── a.nix │ │ └── c.nix │ ├── eval-fail-abort.err.exp │ ├── eval-fail-abort.nix │ ├── eval-fail-addDrvOutputDependencies-empty-context.err.exp │ ├── eval-fail-addDrvOutputDependencies-empty-context.nix │ ├── eval-fail-addDrvOutputDependencies-multi-elem-context.err.exp │ ├── eval-fail-addDrvOutputDependencies-multi-elem-context.nix │ ├── eval-fail-addDrvOutputDependencies-wrong-element-kind.err.exp │ ├── eval-fail-addDrvOutputDependencies-wrong-element-kind.nix │ ├── eval-fail-addErrorContext-example.err.exp │ ├── eval-fail-addErrorContext-example.flags │ ├── eval-fail-addErrorContext-example.nix │ ├── eval-fail-assert-equal-attrs-names-2.err.exp │ ├── eval-fail-assert-equal-attrs-names-2.nix │ ├── eval-fail-assert-equal-attrs-names.err.exp │ ├── eval-fail-assert-equal-attrs-names.nix │ ├── eval-fail-assert-equal-derivations-extra.err.exp │ ├── eval-fail-assert-equal-derivations-extra.nix │ ├── eval-fail-assert-equal-derivations.err.exp │ ├── eval-fail-assert-equal-derivations.nix │ ├── eval-fail-assert-equal-floats.err.exp │ ├── eval-fail-assert-equal-floats.nix │ ├── eval-fail-assert-equal-function-direct.err.exp │ ├── eval-fail-assert-equal-function-direct.nix │ ├── eval-fail-assert-equal-int-float.err.exp │ ├── eval-fail-assert-equal-int-float.nix │ ├── eval-fail-assert-equal-ints.err.exp │ ├── eval-fail-assert-equal-ints.nix │ ├── eval-fail-assert-equal-list-length.err.exp │ ├── eval-fail-assert-equal-list-length.nix │ ├── eval-fail-assert-equal-paths.err.exp │ ├── eval-fail-assert-equal-paths.nix │ ├── eval-fail-assert-equal-type-nested.err.exp │ ├── eval-fail-assert-equal-type-nested.nix │ ├── eval-fail-assert-equal-type.err.exp │ ├── eval-fail-assert-equal-type.nix │ ├── eval-fail-assert-nested-bool.err.exp │ ├── eval-fail-assert-nested-bool.nix │ ├── eval-fail-assert.err.exp │ ├── eval-fail-assert.nix │ ├── eval-fail-attr-name-type.err.exp │ ├── eval-fail-attr-name-type.nix │ ├── eval-fail-attrset-merge-drops-later-rec.err.exp │ ├── eval-fail-attrset-merge-drops-later-rec.nix │ ├── eval-fail-bad-string-interpolation-1.err.exp │ ├── eval-fail-bad-string-interpolation-1.nix │ ├── eval-fail-bad-string-interpolation-2.err.exp │ ├── eval-fail-bad-string-interpolation-2.nix │ ├── eval-fail-bad-string-interpolation-3.err.exp │ ├── eval-fail-bad-string-interpolation-3.nix │ ├── eval-fail-bad-string-interpolation-4.err.exp │ ├── eval-fail-bad-string-interpolation-4.nix │ ├── eval-fail-blackhole.err.exp │ ├── eval-fail-blackhole.nix │ ├── eval-fail-call-primop.err.exp │ ├── eval-fail-call-primop.nix │ ├── eval-fail-deepseq-list-attr.err.exp │ ├── eval-fail-deepseq-list-attr.nix │ ├── eval-fail-deepseq-stack-overflow.err.exp │ ├── eval-fail-deepseq-stack-overflow.nix │ ├── eval-fail-deepseq.err.exp │ ├── eval-fail-deepseq.nix │ ├── eval-fail-derivation-name.err.exp │ ├── eval-fail-derivation-name.nix │ ├── eval-fail-derivation-name.postprocess │ ├── eval-fail-derivation-structuredAttrs-stack-overflow.err.exp │ ├── eval-fail-derivation-structuredAttrs-stack-overflow.nix │ ├── eval-fail-dup-dynamic-attrs.err.exp │ ├── eval-fail-dup-dynamic-attrs.nix │ ├── eval-fail-duplicate-traces.err.exp │ ├── eval-fail-duplicate-traces.nix │ ├── eval-fail-dynamic-attrs-inherit-2.err.exp │ ├── eval-fail-dynamic-attrs-inherit-2.nix │ ├── eval-fail-dynamic-attrs-inherit.err.exp │ ├── eval-fail-dynamic-attrs-inherit.nix │ ├── eval-fail-dynamic-attrs-let-2.err.exp │ ├── eval-fail-dynamic-attrs-let-2.nix │ ├── eval-fail-dynamic-attrs-let-3.err.exp │ ├── eval-fail-dynamic-attrs-let-3.nix │ ├── eval-fail-dynamic-attrs-let.err.exp │ ├── eval-fail-dynamic-attrs-let.nix │ ├── eval-fail-empty-formals.err.exp │ ├── eval-fail-empty-formals.nix │ ├── eval-fail-eol-1.err.exp │ ├── eval-fail-eol-1.nix │ ├── eval-fail-eol-2.err.exp │ ├── eval-fail-eol-2.nix │ ├── eval-fail-eol-3.err.exp │ ├── eval-fail-eol-3.nix │ ├── eval-fail-fetchTree-negative.err.exp │ ├── eval-fail-fetchTree-negative.nix │ ├── eval-fail-fetchurl-baseName-attrs-name.err.exp │ ├── eval-fail-fetchurl-baseName-attrs-name.nix │ ├── eval-fail-fetchurl-baseName-attrs.err.exp │ ├── eval-fail-fetchurl-baseName-attrs.nix │ ├── eval-fail-fetchurl-baseName.err.exp │ ├── eval-fail-fetchurl-baseName.nix │ ├── eval-fail-flake-ref-to-string-negative-integer.err.exp │ ├── eval-fail-flake-ref-to-string-negative-integer.nix │ ├── eval-fail-foldlStrict-strict-op-application.err.exp │ ├── eval-fail-foldlStrict-strict-op-application.nix │ ├── eval-fail-fromJSON-keyWithNullByte.err.exp │ ├── eval-fail-fromJSON-keyWithNullByte.nix │ ├── eval-fail-fromJSON-overflowing.err.exp │ ├── eval-fail-fromJSON-overflowing.nix │ ├── eval-fail-fromJSON-valueWithNullByte.err.exp │ ├── eval-fail-fromJSON-valueWithNullByte.nix │ ├── eval-fail-fromTOML-keyWithNullByte.err.exp │ ├── eval-fail-fromTOML-keyWithNullByte.nix │ ├── eval-fail-fromTOML-overflow.err.exp │ ├── eval-fail-fromTOML-overflow.nix │ ├── eval-fail-fromTOML-timestamps.err.exp │ ├── eval-fail-fromTOML-timestamps.nix │ ├── eval-fail-fromTOML-underflow.err.exp │ ├── eval-fail-fromTOML-underflow.nix │ ├── eval-fail-fromTOML-valueWithNullByte.err.exp │ ├── eval-fail-fromTOML-valueWithNullByte.nix │ ├── eval-fail-genericClosure-deeply-nested-element.err.exp │ ├── eval-fail-genericClosure-deeply-nested-element.nix │ ├── eval-fail-genericClosure-element-missing-key.err.exp │ ├── eval-fail-genericClosure-element-missing-key.nix │ ├── eval-fail-genericClosure-element-not-attrset.err.exp │ ├── eval-fail-genericClosure-element-not-attrset.nix │ ├── eval-fail-genericClosure-keys-incompatible-types.err.exp │ ├── eval-fail-genericClosure-keys-incompatible-types.nix │ ├── eval-fail-genericClosure-keys-uncomparable.err.exp │ ├── eval-fail-genericClosure-keys-uncomparable.nix │ ├── eval-fail-genericClosure-missing-operator.err.exp │ ├── eval-fail-genericClosure-missing-operator.nix │ ├── eval-fail-genericClosure-missing-startSet.err.exp │ ├── eval-fail-genericClosure-missing-startSet.nix │ ├── eval-fail-genericClosure-not-attrset.err.exp │ ├── eval-fail-genericClosure-not-attrset.nix │ ├── eval-fail-genericClosure-operator-not-function.err.exp │ ├── eval-fail-genericClosure-operator-not-function.nix │ ├── eval-fail-genericClosure-operator-not-list.err.exp │ ├── eval-fail-genericClosure-operator-not-list.nix │ ├── eval-fail-genericClosure-startSet-not-list.err.exp │ ├── eval-fail-genericClosure-startSet-not-list.nix │ ├── eval-fail-hashfile-missing.err.exp │ ├── eval-fail-hashfile-missing.nix │ ├── eval-fail-infinite-recursion-lambda.err.exp │ ├── eval-fail-infinite-recursion-lambda.flags │ ├── eval-fail-infinite-recursion-lambda.nix │ ├── eval-fail-list.err.exp │ ├── eval-fail-list.nix │ ├── eval-fail-missing-arg-import.err.exp │ ├── eval-fail-missing-arg-import.nix │ ├── eval-fail-missing-arg.err.exp │ ├── eval-fail-missing-arg.nix │ ├── eval-fail-mutual-recursion.err.exp │ ├── eval-fail-mutual-recursion.nix │ ├── eval-fail-nested-list-items.err.exp │ ├── eval-fail-nested-list-items.nix │ ├── eval-fail-nonexist-path.err.exp │ ├── eval-fail-nonexist-path.nix │ ├── eval-fail-not-throws.err.exp │ ├── eval-fail-not-throws.nix │ ├── eval-fail-overflowing-add.err.exp │ ├── eval-fail-overflowing-add.nix │ ├── eval-fail-overflowing-div.err.exp │ ├── eval-fail-overflowing-div.nix │ ├── eval-fail-overflowing-mul.err.exp │ ├── eval-fail-overflowing-mul.nix │ ├── eval-fail-overflowing-sub.err.exp │ ├── eval-fail-overflowing-sub.nix │ ├── eval-fail-path-slash.err.exp │ ├── eval-fail-path-slash.nix │ ├── eval-fail-pipe-operators.err.exp │ ├── eval-fail-pipe-operators.nix │ ├── eval-fail-recursion.err.exp │ ├── eval-fail-recursion.nix │ ├── eval-fail-remove.err.exp │ ├── eval-fail-remove.nix │ ├── eval-fail-scope-5.err.exp │ ├── eval-fail-scope-5.nix │ ├── eval-fail-seq.err.exp │ ├── eval-fail-seq.nix │ ├── eval-fail-set-override.err.exp │ ├── eval-fail-set-override.nix │ ├── eval-fail-set.err.exp │ ├── eval-fail-set.nix │ ├── eval-fail-string-nul-1.err.exp │ ├── eval-fail-string-nul-1.nix │ ├── eval-fail-string-nul-2.err.exp │ ├── eval-fail-string-nul-2.nix │ ├── eval-fail-substring.err.exp │ ├── eval-fail-substring.nix │ ├── eval-fail-to-path.err.exp │ ├── eval-fail-to-path.nix │ ├── eval-fail-toJSON-non-utf-8.err.exp │ ├── eval-fail-toJSON-non-utf-8.nix │ ├── eval-fail-toJSON-stack-overflow.err.exp │ ├── eval-fail-toJSON-stack-overflow.nix │ ├── eval-fail-toJSON.err.exp │ ├── eval-fail-toJSON.nix │ ├── eval-fail-undeclared-arg-import.err.exp │ ├── eval-fail-undeclared-arg-import.nix │ ├── eval-fail-undeclared-arg.err.exp │ ├── eval-fail-undeclared-arg.nix │ ├── eval-fail-using-set-as-attr-name.err.exp │ ├── eval-fail-using-set-as-attr-name.nix │ ├── eval-okay-any-all.exp │ ├── eval-okay-any-all.nix │ ├── eval-okay-arithmetic.exp │ ├── eval-okay-arithmetic.nix │ ├── eval-okay-attrnames.exp │ ├── eval-okay-attrnames.nix │ ├── eval-okay-attrs.exp │ ├── eval-okay-attrs.nix │ ├── eval-okay-attrs2.exp │ ├── eval-okay-attrs2.nix │ ├── eval-okay-attrs3.exp │ ├── eval-okay-attrs3.nix │ ├── eval-okay-attrs4.exp │ ├── eval-okay-attrs4.nix │ ├── eval-okay-attrs5.exp │ ├── eval-okay-attrs5.nix │ ├── eval-okay-attrs6.exp │ ├── eval-okay-attrs6.nix │ ├── eval-okay-autoargs.exp │ ├── eval-okay-autoargs.flags │ ├── eval-okay-autoargs.nix │ ├── eval-okay-backslash-newline-1.exp │ ├── eval-okay-backslash-newline-1.nix │ ├── eval-okay-backslash-newline-2.exp │ ├── eval-okay-backslash-newline-2.nix │ ├── eval-okay-baseNameOf.exp │ ├── eval-okay-baseNameOf.nix │ ├── eval-okay-builtins-add.exp │ ├── eval-okay-builtins-add.nix │ ├── eval-okay-builtins-dirOf.exp │ ├── eval-okay-builtins-dirOf.nix │ ├── eval-okay-builtins.exp │ ├── eval-okay-builtins.nix │ ├── eval-okay-callable-attrs.exp │ ├── eval-okay-callable-attrs.nix │ ├── eval-okay-catattrs.exp │ ├── eval-okay-catattrs.nix │ ├── eval-okay-closure.exp │ ├── eval-okay-closure.exp.xml │ ├── eval-okay-closure.nix │ ├── eval-okay-comments.exp │ ├── eval-okay-comments.nix │ ├── eval-okay-concat.exp │ ├── eval-okay-concat.nix │ ├── eval-okay-concatmap.exp │ ├── eval-okay-concatmap.nix │ ├── eval-okay-concatstringssep.exp │ ├── eval-okay-concatstringssep.nix │ ├── eval-okay-context-introspection.exp │ ├── eval-okay-context-introspection.nix │ ├── eval-okay-context.exp │ ├── eval-okay-context.nix │ ├── eval-okay-convertHash.err.exp │ ├── eval-okay-convertHash.exp │ ├── eval-okay-convertHash.nix │ ├── eval-okay-curpos.exp │ ├── eval-okay-curpos.nix │ ├── eval-okay-deepseq.exp │ ├── eval-okay-deepseq.nix │ ├── eval-okay-delayed-with-inherit.exp │ ├── eval-okay-delayed-with-inherit.nix │ ├── eval-okay-delayed-with.exp │ ├── eval-okay-delayed-with.nix │ ├── eval-okay-deprecate-cursed-or.err.exp │ ├── eval-okay-deprecate-cursed-or.exp │ ├── eval-okay-deprecate-cursed-or.nix │ ├── eval-okay-derivation-legacy.err.exp │ ├── eval-okay-derivation-legacy.exp │ ├── eval-okay-derivation-legacy.nix │ ├── eval-okay-dynamic-attrs-2.exp │ ├── eval-okay-dynamic-attrs-2.nix │ ├── eval-okay-dynamic-attrs-3.exp │ ├── eval-okay-dynamic-attrs-3.nix │ ├── eval-okay-dynamic-attrs-bare.exp │ ├── eval-okay-dynamic-attrs-bare.nix │ ├── eval-okay-dynamic-attrs.exp │ ├── eval-okay-dynamic-attrs.nix │ ├── eval-okay-elem.exp │ ├── eval-okay-elem.nix │ ├── eval-okay-empty-args.exp │ ├── eval-okay-empty-args.nix │ ├── eval-okay-eq-derivations.exp │ ├── eval-okay-eq-derivations.nix │ ├── eval-okay-eq.exp │ ├── eval-okay-eq.nix │ ├── eval-okay-filter.exp │ ├── eval-okay-filter.nix │ ├── eval-okay-flake-ref-to-string.exp │ ├── eval-okay-flake-ref-to-string.nix │ ├── eval-okay-flatten.exp │ ├── eval-okay-flatten.nix │ ├── eval-okay-float.exp │ ├── eval-okay-float.nix │ ├── eval-okay-floor-ceil.exp │ ├── eval-okay-floor-ceil.nix │ ├── eval-okay-foldlStrict-lazy-elements.exp │ ├── eval-okay-foldlStrict-lazy-elements.nix │ ├── eval-okay-foldlStrict-lazy-initial-accumulator.exp │ ├── eval-okay-foldlStrict-lazy-initial-accumulator.nix │ ├── eval-okay-foldlStrict.exp │ ├── eval-okay-foldlStrict.nix │ ├── eval-okay-fromTOML-timestamps.exp │ ├── eval-okay-fromTOML-timestamps.flags │ ├── eval-okay-fromTOML-timestamps.nix │ ├── eval-okay-fromTOML.exp │ ├── eval-okay-fromTOML.nix │ ├── eval-okay-fromjson-escapes.exp │ ├── eval-okay-fromjson-escapes.nix │ ├── eval-okay-fromjson.exp │ ├── eval-okay-fromjson.nix │ ├── eval-okay-functionargs.exp │ ├── eval-okay-functionargs.exp.xml │ ├── eval-okay-functionargs.nix │ ├── eval-okay-getattrpos-functionargs.exp │ ├── eval-okay-getattrpos-functionargs.nix │ ├── eval-okay-getattrpos-undefined.exp │ ├── eval-okay-getattrpos-undefined.nix │ ├── eval-okay-getattrpos.exp │ ├── eval-okay-getattrpos.nix │ ├── eval-okay-getenv.exp │ ├── eval-okay-getenv.nix │ ├── eval-okay-groupBy.exp │ ├── eval-okay-groupBy.nix │ ├── eval-okay-hash.exp │ ├── eval-okay-hashfile.exp │ ├── eval-okay-hashfile.nix │ ├── eval-okay-hashstring.exp │ ├── eval-okay-hashstring.nix │ ├── eval-okay-if.exp │ ├── eval-okay-if.nix │ ├── eval-okay-import.exp │ ├── eval-okay-import.nix │ ├── eval-okay-ind-string.exp │ ├── eval-okay-ind-string.nix │ ├── eval-okay-inherit-attr-pos.exp │ ├── eval-okay-inherit-attr-pos.nix │ ├── eval-okay-inherit-from.err.exp │ ├── eval-okay-inherit-from.exp │ ├── eval-okay-inherit-from.nix │ ├── eval-okay-intersectAttrs.exp │ ├── eval-okay-intersectAttrs.nix │ ├── eval-okay-let.exp │ ├── eval-okay-let.nix │ ├── eval-okay-list.exp │ ├── eval-okay-list.nix │ ├── eval-okay-listtoattrs.exp │ ├── eval-okay-listtoattrs.nix │ ├── eval-okay-logic.exp │ ├── eval-okay-logic.nix │ ├── eval-okay-map.exp │ ├── eval-okay-map.nix │ ├── eval-okay-mapattrs.exp │ ├── eval-okay-mapattrs.nix │ ├── eval-okay-merge-dynamic-attrs.exp │ ├── eval-okay-merge-dynamic-attrs.nix │ ├── eval-okay-nested-with.exp │ ├── eval-okay-nested-with.nix │ ├── eval-okay-new-let.exp │ ├── eval-okay-new-let.nix │ ├── eval-okay-null-dynamic-attrs.exp │ ├── eval-okay-null-dynamic-attrs.nix │ ├── eval-okay-overrides.exp │ ├── eval-okay-overrides.nix │ ├── eval-okay-parse-flake-ref.exp │ ├── eval-okay-parse-flake-ref.nix │ ├── eval-okay-partition.exp │ ├── eval-okay-partition.nix │ ├── eval-okay-path-string-interpolation.exp │ ├── eval-okay-path-string-interpolation.nix │ ├── eval-okay-path.exp │ ├── eval-okay-path.nix │ ├── eval-okay-pathexists.exp │ ├── eval-okay-pathexists.nix │ ├── eval-okay-patterns.exp │ ├── eval-okay-patterns.nix │ ├── eval-okay-print.err.exp │ ├── eval-okay-print.exp │ ├── eval-okay-print.nix │ ├── eval-okay-readDir.exp │ ├── eval-okay-readDir.nix │ ├── eval-okay-readFileType.exp │ ├── eval-okay-readFileType.nix │ ├── eval-okay-readfile.exp │ ├── eval-okay-readfile.nix │ ├── eval-okay-redefine-builtin.exp │ ├── eval-okay-redefine-builtin.nix │ ├── eval-okay-regex-match.exp │ ├── eval-okay-regex-match.nix │ ├── eval-okay-regex-match2.exp │ ├── eval-okay-regex-match2.nix │ ├── eval-okay-regex-split.exp │ ├── eval-okay-regex-split.nix │ ├── eval-okay-regression-20220122.exp │ ├── eval-okay-regression-20220122.nix │ ├── eval-okay-regression-20220125.exp │ ├── eval-okay-regression-20220125.nix │ ├── eval-okay-regrettable-rec-attrset-merge.exp │ ├── eval-okay-regrettable-rec-attrset-merge.nix │ ├── eval-okay-remove.exp │ ├── eval-okay-remove.nix │ ├── eval-okay-repeated-empty-attrs.exp │ ├── eval-okay-repeated-empty-attrs.nix │ ├── eval-okay-repeated-empty-list.exp │ ├── eval-okay-repeated-empty-list.nix │ ├── eval-okay-replacestrings.exp │ ├── eval-okay-replacestrings.nix │ ├── eval-okay-scope-1.exp │ ├── eval-okay-scope-1.nix │ ├── eval-okay-scope-2.exp │ ├── eval-okay-scope-2.nix │ ├── eval-okay-scope-3.exp │ ├── eval-okay-scope-3.nix │ ├── eval-okay-scope-4.exp │ ├── eval-okay-scope-4.nix │ ├── eval-okay-scope-6.exp │ ├── eval-okay-scope-6.nix │ ├── eval-okay-scope-7.exp │ ├── eval-okay-scope-7.nix │ ├── eval-okay-search-path.exp │ ├── eval-okay-search-path.flags │ ├── eval-okay-search-path.nix │ ├── eval-okay-seq.exp │ ├── eval-okay-seq.nix │ ├── eval-okay-sort.exp │ ├── eval-okay-sort.nix │ ├── eval-okay-splitversion.exp │ ├── eval-okay-splitversion.nix │ ├── eval-okay-string.exp │ ├── eval-okay-string.nix │ ├── eval-okay-strings-as-attrs-names.exp │ ├── eval-okay-strings-as-attrs-names.nix │ ├── eval-okay-substring-context.exp │ ├── eval-okay-substring-context.nix │ ├── eval-okay-substring.exp │ ├── eval-okay-substring.nix │ ├── eval-okay-symlink-resolution.exp │ ├── eval-okay-symlink-resolution.nix │ ├── eval-okay-tail-call-1.exp-disabled │ ├── eval-okay-tail-call-1.nix │ ├── eval-okay-tojson.exp │ ├── eval-okay-tojson.nix │ ├── eval-okay-toxml.exp │ ├── eval-okay-toxml.nix │ ├── eval-okay-toxml2.exp │ ├── eval-okay-toxml2.nix │ ├── eval-okay-tryeval.exp │ ├── eval-okay-tryeval.nix │ ├── eval-okay-types.exp │ ├── eval-okay-types.nix │ ├── eval-okay-versions.exp │ ├── eval-okay-versions.nix │ ├── eval-okay-with.exp │ ├── eval-okay-with.nix │ ├── eval-okay-xml.exp.xml │ ├── eval-okay-xml.nix │ ├── eval-okay-zipAttrsWith.exp │ ├── eval-okay-zipAttrsWith.nix │ ├── imported.nix │ ├── imported2.nix │ ├── infinite-nesting.nix │ ├── lib.nix │ ├── non-eval-fail-bad-drvPath.nix │ ├── non-eval-trivial-lambda-formals.nix │ ├── parse-fail-dup-attrs-1.err.exp │ ├── parse-fail-dup-attrs-1.nix │ ├── parse-fail-dup-attrs-2.err.exp │ ├── parse-fail-dup-attrs-2.nix │ ├── parse-fail-dup-attrs-3.err.exp │ ├── parse-fail-dup-attrs-3.nix │ ├── parse-fail-dup-attrs-4.err.exp │ ├── parse-fail-dup-attrs-4.nix │ ├── parse-fail-dup-attrs-7.err.exp │ ├── parse-fail-dup-attrs-7.nix │ ├── parse-fail-dup-formals.err.exp │ ├── parse-fail-dup-formals.nix │ ├── parse-fail-eof-in-string.err.exp │ ├── parse-fail-eof-in-string.nix │ ├── parse-fail-eof-pos.err.exp │ ├── parse-fail-eof-pos.nix │ ├── parse-fail-mixed-nested-attrs1.err.exp │ ├── parse-fail-mixed-nested-attrs1.nix │ ├── parse-fail-mixed-nested-attrs2.err.exp │ ├── parse-fail-mixed-nested-attrs2.nix │ ├── parse-fail-patterns-1.err.exp │ ├── parse-fail-patterns-1.nix │ ├── parse-fail-regression-20060610.err.exp │ ├── parse-fail-regression-20060610.nix │ ├── parse-fail-undef-var-2.err.exp │ ├── parse-fail-undef-var-2.nix │ ├── parse-fail-undef-var.err.exp │ ├── parse-fail-undef-var.nix │ ├── parse-fail-utf8.err.exp │ ├── parse-fail-utf8.nix │ ├── parse-okay-1.exp │ ├── parse-okay-1.nix │ ├── parse-okay-crlf.exp │ ├── parse-okay-crlf.nix │ ├── parse-okay-dup-attrs-5.exp │ ├── parse-okay-dup-attrs-5.nix │ ├── parse-okay-dup-attrs-6.exp │ ├── parse-okay-dup-attrs-6.nix │ ├── parse-okay-ind-string.exp │ ├── parse-okay-ind-string.nix │ ├── parse-okay-inherits.exp │ ├── parse-okay-inherits.nix │ ├── parse-okay-mixed-nested-attrs-1.exp │ ├── parse-okay-mixed-nested-attrs-1.nix │ ├── parse-okay-mixed-nested-attrs-2.exp │ ├── parse-okay-mixed-nested-attrs-2.nix │ ├── parse-okay-mixed-nested-attrs-3.exp │ ├── parse-okay-mixed-nested-attrs-3.nix │ ├── parse-okay-regression-20041027.exp │ ├── parse-okay-regression-20041027.nix │ ├── parse-okay-regression-751.exp │ ├── parse-okay-regression-751.nix │ ├── parse-okay-subversion.exp │ ├── parse-okay-subversion.nix │ ├── parse-okay-url.exp │ ├── parse-okay-url.nix │ ├── readDir │ │ ├── bar │ │ ├── foo │ │ │ └── git-hates-directories │ │ ├── ldir │ │ └── linked │ └── symlink-resolution │ │ ├── broken │ │ ├── foo │ │ ├── lib │ │ │ └── default.nix │ │ └── overlays │ │ └── overlays │ │ └── overlay.nix ├── legacy-ssh-store.sh ├── linux-sandbox-cert-test.nix ├── linux-sandbox.sh ├── local-overlay-store │ ├── add-lower-inner.sh │ ├── add-lower.sh │ ├── bad-uris.sh │ ├── build-inner.sh │ ├── build.sh │ ├── check-post-init-inner.sh │ ├── check-post-init.sh │ ├── common.sh │ ├── delete-duplicate-inner.sh │ ├── delete-duplicate.sh │ ├── delete-refs-inner.sh │ ├── delete-refs.sh │ ├── gc-inner.sh │ ├── gc.sh │ ├── meson.build │ ├── optimise-inner.sh │ ├── optimise.sh │ ├── redundant-add-inner.sh │ ├── redundant-add.sh │ ├── remount.sh │ ├── stale-file-handle-inner.sh │ ├── stale-file-handle.sh │ ├── verify-inner.sh │ └── verify.sh ├── logging.sh ├── logging │ └── unusual-logging.nix ├── meson.build ├── misc.sh ├── multiple-outputs.nix ├── multiple-outputs.sh ├── nar-access.nix ├── nar-access.sh ├── nars.sh ├── nested-sandboxing.sh ├── nested-sandboxing │ ├── command.sh │ └── runner.nix ├── nix-build-examples.nix ├── nix-build.sh ├── nix-channel.sh ├── nix-collect-garbage-d.sh ├── nix-copy-ssh-common.sh ├── nix-copy-ssh-ng.sh ├── nix-copy-ssh.sh ├── nix-daemon-untrusting.sh ├── nix-meson-build-support ├── nix-profile.sh ├── nix-shell.sh ├── nix_path.sh ├── no-url-literals.sh ├── optimise-store.sh ├── output-normalization.sh ├── package.nix ├── parallel.builder.sh ├── parallel.nix ├── parallel.sh ├── pass-as-file.sh ├── path-from-hash-part.sh ├── path-info.sh ├── path.nix ├── placeholders.sh ├── plugins.sh ├── plugins │ ├── meson.build │ └── plugintest.cc ├── post-hook.sh ├── pure-eval.nix ├── pure-eval.sh ├── push-to-store-old.sh ├── push-to-store.sh ├── read-only-store.sh ├── readfile-context.nix ├── readfile-context.sh ├── recursive.nix ├── recursive.sh ├── referrers.sh ├── remote-store.sh ├── repair.sh ├── repl.sh ├── repl │ ├── characterisation │ │ └── empty │ ├── doc-comment-curried-args.expected │ ├── doc-comment-curried-args.in │ ├── doc-comment-formals.expected │ ├── doc-comment-formals.in │ ├── doc-comment-function.expected │ ├── doc-comment-function.in │ ├── doc-comment-function.nix │ ├── doc-comments.nix │ ├── doc-compact.expected │ ├── doc-compact.in │ ├── doc-constant.expected │ ├── doc-constant.in │ ├── doc-floatedIn.expected │ ├── doc-floatedIn.in │ ├── doc-functor.expected │ ├── doc-functor.flags │ ├── doc-functor.in │ ├── doc-functor.nix │ ├── doc-lambda-flavors.expected │ ├── doc-lambda-flavors.in │ ├── doc-measurement.expected │ ├── doc-measurement.in │ ├── doc-multiply.expected │ ├── doc-multiply.in │ ├── doc-unambiguous.expected │ ├── doc-unambiguous.in │ ├── pretty-print-idempotent.expected │ ├── pretty-print-idempotent.in │ └── pretty-print-idempotent.nix ├── restricted.nix ├── restricted.sh ├── search.nix ├── search.sh ├── secure-drv-outputs.nix ├── secure-drv-outputs.sh ├── selfref-gc.sh ├── shell-hello.nix ├── shell.nix ├── shell.sh ├── shell.shebang.expr ├── shell.shebang.legacy.expr ├── shell.shebang.nix ├── shell.shebang.rb ├── shell.shebang.sh ├── short-path-literals.sh ├── signing.sh ├── simple-failing.nix ├── simple.builder.sh ├── simple.nix ├── simple.sh ├── ssh-relay.sh ├── store-info.sh ├── structured-attrs-shell.nix ├── structured-attrs.nix ├── structured-attrs.sh ├── substitute-with-invalid-ca.sh ├── suggestions.sh ├── supplementary-groups.sh ├── symlink-derivation.nix ├── symlinks.sh ├── tarball.sh ├── test-infra.sh ├── test-libstoreconsumer.sh ├── test-libstoreconsumer │ ├── README.md │ ├── main.cc │ ├── meson.build │ └── nix-meson-build-support ├── timeout.nix ├── timeout.sh ├── toString-path.sh ├── tree.tar.gz ├── undefined-variable.nix ├── unnormalized.nar ├── user-envs-migration.sh ├── user-envs-test-case.sh ├── user-envs.builder.sh ├── user-envs.nix ├── user-envs.sh ├── why-depends.sh └── zstd.sh ├── installer ├── default.nix └── vagrant_insecure_key ├── nixos ├── authorization.nix ├── ca-fd-leak │ ├── default.nix │ ├── sender.c │ └── smuggler.c ├── cgroups │ ├── default.nix │ └── hang.nix ├── chroot-store.nix ├── containers │ ├── containers.nix │ ├── id-test.nix │ └── systemd-nspawn.nix ├── content-encoding.nix ├── default.nix ├── fetch-git │ ├── default.nix │ ├── test-cases │ │ ├── fetchTree-shallow │ │ │ └── default.nix │ │ ├── http-auth │ │ │ └── default.nix │ │ ├── http-simple │ │ │ └── default.nix │ │ ├── lfs │ │ │ └── default.nix │ │ ├── shallow-cache-separation │ │ │ └── default.nix │ │ ├── shallow-ignore-ref │ │ │ └── default.nix │ │ ├── ssh-shallow │ │ │ └── default.nix │ │ └── ssh-simple │ │ │ └── default.nix │ └── testsupport │ │ ├── gitea-repo.nix │ │ ├── gitea.nix │ │ └── setup.nix ├── fetchers-substitute.nix ├── fetchurl.nix ├── fsync.nix ├── functional │ ├── as-root.nix │ ├── as-trusted-user.nix │ ├── as-user.nix │ ├── common.nix │ └── symlinked-home.nix ├── git-submodules.nix ├── github-flakes.nix ├── nix-copy-closure.nix ├── nix-copy.nix ├── nix-docker-test.sh ├── nix-docker.nix ├── nss-preload.nix ├── remote-builds-ssh-ng.nix ├── remote-builds.nix ├── s3-binary-cache-store.nix ├── setuid.nix ├── sourcehut-flakes.nix ├── tarball-flakes.nix └── user-sandboxing │ ├── attacker.c │ └── default.nix └── repl-completion.nix /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/STALE-BOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.github/STALE-BOT.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.gitignore -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 2.33.0 2 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/COPYING -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- 1 | doc/manual/source/development/building.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/README.md -------------------------------------------------------------------------------- /ci/gha/profile-build/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/ci/gha/profile-build/default.nix -------------------------------------------------------------------------------- /ci/gha/tests/build-checks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/ci/gha/tests/build-checks -------------------------------------------------------------------------------- /ci/gha/tests/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/ci/gha/tests/default.nix -------------------------------------------------------------------------------- /ci/gha/tests/pre-commit-checks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/ci/gha/tests/pre-commit-checks -------------------------------------------------------------------------------- /ci/gha/tests/wrapper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/ci/gha/tests/wrapper.nix -------------------------------------------------------------------------------- /contrib/stack-collapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/contrib/stack-collapse.py -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/default.nix -------------------------------------------------------------------------------- /doc/manual/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /doc/manual/anchors.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/anchors.jq -------------------------------------------------------------------------------- /doc/manual/book.toml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/book.toml.in -------------------------------------------------------------------------------- /doc/manual/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/custom.css -------------------------------------------------------------------------------- /doc/manual/generate-builtins.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/generate-builtins.nix -------------------------------------------------------------------------------- /doc/manual/generate-deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/generate-deps.py -------------------------------------------------------------------------------- /doc/manual/generate-manpage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/generate-manpage.nix -------------------------------------------------------------------------------- /doc/manual/generate-settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/generate-settings.nix -------------------------------------------------------------------------------- /doc/manual/generate-store-info.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/generate-store-info.nix -------------------------------------------------------------------------------- /doc/manual/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/meson.build -------------------------------------------------------------------------------- /doc/manual/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/package.nix -------------------------------------------------------------------------------- /doc/manual/quote-literals.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/quote-literals.xsl -------------------------------------------------------------------------------- /doc/manual/redirects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/redirects.js -------------------------------------------------------------------------------- /doc/manual/render-manpage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/render-manpage.sh -------------------------------------------------------------------------------- /doc/manual/rl-next/config: -------------------------------------------------------------------------------- 1 | organization: NixOS 2 | repository: nix 3 | -------------------------------------------------------------------------------- /doc/manual/source/SUMMARY.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/source/SUMMARY.md.in -------------------------------------------------------------------------------- /doc/manual/source/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/source/_redirects -------------------------------------------------------------------------------- /doc/manual/source/c-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/source/c-api.md -------------------------------------------------------------------------------- /doc/manual/source/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/source/favicon.png -------------------------------------------------------------------------------- /doc/manual/source/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/source/favicon.svg -------------------------------------------------------------------------------- /doc/manual/source/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/source/glossary.md -------------------------------------------------------------------------------- /doc/manual/source/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/source/introduction.md -------------------------------------------------------------------------------- /doc/manual/source/language/builtins-suffix.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/manual/source/language/constructs.md: -------------------------------------------------------------------------------- 1 | # Language Constructs 2 | -------------------------------------------------------------------------------- /doc/manual/source/language/values.md: -------------------------------------------------------------------------------- 1 | # Data Types 2 | -------------------------------------------------------------------------------- /doc/manual/source/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/source/meson.build -------------------------------------------------------------------------------- /doc/manual/source/protocols/json/index.md: -------------------------------------------------------------------------------- 1 | # JSON Formats 2 | -------------------------------------------------------------------------------- /doc/manual/source/protocols/json/schema/build-result-v1: -------------------------------------------------------------------------------- 1 | ../../../../../../src/libstore-tests/data/build-result -------------------------------------------------------------------------------- /doc/manual/source/protocols/json/schema/build-trace-entry-v1: -------------------------------------------------------------------------------- 1 | ../../../../../../src/libstore-tests/data/realisation -------------------------------------------------------------------------------- /doc/manual/source/protocols/json/schema/derivation-options-v1: -------------------------------------------------------------------------------- 1 | ../../../../../../src/libstore-tests/data/derivation -------------------------------------------------------------------------------- /doc/manual/source/protocols/json/schema/deriving-path-v1: -------------------------------------------------------------------------------- 1 | ../../../../../../src/libstore-tests/data/derived-path -------------------------------------------------------------------------------- /doc/manual/source/protocols/json/schema/hash-v1: -------------------------------------------------------------------------------- 1 | ../../../../../../src/libutil-tests/data/hash/ -------------------------------------------------------------------------------- /doc/manual/source/protocols/json/schema/nar-info-v1: -------------------------------------------------------------------------------- 1 | ../../../../../../src/libstore-tests/data/nar-info -------------------------------------------------------------------------------- /doc/manual/source/protocols/json/schema/store-object-info-v2: -------------------------------------------------------------------------------- 1 | ../../../../../../src/libstore-tests/data/path-info -------------------------------------------------------------------------------- /doc/manual/source/protocols/json/schema/store-path-v1: -------------------------------------------------------------------------------- 1 | ../../../../../../src/libstore-tests/data/store-path -------------------------------------------------------------------------------- /doc/manual/source/protocols/json/schema/store-v1: -------------------------------------------------------------------------------- 1 | ../../../../../../src/libstore-tests/data/dummy-store -------------------------------------------------------------------------------- /doc/manual/source/protocols/meson.build: -------------------------------------------------------------------------------- 1 | # Process JSON schema documentation 2 | subdir('json') 3 | -------------------------------------------------------------------------------- /doc/manual/source/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/source/quick-start.md -------------------------------------------------------------------------------- /doc/manual/source/store/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/source/store/index.md -------------------------------------------------------------------------------- /doc/manual/source/store/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/source/store/secrets.md -------------------------------------------------------------------------------- /doc/manual/substitute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/substitute.py -------------------------------------------------------------------------------- /doc/manual/theme/head.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/theme/head.hbs -------------------------------------------------------------------------------- /doc/manual/theme/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/theme/highlight.js -------------------------------------------------------------------------------- /doc/manual/utils.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/doc/manual/utils.nix -------------------------------------------------------------------------------- /docker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/docker.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/flake.nix -------------------------------------------------------------------------------- /maintainers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/maintainers/README.md -------------------------------------------------------------------------------- /maintainers/backporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/maintainers/backporting.md -------------------------------------------------------------------------------- /maintainers/flake-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/maintainers/flake-module.nix -------------------------------------------------------------------------------- /maintainers/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/maintainers/format.sh -------------------------------------------------------------------------------- /maintainers/onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/maintainers/onboarding.md -------------------------------------------------------------------------------- /maintainers/release-credits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/maintainers/release-credits -------------------------------------------------------------------------------- /maintainers/release-notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/maintainers/release-notes -------------------------------------------------------------------------------- /maintainers/release-notes-todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/maintainers/release-notes-todo -------------------------------------------------------------------------------- /maintainers/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/maintainers/release-process.md -------------------------------------------------------------------------------- /maintainers/security-reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/maintainers/security-reports.md -------------------------------------------------------------------------------- /maintainers/upload-release.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/maintainers/upload-release.pl -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/meson.build -------------------------------------------------------------------------------- /meson.format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/meson.format -------------------------------------------------------------------------------- /meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/meson.options -------------------------------------------------------------------------------- /misc/bash/completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/bash/completion.sh -------------------------------------------------------------------------------- /misc/bash/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/bash/meson.build -------------------------------------------------------------------------------- /misc/fish/completion.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/fish/completion.fish -------------------------------------------------------------------------------- /misc/fish/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/fish/meson.build -------------------------------------------------------------------------------- /misc/freebsd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/freebsd/meson.build -------------------------------------------------------------------------------- /misc/freebsd/nix-daemon.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/freebsd/nix-daemon.in -------------------------------------------------------------------------------- /misc/launchd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/launchd/meson.build -------------------------------------------------------------------------------- /misc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/meson.build -------------------------------------------------------------------------------- /misc/systemd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/systemd/meson.build -------------------------------------------------------------------------------- /misc/systemd/nix-daemon.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/systemd/nix-daemon.conf.in -------------------------------------------------------------------------------- /misc/systemd/nix-daemon.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/systemd/nix-daemon.service.in -------------------------------------------------------------------------------- /misc/systemd/nix-daemon.socket.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/systemd/nix-daemon.socket.in -------------------------------------------------------------------------------- /misc/systemv/nix-daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/systemv/nix-daemon -------------------------------------------------------------------------------- /misc/upstart/nix-daemon.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/upstart/nix-daemon.conf.in -------------------------------------------------------------------------------- /misc/zsh/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/zsh/completion.zsh -------------------------------------------------------------------------------- /misc/zsh/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/zsh/meson.build -------------------------------------------------------------------------------- /misc/zsh/run-help-nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/misc/zsh/run-help-nix -------------------------------------------------------------------------------- /packaging/binary-tarball.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/packaging/binary-tarball.nix -------------------------------------------------------------------------------- /packaging/components.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/packaging/components.nix -------------------------------------------------------------------------------- /packaging/dependencies.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/packaging/dependencies.nix -------------------------------------------------------------------------------- /packaging/dev-shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/packaging/dev-shell.nix -------------------------------------------------------------------------------- /packaging/everything.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/packaging/everything.nix -------------------------------------------------------------------------------- /packaging/hydra.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/packaging/hydra.nix -------------------------------------------------------------------------------- /packaging/installer/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/packaging/installer/default.nix -------------------------------------------------------------------------------- /packaging/installer/install.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/packaging/installer/install.in -------------------------------------------------------------------------------- /scripts/create-darwin-volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/scripts/create-darwin-volume.sh -------------------------------------------------------------------------------- /scripts/install-multi-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/scripts/install-multi-user.sh -------------------------------------------------------------------------------- /scripts/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/scripts/meson.build -------------------------------------------------------------------------------- /scripts/nix-profile-daemon.fish.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/scripts/nix-profile-daemon.fish.in -------------------------------------------------------------------------------- /scripts/nix-profile-daemon.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/scripts/nix-profile-daemon.sh.in -------------------------------------------------------------------------------- /scripts/nix-profile.fish.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/scripts/nix-profile.fish.in -------------------------------------------------------------------------------- /scripts/nix-profile.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/scripts/nix-profile.sh.in -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/shell.nix -------------------------------------------------------------------------------- /src/external-api-docs/.gitignore: -------------------------------------------------------------------------------- 1 | /doxygen.cfg 2 | /html 3 | /latex 4 | -------------------------------------------------------------------------------- /src/external-api-docs/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/external-api-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/external-api-docs/README.md -------------------------------------------------------------------------------- /src/external-api-docs/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/external-api-docs/meson.build -------------------------------------------------------------------------------- /src/external-api-docs/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/external-api-docs/package.nix -------------------------------------------------------------------------------- /src/internal-api-docs/.gitignore: -------------------------------------------------------------------------------- 1 | /doxygen.cfg 2 | /html 3 | /latex 4 | -------------------------------------------------------------------------------- /src/internal-api-docs/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/internal-api-docs/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/internal-api-docs/meson.build -------------------------------------------------------------------------------- /src/internal-api-docs/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/internal-api-docs/package.nix -------------------------------------------------------------------------------- /src/json-schema-checks/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/json-schema-checks/build-result: -------------------------------------------------------------------------------- 1 | ../../src/libstore-tests/data/build-result -------------------------------------------------------------------------------- /src/json-schema-checks/build-trace-entry: -------------------------------------------------------------------------------- 1 | ../../src/libstore-tests/data/realisation -------------------------------------------------------------------------------- /src/json-schema-checks/content-address: -------------------------------------------------------------------------------- 1 | ../../src/libstore-tests/data/content-address -------------------------------------------------------------------------------- /src/json-schema-checks/derivation: -------------------------------------------------------------------------------- 1 | ../../src/libstore-tests/data/derivation -------------------------------------------------------------------------------- /src/json-schema-checks/derivation-options: -------------------------------------------------------------------------------- 1 | ../libstore-tests/data/derivation -------------------------------------------------------------------------------- /src/json-schema-checks/deriving-path: -------------------------------------------------------------------------------- 1 | ../../src/libstore-tests/data/derived-path -------------------------------------------------------------------------------- /src/json-schema-checks/file-system-object: -------------------------------------------------------------------------------- 1 | ../../src/libutil-tests/data/memory-source-accessor -------------------------------------------------------------------------------- /src/json-schema-checks/hash: -------------------------------------------------------------------------------- 1 | ../../src/libutil-tests/data/hash -------------------------------------------------------------------------------- /src/json-schema-checks/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/json-schema-checks/meson.build -------------------------------------------------------------------------------- /src/json-schema-checks/nar-info: -------------------------------------------------------------------------------- 1 | ../../src/libstore-tests/data/nar-info -------------------------------------------------------------------------------- /src/json-schema-checks/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/json-schema-checks/package.nix -------------------------------------------------------------------------------- /src/json-schema-checks/schema: -------------------------------------------------------------------------------- 1 | ../../doc/manual/source/protocols/json/schema -------------------------------------------------------------------------------- /src/json-schema-checks/store: -------------------------------------------------------------------------------- 1 | ../../src/libstore-tests/data/dummy-store -------------------------------------------------------------------------------- /src/json-schema-checks/store-object-info: -------------------------------------------------------------------------------- 1 | ../../src/libstore-tests/data/path-info -------------------------------------------------------------------------------- /src/json-schema-checks/store-path: -------------------------------------------------------------------------------- 1 | ../../src/libstore-tests/data/store-path -------------------------------------------------------------------------------- /src/kaitai-struct-checks/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/kaitai-struct-checks/nar.ksy: -------------------------------------------------------------------------------- 1 | ../../doc/manual/source/protocols/nix-archive/nar.ksy -------------------------------------------------------------------------------- /src/kaitai-struct-checks/nars: -------------------------------------------------------------------------------- 1 | ../libutil-tests/data/nars -------------------------------------------------------------------------------- /src/kaitai-struct-checks/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libcmd/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libcmd/built-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/built-path.cc -------------------------------------------------------------------------------- /src/libcmd/command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/command.cc -------------------------------------------------------------------------------- /src/libcmd/common-eval-args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/common-eval-args.cc -------------------------------------------------------------------------------- /src/libcmd/editor-for.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/editor-for.cc -------------------------------------------------------------------------------- /src/libcmd/include/nix/cmd/repl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/include/nix/cmd/repl.hh -------------------------------------------------------------------------------- /src/libcmd/installable-flake.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/installable-flake.cc -------------------------------------------------------------------------------- /src/libcmd/installable-value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/installable-value.cc -------------------------------------------------------------------------------- /src/libcmd/installables.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/installables.cc -------------------------------------------------------------------------------- /src/libcmd/markdown.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/markdown.cc -------------------------------------------------------------------------------- /src/libcmd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/meson.build -------------------------------------------------------------------------------- /src/libcmd/meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/meson.options -------------------------------------------------------------------------------- /src/libcmd/misc-store-flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/misc-store-flags.cc -------------------------------------------------------------------------------- /src/libcmd/network-proxy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/network-proxy.cc -------------------------------------------------------------------------------- /src/libcmd/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libcmd/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/package.nix -------------------------------------------------------------------------------- /src/libcmd/repl-interacter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/repl-interacter.cc -------------------------------------------------------------------------------- /src/libcmd/repl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libcmd/repl.cc -------------------------------------------------------------------------------- /src/libexpr-c/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libexpr-c/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-c/meson.build -------------------------------------------------------------------------------- /src/libexpr-c/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libexpr-c/nix_api_expr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-c/nix_api_expr.cc -------------------------------------------------------------------------------- /src/libexpr-c/nix_api_expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-c/nix_api_expr.h -------------------------------------------------------------------------------- /src/libexpr-c/nix_api_external.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-c/nix_api_external.cc -------------------------------------------------------------------------------- /src/libexpr-c/nix_api_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-c/nix_api_external.h -------------------------------------------------------------------------------- /src/libexpr-c/nix_api_value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-c/nix_api_value.cc -------------------------------------------------------------------------------- /src/libexpr-c/nix_api_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-c/nix_api_value.h -------------------------------------------------------------------------------- /src/libexpr-c/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-c/package.nix -------------------------------------------------------------------------------- /src/libexpr-test-support/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libexpr-test-support/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libexpr-tests/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libexpr-tests/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libexpr-tests/derived-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/derived-path.cc -------------------------------------------------------------------------------- /src/libexpr-tests/error_traces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/error_traces.cc -------------------------------------------------------------------------------- /src/libexpr-tests/eval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/eval.cc -------------------------------------------------------------------------------- /src/libexpr-tests/json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/json.cc -------------------------------------------------------------------------------- /src/libexpr-tests/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/main.cc -------------------------------------------------------------------------------- /src/libexpr-tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/meson.build -------------------------------------------------------------------------------- /src/libexpr-tests/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libexpr-tests/nix_api_expr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/nix_api_expr.cc -------------------------------------------------------------------------------- /src/libexpr-tests/nix_api_value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/nix_api_value.cc -------------------------------------------------------------------------------- /src/libexpr-tests/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/package.nix -------------------------------------------------------------------------------- /src/libexpr-tests/primops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/primops.cc -------------------------------------------------------------------------------- /src/libexpr-tests/search-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/search-path.cc -------------------------------------------------------------------------------- /src/libexpr-tests/trivial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/trivial.cc -------------------------------------------------------------------------------- /src/libexpr-tests/value/context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/value/context.cc -------------------------------------------------------------------------------- /src/libexpr-tests/value/print.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/value/print.cc -------------------------------------------------------------------------------- /src/libexpr-tests/value/value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr-tests/value/value.cc -------------------------------------------------------------------------------- /src/libexpr/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libexpr/attr-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/attr-path.cc -------------------------------------------------------------------------------- /src/libexpr/attr-set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/attr-set.cc -------------------------------------------------------------------------------- /src/libexpr/eval-cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/eval-cache.cc -------------------------------------------------------------------------------- /src/libexpr/eval-error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/eval-error.cc -------------------------------------------------------------------------------- /src/libexpr/eval-gc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/eval-gc.cc -------------------------------------------------------------------------------- /src/libexpr/eval-profiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/eval-profiler.cc -------------------------------------------------------------------------------- /src/libexpr/eval-settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/eval-settings.cc -------------------------------------------------------------------------------- /src/libexpr/eval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/eval.cc -------------------------------------------------------------------------------- /src/libexpr/fetchurl.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/fetchurl.nix -------------------------------------------------------------------------------- /src/libexpr/function-trace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/function-trace.cc -------------------------------------------------------------------------------- /src/libexpr/get-drvs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/get-drvs.cc -------------------------------------------------------------------------------- /src/libexpr/json-to-value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/json-to-value.cc -------------------------------------------------------------------------------- /src/libexpr/lexer-helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/lexer-helpers.cc -------------------------------------------------------------------------------- /src/libexpr/lexer-helpers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/lexer-helpers.hh -------------------------------------------------------------------------------- /src/libexpr/lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/lexer.l -------------------------------------------------------------------------------- /src/libexpr/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/meson.build -------------------------------------------------------------------------------- /src/libexpr/meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/meson.options -------------------------------------------------------------------------------- /src/libexpr/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libexpr/nixexpr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/nixexpr.cc -------------------------------------------------------------------------------- /src/libexpr/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/package.nix -------------------------------------------------------------------------------- /src/libexpr/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/parser.y -------------------------------------------------------------------------------- /src/libexpr/paths.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/paths.cc -------------------------------------------------------------------------------- /src/libexpr/pch/precompiled-headers.hh: -------------------------------------------------------------------------------- 1 | #include "nix/expr/eval.hh" 2 | -------------------------------------------------------------------------------- /src/libexpr/primops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/primops.cc -------------------------------------------------------------------------------- /src/libexpr/primops/context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/primops/context.cc -------------------------------------------------------------------------------- /src/libexpr/primops/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/primops/derivation.nix -------------------------------------------------------------------------------- /src/libexpr/primops/fetchTree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/primops/fetchTree.cc -------------------------------------------------------------------------------- /src/libexpr/primops/fromTOML.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/primops/fromTOML.cc -------------------------------------------------------------------------------- /src/libexpr/primops/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/primops/meson.build -------------------------------------------------------------------------------- /src/libexpr/print-ambiguous.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/print-ambiguous.cc -------------------------------------------------------------------------------- /src/libexpr/print.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/print.cc -------------------------------------------------------------------------------- /src/libexpr/search-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/search-path.cc -------------------------------------------------------------------------------- /src/libexpr/value-to-json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/value-to-json.cc -------------------------------------------------------------------------------- /src/libexpr/value-to-xml.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/value-to-xml.cc -------------------------------------------------------------------------------- /src/libexpr/value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/value.cc -------------------------------------------------------------------------------- /src/libexpr/value/context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libexpr/value/context.cc -------------------------------------------------------------------------------- /src/libfetchers-c/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libfetchers-c/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers-c/meson.build -------------------------------------------------------------------------------- /src/libfetchers-c/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libfetchers-c/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers-c/package.nix -------------------------------------------------------------------------------- /src/libfetchers-tests/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libfetchers-tests/data/public-key/noRoundTrip.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "ABCDE" 3 | } 4 | -------------------------------------------------------------------------------- /src/libfetchers-tests/git-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers-tests/git-utils.cc -------------------------------------------------------------------------------- /src/libfetchers-tests/git.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers-tests/git.cc -------------------------------------------------------------------------------- /src/libfetchers-tests/input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers-tests/input.cc -------------------------------------------------------------------------------- /src/libfetchers-tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers-tests/meson.build -------------------------------------------------------------------------------- /src/libfetchers-tests/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libfetchers-tests/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers-tests/package.nix -------------------------------------------------------------------------------- /src/libfetchers/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libfetchers/attrs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/attrs.cc -------------------------------------------------------------------------------- /src/libfetchers/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/cache.cc -------------------------------------------------------------------------------- /src/libfetchers/fetch-settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/fetch-settings.cc -------------------------------------------------------------------------------- /src/libfetchers/fetch-to-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/fetch-to-store.cc -------------------------------------------------------------------------------- /src/libfetchers/fetchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/fetchers.cc -------------------------------------------------------------------------------- /src/libfetchers/git-lfs-fetch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/git-lfs-fetch.cc -------------------------------------------------------------------------------- /src/libfetchers/git-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/git-utils.cc -------------------------------------------------------------------------------- /src/libfetchers/git.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/git.cc -------------------------------------------------------------------------------- /src/libfetchers/github.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/github.cc -------------------------------------------------------------------------------- /src/libfetchers/indirect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/indirect.cc -------------------------------------------------------------------------------- /src/libfetchers/input-cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/input-cache.cc -------------------------------------------------------------------------------- /src/libfetchers/mercurial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/mercurial.cc -------------------------------------------------------------------------------- /src/libfetchers/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/meson.build -------------------------------------------------------------------------------- /src/libfetchers/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libfetchers/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/package.nix -------------------------------------------------------------------------------- /src/libfetchers/path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/path.cc -------------------------------------------------------------------------------- /src/libfetchers/registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/registry.cc -------------------------------------------------------------------------------- /src/libfetchers/tarball.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libfetchers/tarball.cc -------------------------------------------------------------------------------- /src/libflake-c/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libflake-c/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake-c/meson.build -------------------------------------------------------------------------------- /src/libflake-c/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libflake-c/nix_api_flake.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake-c/nix_api_flake.cc -------------------------------------------------------------------------------- /src/libflake-c/nix_api_flake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake-c/nix_api_flake.h -------------------------------------------------------------------------------- /src/libflake-c/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake-c/package.nix -------------------------------------------------------------------------------- /src/libflake-tests/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libflake-tests/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libflake-tests/flakeref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake-tests/flakeref.cc -------------------------------------------------------------------------------- /src/libflake-tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake-tests/meson.build -------------------------------------------------------------------------------- /src/libflake-tests/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libflake-tests/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake-tests/package.nix -------------------------------------------------------------------------------- /src/libflake-tests/url-name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake-tests/url-name.cc -------------------------------------------------------------------------------- /src/libflake/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libflake/call-flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake/call-flake.nix -------------------------------------------------------------------------------- /src/libflake/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake/config.cc -------------------------------------------------------------------------------- /src/libflake/flake-primops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake/flake-primops.cc -------------------------------------------------------------------------------- /src/libflake/flake.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake/flake.cc -------------------------------------------------------------------------------- /src/libflake/flakeref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake/flakeref.cc -------------------------------------------------------------------------------- /src/libflake/lockfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake/lockfile.cc -------------------------------------------------------------------------------- /src/libflake/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake/meson.build -------------------------------------------------------------------------------- /src/libflake/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libflake/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake/package.nix -------------------------------------------------------------------------------- /src/libflake/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake/settings.cc -------------------------------------------------------------------------------- /src/libflake/url-name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libflake/url-name.cc -------------------------------------------------------------------------------- /src/libmain-c/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libmain-c/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain-c/meson.build -------------------------------------------------------------------------------- /src/libmain-c/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libmain-c/nix_api_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain-c/nix_api_main.cc -------------------------------------------------------------------------------- /src/libmain-c/nix_api_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain-c/nix_api_main.h -------------------------------------------------------------------------------- /src/libmain-c/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain-c/package.nix -------------------------------------------------------------------------------- /src/libmain/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libmain/common-args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain/common-args.cc -------------------------------------------------------------------------------- /src/libmain/loggers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain/loggers.cc -------------------------------------------------------------------------------- /src/libmain/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain/meson.build -------------------------------------------------------------------------------- /src/libmain/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libmain/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain/package.nix -------------------------------------------------------------------------------- /src/libmain/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain/plugin.cc -------------------------------------------------------------------------------- /src/libmain/progress-bar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain/progress-bar.cc -------------------------------------------------------------------------------- /src/libmain/shared.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain/shared.cc -------------------------------------------------------------------------------- /src/libmain/unix/stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libmain/unix/stack.cc -------------------------------------------------------------------------------- /src/libstore-c/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libstore-c/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-c/meson.build -------------------------------------------------------------------------------- /src/libstore-c/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libstore-c/nix_api_store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-c/nix_api_store.cc -------------------------------------------------------------------------------- /src/libstore-c/nix_api_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-c/nix_api_store.h -------------------------------------------------------------------------------- /src/libstore-c/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-c/package.nix -------------------------------------------------------------------------------- /src/libstore-test-support/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libstore-test-support/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libstore-test-support/path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-test-support/path.cc -------------------------------------------------------------------------------- /src/libstore-tests/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libstore-tests/bench-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/bench-main.cc -------------------------------------------------------------------------------- /src/libstore-tests/build-result.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/build-result.cc -------------------------------------------------------------------------------- /src/libstore-tests/data/derivation/output-deferred.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/libstore-tests/data/machines/bad_format: -------------------------------------------------------------------------------- 1 | nix@scratchy.labs.cs.uu.nl - - eight 2 | -------------------------------------------------------------------------------- /src/libstore-tests/data/outputs-spec/all.json: -------------------------------------------------------------------------------- 1 | [ 2 | "*" 3 | ] 4 | -------------------------------------------------------------------------------- /src/libstore-tests/data/outputs-spec/extended/all.json: -------------------------------------------------------------------------------- 1 | [ 2 | "*" 3 | ] 4 | -------------------------------------------------------------------------------- /src/libstore-tests/data/outputs-spec/extended/def.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /src/libstore-tests/data/outputs-spec/extended/name.json: -------------------------------------------------------------------------------- 1 | [ 2 | "a" 3 | ] 4 | -------------------------------------------------------------------------------- /src/libstore-tests/data/outputs-spec/name.json: -------------------------------------------------------------------------------- 1 | [ 2 | "a" 3 | ] 4 | -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/auto.txt: -------------------------------------------------------------------------------- 1 | auto -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/auto_param.txt: -------------------------------------------------------------------------------- 1 | auto?root=/foo/bar/baz -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/daemon_shorthand.txt: -------------------------------------------------------------------------------- 1 | daemon -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/local_1.txt: -------------------------------------------------------------------------------- 1 | local://?root=/foo/bar/baz -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/local_3.txt: -------------------------------------------------------------------------------- 1 | local://?root=/foo%20bar/baz -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/local_3_no_percent.txt: -------------------------------------------------------------------------------- 1 | local://?root=/foo bar/baz -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/local_shorthand_1.txt: -------------------------------------------------------------------------------- 1 | local?root=/foo/bar/baz -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/local_shorthand_3.txt: -------------------------------------------------------------------------------- 1 | local -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/ssh.txt: -------------------------------------------------------------------------------- 1 | ssh://localhost -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/ssh_unbracketed_ipv6_1.txt: -------------------------------------------------------------------------------- 1 | ssh://::1 -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/unix.txt: -------------------------------------------------------------------------------- 1 | unix://?max-connections=7&trusted=true -------------------------------------------------------------------------------- /src/libstore-tests/data/store-reference/unix_shorthand.txt: -------------------------------------------------------------------------------- 1 | daemon?max-connections=7&trusted=true -------------------------------------------------------------------------------- /src/libstore-tests/data/worker-protocol/client-handshake-info_1_30.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libstore-tests/derived-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/derived-path.cc -------------------------------------------------------------------------------- /src/libstore-tests/dummy-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/dummy-store.cc -------------------------------------------------------------------------------- /src/libstore-tests/local-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/local-store.cc -------------------------------------------------------------------------------- /src/libstore-tests/machines.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/machines.cc -------------------------------------------------------------------------------- /src/libstore-tests/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/main.cc -------------------------------------------------------------------------------- /src/libstore-tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/meson.build -------------------------------------------------------------------------------- /src/libstore-tests/meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/meson.options -------------------------------------------------------------------------------- /src/libstore-tests/nar-info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/nar-info.cc -------------------------------------------------------------------------------- /src/libstore-tests/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libstore-tests/outputs-spec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/outputs-spec.cc -------------------------------------------------------------------------------- /src/libstore-tests/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/package.nix -------------------------------------------------------------------------------- /src/libstore-tests/path-info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/path-info.cc -------------------------------------------------------------------------------- /src/libstore-tests/path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/path.cc -------------------------------------------------------------------------------- /src/libstore-tests/realisation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/realisation.cc -------------------------------------------------------------------------------- /src/libstore-tests/references.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/references.cc -------------------------------------------------------------------------------- /src/libstore-tests/s3-url.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/s3-url.cc -------------------------------------------------------------------------------- /src/libstore-tests/ssh-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore-tests/ssh-store.cc -------------------------------------------------------------------------------- /src/libstore/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libstore/aws-creds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/aws-creds.cc -------------------------------------------------------------------------------- /src/libstore/binary-cache-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/binary-cache-store.cc -------------------------------------------------------------------------------- /src/libstore/build-result.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/build-result.cc -------------------------------------------------------------------------------- /src/libstore/build/entry-points.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/build/entry-points.cc -------------------------------------------------------------------------------- /src/libstore/build/goal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/build/goal.cc -------------------------------------------------------------------------------- /src/libstore/build/worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/build/worker.cc -------------------------------------------------------------------------------- /src/libstore/builtins/buildenv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/builtins/buildenv.cc -------------------------------------------------------------------------------- /src/libstore/builtins/fetchurl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/builtins/fetchurl.cc -------------------------------------------------------------------------------- /src/libstore/common-protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/common-protocol.cc -------------------------------------------------------------------------------- /src/libstore/content-address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/content-address.cc -------------------------------------------------------------------------------- /src/libstore/daemon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/daemon.cc -------------------------------------------------------------------------------- /src/libstore/derivation-options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/derivation-options.cc -------------------------------------------------------------------------------- /src/libstore/derivations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/derivations.cc -------------------------------------------------------------------------------- /src/libstore/derived-path-map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/derived-path-map.cc -------------------------------------------------------------------------------- /src/libstore/derived-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/derived-path.cc -------------------------------------------------------------------------------- /src/libstore/dummy-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/dummy-store.cc -------------------------------------------------------------------------------- /src/libstore/dummy-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/dummy-store.md -------------------------------------------------------------------------------- /src/libstore/export-import.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/export-import.cc -------------------------------------------------------------------------------- /src/libstore/filetransfer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/filetransfer.cc -------------------------------------------------------------------------------- /src/libstore/gc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/gc.cc -------------------------------------------------------------------------------- /src/libstore/globals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/globals.cc -------------------------------------------------------------------------------- /src/libstore/keys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/keys.cc -------------------------------------------------------------------------------- /src/libstore/legacy-ssh-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/legacy-ssh-store.cc -------------------------------------------------------------------------------- /src/libstore/legacy-ssh-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/legacy-ssh-store.md -------------------------------------------------------------------------------- /src/libstore/linux/personality.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/linux/personality.cc -------------------------------------------------------------------------------- /src/libstore/local-fs-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/local-fs-store.cc -------------------------------------------------------------------------------- /src/libstore/local-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/local-store.cc -------------------------------------------------------------------------------- /src/libstore/local-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/local-store.md -------------------------------------------------------------------------------- /src/libstore/log-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/log-store.cc -------------------------------------------------------------------------------- /src/libstore/machines.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/machines.cc -------------------------------------------------------------------------------- /src/libstore/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/meson.build -------------------------------------------------------------------------------- /src/libstore/meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/meson.options -------------------------------------------------------------------------------- /src/libstore/misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/misc.cc -------------------------------------------------------------------------------- /src/libstore/mounted-ssh-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/mounted-ssh-store.md -------------------------------------------------------------------------------- /src/libstore/names.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/names.cc -------------------------------------------------------------------------------- /src/libstore/nar-info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/nar-info.cc -------------------------------------------------------------------------------- /src/libstore/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libstore/optimise-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/optimise-store.cc -------------------------------------------------------------------------------- /src/libstore/outputs-spec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/outputs-spec.cc -------------------------------------------------------------------------------- /src/libstore/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/package.nix -------------------------------------------------------------------------------- /src/libstore/path-info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/path-info.cc -------------------------------------------------------------------------------- /src/libstore/path-references.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/path-references.cc -------------------------------------------------------------------------------- /src/libstore/path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/path.cc -------------------------------------------------------------------------------- /src/libstore/pathlocks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/pathlocks.cc -------------------------------------------------------------------------------- /src/libstore/profiles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/profiles.cc -------------------------------------------------------------------------------- /src/libstore/realisation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/realisation.cc -------------------------------------------------------------------------------- /src/libstore/references.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/references.cc -------------------------------------------------------------------------------- /src/libstore/remote-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/remote-store.cc -------------------------------------------------------------------------------- /src/libstore/s3-url.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/s3-url.cc -------------------------------------------------------------------------------- /src/libstore/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/schema.sql -------------------------------------------------------------------------------- /src/libstore/serve-protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/serve-protocol.cc -------------------------------------------------------------------------------- /src/libstore/sqlite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/sqlite.cc -------------------------------------------------------------------------------- /src/libstore/ssh-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/ssh-store.cc -------------------------------------------------------------------------------- /src/libstore/ssh-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/ssh-store.md -------------------------------------------------------------------------------- /src/libstore/ssh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/ssh.cc -------------------------------------------------------------------------------- /src/libstore/store-api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/store-api.cc -------------------------------------------------------------------------------- /src/libstore/store-reference.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/store-reference.cc -------------------------------------------------------------------------------- /src/libstore/unix/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/unix/meson.build -------------------------------------------------------------------------------- /src/libstore/unix/pathlocks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/unix/pathlocks.cc -------------------------------------------------------------------------------- /src/libstore/unix/user-lock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/unix/user-lock.cc -------------------------------------------------------------------------------- /src/libstore/worker-protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libstore/worker-protocol.cc -------------------------------------------------------------------------------- /src/libutil-c/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libutil-c/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-c/meson.build -------------------------------------------------------------------------------- /src/libutil-c/meson.options: -------------------------------------------------------------------------------- 1 | # vim: filetype=meson 2 | -------------------------------------------------------------------------------- /src/libutil-c/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libutil-c/nix_api_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-c/nix_api_util.cc -------------------------------------------------------------------------------- /src/libutil-c/nix_api_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-c/nix_api_util.h -------------------------------------------------------------------------------- /src/libutil-c/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-c/package.nix -------------------------------------------------------------------------------- /src/libutil-test-support/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libutil-test-support/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libutil-tests/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libutil-tests/alignment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/alignment.cc -------------------------------------------------------------------------------- /src/libutil-tests/archive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/archive.cc -------------------------------------------------------------------------------- /src/libutil-tests/args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/args.cc -------------------------------------------------------------------------------- /src/libutil-tests/base-n.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/base-n.cc -------------------------------------------------------------------------------- /src/libutil-tests/canon-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/canon-path.cc -------------------------------------------------------------------------------- /src/libutil-tests/closure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/closure.cc -------------------------------------------------------------------------------- /src/libutil-tests/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/config.cc -------------------------------------------------------------------------------- /src/libutil-tests/data/git/hello-world-blob.bin: -------------------------------------------------------------------------------- 1 | blob 16Hello 2 | 3 | World -------------------------------------------------------------------------------- /src/libutil-tests/data/git/hello-world.bin: -------------------------------------------------------------------------------- 1 | Hello 2 | 3 | World -------------------------------------------------------------------------------- /src/libutil-tests/git.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/git.cc -------------------------------------------------------------------------------- /src/libutil-tests/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/hash.cc -------------------------------------------------------------------------------- /src/libutil-tests/hilite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/hilite.cc -------------------------------------------------------------------------------- /src/libutil-tests/json-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/json-utils.cc -------------------------------------------------------------------------------- /src/libutil-tests/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/logging.cc -------------------------------------------------------------------------------- /src/libutil-tests/lru-cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/lru-cache.cc -------------------------------------------------------------------------------- /src/libutil-tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/meson.build -------------------------------------------------------------------------------- /src/libutil-tests/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libutil-tests/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/package.nix -------------------------------------------------------------------------------- /src/libutil-tests/pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/pool.cc -------------------------------------------------------------------------------- /src/libutil-tests/position.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/position.cc -------------------------------------------------------------------------------- /src/libutil-tests/processes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/processes.cc -------------------------------------------------------------------------------- /src/libutil-tests/sort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/sort.cc -------------------------------------------------------------------------------- /src/libutil-tests/spawn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/spawn.cc -------------------------------------------------------------------------------- /src/libutil-tests/strings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/strings.cc -------------------------------------------------------------------------------- /src/libutil-tests/terminal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/terminal.cc -------------------------------------------------------------------------------- /src/libutil-tests/topo-sort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/topo-sort.cc -------------------------------------------------------------------------------- /src/libutil-tests/url.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/url.cc -------------------------------------------------------------------------------- /src/libutil-tests/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/util.cc -------------------------------------------------------------------------------- /src/libutil-tests/xml-writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil-tests/xml-writer.cc -------------------------------------------------------------------------------- /src/libutil/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/libutil/archive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/archive.cc -------------------------------------------------------------------------------- /src/libutil/args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/args.cc -------------------------------------------------------------------------------- /src/libutil/base-n.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/base-n.cc -------------------------------------------------------------------------------- /src/libutil/base-nix-32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/base-nix-32.cc -------------------------------------------------------------------------------- /src/libutil/canon-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/canon-path.cc -------------------------------------------------------------------------------- /src/libutil/compression.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/compression.cc -------------------------------------------------------------------------------- /src/libutil/compute-levels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/compute-levels.cc -------------------------------------------------------------------------------- /src/libutil/config-global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/config-global.cc -------------------------------------------------------------------------------- /src/libutil/configuration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/configuration.cc -------------------------------------------------------------------------------- /src/libutil/current-process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/current-process.cc -------------------------------------------------------------------------------- /src/libutil/english.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/english.cc -------------------------------------------------------------------------------- /src/libutil/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/error.cc -------------------------------------------------------------------------------- /src/libutil/executable-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/executable-path.cc -------------------------------------------------------------------------------- /src/libutil/exit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/exit.cc -------------------------------------------------------------------------------- /src/libutil/file-descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/file-descriptor.cc -------------------------------------------------------------------------------- /src/libutil/file-system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/file-system.cc -------------------------------------------------------------------------------- /src/libutil/freebsd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/freebsd/meson.build -------------------------------------------------------------------------------- /src/libutil/fs-sink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/fs-sink.cc -------------------------------------------------------------------------------- /src/libutil/git.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/git.cc -------------------------------------------------------------------------------- /src/libutil/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/hash.cc -------------------------------------------------------------------------------- /src/libutil/hilite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/hilite.cc -------------------------------------------------------------------------------- /src/libutil/json-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/json-utils.cc -------------------------------------------------------------------------------- /src/libutil/linux/cgroup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/linux/cgroup.cc -------------------------------------------------------------------------------- /src/libutil/linux/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/linux/meson.build -------------------------------------------------------------------------------- /src/libutil/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/logging.cc -------------------------------------------------------------------------------- /src/libutil/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/meson.build -------------------------------------------------------------------------------- /src/libutil/meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/meson.options -------------------------------------------------------------------------------- /src/libutil/nar-accessor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/nar-accessor.cc -------------------------------------------------------------------------------- /src/libutil/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/libutil/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/package.nix -------------------------------------------------------------------------------- /src/libutil/pos-table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/pos-table.cc -------------------------------------------------------------------------------- /src/libutil/position.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/position.cc -------------------------------------------------------------------------------- /src/libutil/serialise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/serialise.cc -------------------------------------------------------------------------------- /src/libutil/signature/signer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/signature/signer.cc -------------------------------------------------------------------------------- /src/libutil/source-accessor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/source-accessor.cc -------------------------------------------------------------------------------- /src/libutil/source-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/source-path.cc -------------------------------------------------------------------------------- /src/libutil/strings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/strings.cc -------------------------------------------------------------------------------- /src/libutil/suggestions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/suggestions.cc -------------------------------------------------------------------------------- /src/libutil/tarfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/tarfile.cc -------------------------------------------------------------------------------- /src/libutil/tee-logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/tee-logger.cc -------------------------------------------------------------------------------- /src/libutil/terminal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/terminal.cc -------------------------------------------------------------------------------- /src/libutil/thread-pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/thread-pool.cc -------------------------------------------------------------------------------- /src/libutil/unix/file-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/unix/file-path.cc -------------------------------------------------------------------------------- /src/libutil/unix/file-system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/unix/file-system.cc -------------------------------------------------------------------------------- /src/libutil/unix/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/unix/meson.build -------------------------------------------------------------------------------- /src/libutil/unix/os-string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/unix/os-string.cc -------------------------------------------------------------------------------- /src/libutil/unix/processes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/unix/processes.cc -------------------------------------------------------------------------------- /src/libutil/unix/signals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/unix/signals.cc -------------------------------------------------------------------------------- /src/libutil/unix/users.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/unix/users.cc -------------------------------------------------------------------------------- /src/libutil/url.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/url.cc -------------------------------------------------------------------------------- /src/libutil/users.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/users.cc -------------------------------------------------------------------------------- /src/libutil/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/util.cc -------------------------------------------------------------------------------- /src/libutil/windows/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/windows/meson.build -------------------------------------------------------------------------------- /src/libutil/windows/users.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/windows/users.cc -------------------------------------------------------------------------------- /src/libutil/xml-writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/libutil/xml-writer.cc -------------------------------------------------------------------------------- /src/nix-functional-tests: -------------------------------------------------------------------------------- 1 | ../tests/functional -------------------------------------------------------------------------------- /src/nix-manual: -------------------------------------------------------------------------------- 1 | ../doc/manual/ -------------------------------------------------------------------------------- /src/nix/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/nix/add-to-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/add-to-store.cc -------------------------------------------------------------------------------- /src/nix/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/add.md -------------------------------------------------------------------------------- /src/nix/app.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/app.cc -------------------------------------------------------------------------------- /src/nix/build.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/build.cc -------------------------------------------------------------------------------- /src/nix/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/build.md -------------------------------------------------------------------------------- /src/nix/bundle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/bundle.cc -------------------------------------------------------------------------------- /src/nix/bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/bundle.md -------------------------------------------------------------------------------- /src/nix/cat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/cat.cc -------------------------------------------------------------------------------- /src/nix/config-check.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/config-check.cc -------------------------------------------------------------------------------- /src/nix/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/config.cc -------------------------------------------------------------------------------- /src/nix/copy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/copy.cc -------------------------------------------------------------------------------- /src/nix/copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/copy.md -------------------------------------------------------------------------------- /src/nix/crash-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/crash-handler.cc -------------------------------------------------------------------------------- /src/nix/crash-handler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/crash-handler.hh -------------------------------------------------------------------------------- /src/nix/derivation-add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/derivation-add.cc -------------------------------------------------------------------------------- /src/nix/derivation-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/derivation-add.md -------------------------------------------------------------------------------- /src/nix/derivation-show.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/derivation-show.cc -------------------------------------------------------------------------------- /src/nix/derivation-show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/derivation-show.md -------------------------------------------------------------------------------- /src/nix/derivation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/derivation.cc -------------------------------------------------------------------------------- /src/nix/develop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/develop.cc -------------------------------------------------------------------------------- /src/nix/develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/develop.md -------------------------------------------------------------------------------- /src/nix/diff-closures.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/diff-closures.cc -------------------------------------------------------------------------------- /src/nix/diff-closures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/diff-closures.md -------------------------------------------------------------------------------- /src/nix/doc: -------------------------------------------------------------------------------- 1 | ../../doc -------------------------------------------------------------------------------- /src/nix/dump-path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/dump-path.cc -------------------------------------------------------------------------------- /src/nix/edit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/edit.cc -------------------------------------------------------------------------------- /src/nix/edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/edit.md -------------------------------------------------------------------------------- /src/nix/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/env.cc -------------------------------------------------------------------------------- /src/nix/eval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/eval.cc -------------------------------------------------------------------------------- /src/nix/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/eval.md -------------------------------------------------------------------------------- /src/nix/flake-archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake-archive.md -------------------------------------------------------------------------------- /src/nix/flake-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake-check.md -------------------------------------------------------------------------------- /src/nix/flake-clone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake-clone.md -------------------------------------------------------------------------------- /src/nix/flake-command.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake-command.hh -------------------------------------------------------------------------------- /src/nix/flake-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake-init.md -------------------------------------------------------------------------------- /src/nix/flake-lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake-lock.md -------------------------------------------------------------------------------- /src/nix/flake-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake-metadata.md -------------------------------------------------------------------------------- /src/nix/flake-new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake-new.md -------------------------------------------------------------------------------- /src/nix/flake-prefetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake-prefetch.md -------------------------------------------------------------------------------- /src/nix/flake-show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake-show.md -------------------------------------------------------------------------------- /src/nix/flake-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake-update.md -------------------------------------------------------------------------------- /src/nix/flake.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake.cc -------------------------------------------------------------------------------- /src/nix/flake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/flake.md -------------------------------------------------------------------------------- /src/nix/formatter-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/formatter-build.md -------------------------------------------------------------------------------- /src/nix/formatter-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/formatter-run.md -------------------------------------------------------------------------------- /src/nix/formatter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/formatter.cc -------------------------------------------------------------------------------- /src/nix/get-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/get-env.sh -------------------------------------------------------------------------------- /src/nix/hash-convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/hash-convert.md -------------------------------------------------------------------------------- /src/nix/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/hash.cc -------------------------------------------------------------------------------- /src/nix/help-stores.md: -------------------------------------------------------------------------------- 1 | ../../doc/manual/source/store/types/index.md.in -------------------------------------------------------------------------------- /src/nix/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/help.md -------------------------------------------------------------------------------- /src/nix/key-generate-secret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/key-generate-secret.md -------------------------------------------------------------------------------- /src/nix/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/log.cc -------------------------------------------------------------------------------- /src/nix/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/log.md -------------------------------------------------------------------------------- /src/nix/ls.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/ls.cc -------------------------------------------------------------------------------- /src/nix/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/main.cc -------------------------------------------------------------------------------- /src/nix/man-pages.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/man-pages.cc -------------------------------------------------------------------------------- /src/nix/man-pages.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/man-pages.hh -------------------------------------------------------------------------------- /src/nix/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/meson.build -------------------------------------------------------------------------------- /src/nix/meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/meson.options -------------------------------------------------------------------------------- /src/nix/misc: -------------------------------------------------------------------------------- 1 | ../../misc -------------------------------------------------------------------------------- /src/nix/nar-cat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nar-cat.md -------------------------------------------------------------------------------- /src/nix/nar-dump-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nar-dump-path.md -------------------------------------------------------------------------------- /src/nix/nar-ls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nar-ls.md -------------------------------------------------------------------------------- /src/nix/nar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nar.cc -------------------------------------------------------------------------------- /src/nix/nar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nar.md -------------------------------------------------------------------------------- /src/nix/nix-build/nix-build.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nix-build/nix-build.cc -------------------------------------------------------------------------------- /src/nix/nix-env/buildenv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nix-env/buildenv.nix -------------------------------------------------------------------------------- /src/nix/nix-env/nix-env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nix-env/nix-env.cc -------------------------------------------------------------------------------- /src/nix/nix-env/user-env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nix-env/user-env.cc -------------------------------------------------------------------------------- /src/nix/nix-env/user-env.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nix-env/user-env.hh -------------------------------------------------------------------------------- /src/nix/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /src/nix/nix-store/dotgraph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nix-store/dotgraph.cc -------------------------------------------------------------------------------- /src/nix/nix-store/dotgraph.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nix-store/dotgraph.hh -------------------------------------------------------------------------------- /src/nix/nix-store/graphml.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nix-store/graphml.cc -------------------------------------------------------------------------------- /src/nix/nix-store/graphml.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nix-store/graphml.hh -------------------------------------------------------------------------------- /src/nix/nix-store/nix-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nix-store/nix-store.cc -------------------------------------------------------------------------------- /src/nix/nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/nix.md -------------------------------------------------------------------------------- /src/nix/optimise-store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/optimise-store.cc -------------------------------------------------------------------------------- /src/nix/optimise-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/optimise-store.md -------------------------------------------------------------------------------- /src/nix/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/package.nix -------------------------------------------------------------------------------- /src/nix/path-from-hash-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/path-from-hash-part.cc -------------------------------------------------------------------------------- /src/nix/path-from-hash-part.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/path-from-hash-part.md -------------------------------------------------------------------------------- /src/nix/path-info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/path-info.cc -------------------------------------------------------------------------------- /src/nix/path-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/path-info.md -------------------------------------------------------------------------------- /src/nix/prefetch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/prefetch.cc -------------------------------------------------------------------------------- /src/nix/print-dev-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/print-dev-env.md -------------------------------------------------------------------------------- /src/nix/profile-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/profile-add.md -------------------------------------------------------------------------------- /src/nix/profile-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/profile-history.md -------------------------------------------------------------------------------- /src/nix/profile-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/profile-list.md -------------------------------------------------------------------------------- /src/nix/profile-remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/profile-remove.md -------------------------------------------------------------------------------- /src/nix/profile-rollback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/profile-rollback.md -------------------------------------------------------------------------------- /src/nix/profile-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/profile-upgrade.md -------------------------------------------------------------------------------- /src/nix/profile-wipe-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/profile-wipe-history.md -------------------------------------------------------------------------------- /src/nix/profile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/profile.cc -------------------------------------------------------------------------------- /src/nix/profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/profile.md -------------------------------------------------------------------------------- /src/nix/profiles.md: -------------------------------------------------------------------------------- 1 | ../../doc/manual/source/command-ref/files/profiles.md -------------------------------------------------------------------------------- /src/nix/realisation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/realisation.cc -------------------------------------------------------------------------------- /src/nix/realisation/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/realisation/info.md -------------------------------------------------------------------------------- /src/nix/registry-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/registry-add.md -------------------------------------------------------------------------------- /src/nix/registry-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/registry-list.md -------------------------------------------------------------------------------- /src/nix/registry-pin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/registry-pin.md -------------------------------------------------------------------------------- /src/nix/registry-remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/registry-remove.md -------------------------------------------------------------------------------- /src/nix/registry-resolve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/registry-resolve.md -------------------------------------------------------------------------------- /src/nix/registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/registry.cc -------------------------------------------------------------------------------- /src/nix/registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/registry.md -------------------------------------------------------------------------------- /src/nix/repl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/repl.cc -------------------------------------------------------------------------------- /src/nix/repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/repl.md -------------------------------------------------------------------------------- /src/nix/run.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/run.cc -------------------------------------------------------------------------------- /src/nix/run.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/run.hh -------------------------------------------------------------------------------- /src/nix/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/run.md -------------------------------------------------------------------------------- /src/nix/scripts: -------------------------------------------------------------------------------- 1 | ../../scripts -------------------------------------------------------------------------------- /src/nix/search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/search.cc -------------------------------------------------------------------------------- /src/nix/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/search.md -------------------------------------------------------------------------------- /src/nix/self-exe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/self-exe.cc -------------------------------------------------------------------------------- /src/nix/self-exe.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/self-exe.hh -------------------------------------------------------------------------------- /src/nix/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/shell.md -------------------------------------------------------------------------------- /src/nix/sigs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/sigs.cc -------------------------------------------------------------------------------- /src/nix/store-cat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-cat.md -------------------------------------------------------------------------------- /src/nix/store-copy-log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-copy-log.cc -------------------------------------------------------------------------------- /src/nix/store-copy-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-copy-log.md -------------------------------------------------------------------------------- /src/nix/store-copy-sigs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-copy-sigs.md -------------------------------------------------------------------------------- /src/nix/store-delete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-delete.cc -------------------------------------------------------------------------------- /src/nix/store-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-delete.md -------------------------------------------------------------------------------- /src/nix/store-dump-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-dump-path.md -------------------------------------------------------------------------------- /src/nix/store-gc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-gc.cc -------------------------------------------------------------------------------- /src/nix/store-gc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-gc.md -------------------------------------------------------------------------------- /src/nix/store-info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-info.cc -------------------------------------------------------------------------------- /src/nix/store-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-info.md -------------------------------------------------------------------------------- /src/nix/store-ls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-ls.md -------------------------------------------------------------------------------- /src/nix/store-prefetch-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-prefetch-file.md -------------------------------------------------------------------------------- /src/nix/store-repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-repair.cc -------------------------------------------------------------------------------- /src/nix/store-repair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store-repair.md -------------------------------------------------------------------------------- /src/nix/store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/store.cc -------------------------------------------------------------------------------- /src/nix/unix/daemon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/unix/daemon.cc -------------------------------------------------------------------------------- /src/nix/unix/daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/unix/daemon.md -------------------------------------------------------------------------------- /src/nix/upgrade-nix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/upgrade-nix.cc -------------------------------------------------------------------------------- /src/nix/upgrade-nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/upgrade-nix.md -------------------------------------------------------------------------------- /src/nix/verify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/verify.cc -------------------------------------------------------------------------------- /src/nix/verify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/verify.md -------------------------------------------------------------------------------- /src/nix/why-depends.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/why-depends.cc -------------------------------------------------------------------------------- /src/nix/why-depends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/nix/why-depends.md -------------------------------------------------------------------------------- /src/perl/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /src/perl/.yath.rc.in: -------------------------------------------------------------------------------- 1 | [test] 2 | -I=rel(@lib_dir@) 3 | -------------------------------------------------------------------------------- /src/perl/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/MANIFEST -------------------------------------------------------------------------------- /src/perl/lib/Nix/Config.pm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/lib/Nix/Config.pm.in -------------------------------------------------------------------------------- /src/perl/lib/Nix/CopyClosure.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/lib/Nix/CopyClosure.pm -------------------------------------------------------------------------------- /src/perl/lib/Nix/Manifest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/lib/Nix/Manifest.pm -------------------------------------------------------------------------------- /src/perl/lib/Nix/SSH.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/lib/Nix/SSH.pm -------------------------------------------------------------------------------- /src/perl/lib/Nix/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/lib/Nix/Store.pm -------------------------------------------------------------------------------- /src/perl/lib/Nix/Store.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/lib/Nix/Store.xs -------------------------------------------------------------------------------- /src/perl/lib/Nix/Utils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/lib/Nix/Utils.pm -------------------------------------------------------------------------------- /src/perl/lib/Nix/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/lib/Nix/meson.build -------------------------------------------------------------------------------- /src/perl/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/meson.build -------------------------------------------------------------------------------- /src/perl/meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/meson.options -------------------------------------------------------------------------------- /src/perl/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/package.nix -------------------------------------------------------------------------------- /src/perl/t/init.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/t/init.t -------------------------------------------------------------------------------- /src/perl/t/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/src/perl/t/meson.build -------------------------------------------------------------------------------- /tests/functional/.version: -------------------------------------------------------------------------------- 1 | ../../.version -------------------------------------------------------------------------------- /tests/functional/add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/add.sh -------------------------------------------------------------------------------- /tests/functional/brotli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/brotli.sh -------------------------------------------------------------------------------- /tests/functional/build-cores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/build-cores.sh -------------------------------------------------------------------------------- /tests/functional/build-dry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/build-dry.sh -------------------------------------------------------------------------------- /tests/functional/build-hook.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/build-hook.nix -------------------------------------------------------------------------------- /tests/functional/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/build.sh -------------------------------------------------------------------------------- /tests/functional/ca-shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ca-shell.nix -------------------------------------------------------------------------------- /tests/functional/ca/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ca/build.sh -------------------------------------------------------------------------------- /tests/functional/ca/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ca/common.sh -------------------------------------------------------------------------------- /tests/functional/ca/config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ca/config.nix -------------------------------------------------------------------------------- /tests/functional/ca/config.nix.in: -------------------------------------------------------------------------------- 1 | ../config.nix.in -------------------------------------------------------------------------------- /tests/functional/ca/flake.nix: -------------------------------------------------------------------------------- 1 | { 2 | outputs = { self }: import ./content-addressed.nix { }; 3 | } 4 | -------------------------------------------------------------------------------- /tests/functional/ca/gc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ca/gc.sh -------------------------------------------------------------------------------- /tests/functional/ca/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ca/meson.build -------------------------------------------------------------------------------- /tests/functional/ca/nix-copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ca/nix-copy.sh -------------------------------------------------------------------------------- /tests/functional/ca/nix-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ca/nix-run.sh -------------------------------------------------------------------------------- /tests/functional/ca/racy.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ca/racy.nix -------------------------------------------------------------------------------- /tests/functional/ca/repl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ca/repl.sh -------------------------------------------------------------------------------- /tests/functional/case.nar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/case.nar -------------------------------------------------------------------------------- /tests/functional/characterisation/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/check-refs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/check-refs.nix -------------------------------------------------------------------------------- /tests/functional/check-refs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/check-refs.sh -------------------------------------------------------------------------------- /tests/functional/check-reqs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/check-reqs.nix -------------------------------------------------------------------------------- /tests/functional/check-reqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/check-reqs.sh -------------------------------------------------------------------------------- /tests/functional/check.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/check.nix -------------------------------------------------------------------------------- /tests/functional/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/check.sh -------------------------------------------------------------------------------- /tests/functional/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/common.sh -------------------------------------------------------------------------------- /tests/functional/common/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/common/init.sh -------------------------------------------------------------------------------- /tests/functional/common/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/common/vars.sh -------------------------------------------------------------------------------- /tests/functional/completions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/completions.sh -------------------------------------------------------------------------------- /tests/functional/config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/config.nix -------------------------------------------------------------------------------- /tests/functional/config.nix.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/config.nix.in -------------------------------------------------------------------------------- /tests/functional/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/config.sh -------------------------------------------------------------------------------- /tests/functional/config/extra-config.conf: -------------------------------------------------------------------------------- 1 | allowed-uris = https://github.com/NixOS/nix -------------------------------------------------------------------------------- /tests/functional/debugger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/debugger.sh -------------------------------------------------------------------------------- /tests/functional/dummy: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /tests/functional/dump-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/dump-db.sh -------------------------------------------------------------------------------- /tests/functional/duplicate.nar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/duplicate.nar -------------------------------------------------------------------------------- /tests/functional/dyn-drv/config.nix.in: -------------------------------------------------------------------------------- 1 | ../config.nix.in -------------------------------------------------------------------------------- /tests/functional/eval-store.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/eval-store.sh -------------------------------------------------------------------------------- /tests/functional/eval.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/eval.nix -------------------------------------------------------------------------------- /tests/functional/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/eval.sh -------------------------------------------------------------------------------- /tests/functional/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/export.sh -------------------------------------------------------------------------------- /tests/functional/failing.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/failing.nix -------------------------------------------------------------------------------- /tests/functional/fetchGit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/fetchGit.sh -------------------------------------------------------------------------------- /tests/functional/fetchPath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/fetchPath.sh -------------------------------------------------------------------------------- /tests/functional/fetchurl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/fetchurl.sh -------------------------------------------------------------------------------- /tests/functional/fixed.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/fixed.nix -------------------------------------------------------------------------------- /tests/functional/fixed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/fixed.sh -------------------------------------------------------------------------------- /tests/functional/flakes/edit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/flakes/edit.sh -------------------------------------------------------------------------------- /tests/functional/flakes/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/flakes/init.sh -------------------------------------------------------------------------------- /tests/functional/flakes/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/flakes/run.sh -------------------------------------------------------------------------------- /tests/functional/flakes/show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/flakes/show.sh -------------------------------------------------------------------------------- /tests/functional/formatter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/formatter.sh -------------------------------------------------------------------------------- /tests/functional/gc-auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/gc-auto.sh -------------------------------------------------------------------------------- /tests/functional/gc-runtime.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/gc-runtime.nix -------------------------------------------------------------------------------- /tests/functional/gc-runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/gc-runtime.sh -------------------------------------------------------------------------------- /tests/functional/gc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/gc.sh -------------------------------------------------------------------------------- /tests/functional/hash-check.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/hash-check.nix -------------------------------------------------------------------------------- /tests/functional/hash-path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/hash-path.sh -------------------------------------------------------------------------------- /tests/functional/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/help.sh -------------------------------------------------------------------------------- /tests/functional/hermetic.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/hermetic.nix -------------------------------------------------------------------------------- /tests/functional/ifd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ifd.nix -------------------------------------------------------------------------------- /tests/functional/impure-env.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/impure-env.nix -------------------------------------------------------------------------------- /tests/functional/impure-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/impure-env.sh -------------------------------------------------------------------------------- /tests/functional/impure-eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/impure-eval.sh -------------------------------------------------------------------------------- /tests/functional/json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/json.sh -------------------------------------------------------------------------------- /tests/functional/lang-gc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/lang-gc.sh -------------------------------------------------------------------------------- /tests/functional/lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/lang.sh -------------------------------------------------------------------------------- /tests/functional/lang/data: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tests/functional/lang/dir1/a.nix: -------------------------------------------------------------------------------- 1 | "a" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/dir2/a.nix: -------------------------------------------------------------------------------- 1 | "X" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/dir2/b.nix: -------------------------------------------------------------------------------- 1 | "b" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/dir3/a.nix: -------------------------------------------------------------------------------- 1 | "X" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/dir3/b.nix: -------------------------------------------------------------------------------- 1 | "X" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/dir3/c.nix: -------------------------------------------------------------------------------- 1 | "c" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/dir4/a.nix: -------------------------------------------------------------------------------- 1 | "X" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/dir4/c.nix: -------------------------------------------------------------------------------- 1 | "X" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-abort.nix: -------------------------------------------------------------------------------- 1 | if true then abort "this should fail" else 1 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-addErrorContext-example.flags: -------------------------------------------------------------------------------- 1 | --eval --strict --no-show-trace 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-assert-equal-int-float.nix: -------------------------------------------------------------------------------- 1 | assert 1 == 1.1; 2 | throw "unreachable" 3 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-assert-equal-paths.nix: -------------------------------------------------------------------------------- 1 | assert ./foo == ./bar; 2 | throw "unreachable" 3 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-assert-equal-type.nix: -------------------------------------------------------------------------------- 1 | assert false == null; 2 | abort "unreachable" 3 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-bad-string-interpolation-1.nix: -------------------------------------------------------------------------------- 1 | "${x: x}" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-bad-string-interpolation-2.nix: -------------------------------------------------------------------------------- 1 | "${./fnord}" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-bad-string-interpolation-3.nix: -------------------------------------------------------------------------------- 1 | ''${x: x}'' 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-call-primop.nix: -------------------------------------------------------------------------------- 1 | builtins.length 1 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-deepseq.nix: -------------------------------------------------------------------------------- 1 | builtins.deepSeq { x = abort "foo"; } 456 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-dynamic-attrs-let-2.nix: -------------------------------------------------------------------------------- 1 | let 2 | ${"${"a"}"} = 1; 3 | in 4 | a 5 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-dynamic-attrs-let-3.nix: -------------------------------------------------------------------------------- 1 | let 2 | "${"a"}" = 1; 3 | in 4 | a 5 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-dynamic-attrs-let.nix: -------------------------------------------------------------------------------- 1 | let 2 | ${"a" + ""} = 1; 3 | in 4 | a 5 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-empty-formals.nix: -------------------------------------------------------------------------------- 1 | (foo@{ }: 1) { a = 3; } 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-eol-1.nix: -------------------------------------------------------------------------------- 1 | # foo 2 | invalid 3 | # bar 4 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-eol-2.nix: -------------------------------------------------------------------------------- 1 | # foo invalid 2 | # bar 3 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-eol-3.nix: -------------------------------------------------------------------------------- 1 | # foo 2 | invalid 3 | # bar 4 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-fetchurl-baseName.nix: -------------------------------------------------------------------------------- 1 | builtins.fetchurl "https://example.com/~wiggle~" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-fromJSON-keyWithNullByte.nix: -------------------------------------------------------------------------------- 1 | builtins.fromJSON ''{"a\u0000b": 1}'' 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-fromJSON-valueWithNullByte.nix: -------------------------------------------------------------------------------- 1 | builtins.fromJSON ''"a\u0000b"'' 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-fromTOML-keyWithNullByte.nix: -------------------------------------------------------------------------------- 1 | builtins.fromTOML ''"a\u0000b" = 1'' 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-fromTOML-overflow.nix: -------------------------------------------------------------------------------- 1 | builtins.fromTOML ''attr = 9223372036854775808'' 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-fromTOML-underflow.nix: -------------------------------------------------------------------------------- 1 | builtins.fromTOML ''attr = -9223372036854775809'' 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-fromTOML-valueWithNullByte.nix: -------------------------------------------------------------------------------- 1 | builtins.fromTOML ''k = "a\u0000b"'' 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-genericClosure-not-attrset.nix: -------------------------------------------------------------------------------- 1 | builtins.genericClosure "not an attrset" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-infinite-recursion-lambda.flags: -------------------------------------------------------------------------------- 1 | --max-call-depth 100 -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-list.nix: -------------------------------------------------------------------------------- 1 | 8 ++ 1 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-missing-arg-import.nix: -------------------------------------------------------------------------------- 1 | import ./non-eval-trivial-lambda-formals.nix { } 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-nonexist-path.err.exp: -------------------------------------------------------------------------------- 1 | error: path '/pwd/lang/fnord' does not exist 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-not-throws.nix: -------------------------------------------------------------------------------- 1 | !(throw "uh oh!") 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-pipe-operators.nix: -------------------------------------------------------------------------------- 1 | 1 |> 2 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-recursion.nix: -------------------------------------------------------------------------------- 1 | let 2 | a = { } // a; 3 | in 4 | a.foo 5 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-seq.nix: -------------------------------------------------------------------------------- 1 | builtins.seq (abort "foo") 2 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-set-override.nix: -------------------------------------------------------------------------------- 1 | rec { __overrides = 1; } 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-set.nix: -------------------------------------------------------------------------------- 1 | 8.x 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-string-nul-1.nix: -------------------------------------------------------------------------------- 1 | "foobar" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-fail-to-path.nix: -------------------------------------------------------------------------------- 1 | builtins.toPath "foo/bar" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-arithmetic.exp: -------------------------------------------------------------------------------- 1 | 2216 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-attrs.exp: -------------------------------------------------------------------------------- 1 | 987 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-attrs2.exp: -------------------------------------------------------------------------------- 1 | 987 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-attrs3.exp: -------------------------------------------------------------------------------- 1 | "foo 22 80 itchyxac" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-backslash-newline-1.exp: -------------------------------------------------------------------------------- 1 | "a\nb" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-backslash-newline-1.nix: -------------------------------------------------------------------------------- 1 | "a\ 2 | b" 3 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-backslash-newline-2.exp: -------------------------------------------------------------------------------- 1 | "a\nb" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-backslash-newline-2.nix: -------------------------------------------------------------------------------- 1 | ''a''\ 2 | b'' 3 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-baseNameOf.exp: -------------------------------------------------------------------------------- 1 | "ok" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-builtins.exp: -------------------------------------------------------------------------------- 1 | /foo 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-callable-attrs.exp: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-catattrs.exp: -------------------------------------------------------------------------------- 1 | [ 1 2 ] 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-comments.exp: -------------------------------------------------------------------------------- 1 | "abcdefghijklmnopqrstuvwxyz" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-concat.exp: -------------------------------------------------------------------------------- 1 | [ 1 2 3 4 5 6 7 8 9 ] 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-context.exp: -------------------------------------------------------------------------------- 1 | "foo eval-okay-context.nix bar" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-curpos.exp: -------------------------------------------------------------------------------- 1 | [ 3 7 4 9 ] 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-deepseq.exp: -------------------------------------------------------------------------------- 1 | 456 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-delayed-with-inherit.exp: -------------------------------------------------------------------------------- 1 | "b-overridden" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-deprecate-cursed-or.exp: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-dynamic-attrs-2.exp: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-elem.exp: -------------------------------------------------------------------------------- 1 | [ true false 30 ] 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-empty-args.exp: -------------------------------------------------------------------------------- 1 | "ab" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-eq.exp: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-flake-ref-to-string.exp: -------------------------------------------------------------------------------- 1 | "github:NixOS/nixpkgs/23.05?dir=lib" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-flatten.exp: -------------------------------------------------------------------------------- 1 | "1234567" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-foldlStrict-lazy-elements.exp: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-foldlStrict-lazy-initial-accumulator.exp: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-foldlStrict.exp: -------------------------------------------------------------------------------- 1 | 500500 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-fromjson.exp: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-getattrpos-undefined.exp: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-getenv.exp: -------------------------------------------------------------------------------- 1 | "foobar" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-hash.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-if.exp: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-import.exp: -------------------------------------------------------------------------------- 1 | [ 1 2 3 4 5 6 7 8 9 10 ] 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-inherit-from.err.exp: -------------------------------------------------------------------------------- 1 | trace: used 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-let.exp: -------------------------------------------------------------------------------- 1 | "foobar" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-list.exp: -------------------------------------------------------------------------------- 1 | "foobarblatest" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-listtoattrs.exp: -------------------------------------------------------------------------------- 1 | "AAbar" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-logic.exp: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-nested-with.exp: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-new-let.exp: -------------------------------------------------------------------------------- 1 | "xyzzyfoobar" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-null-dynamic-attrs.exp: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-null-dynamic-attrs.nix: -------------------------------------------------------------------------------- 1 | { ${null} = true; } == { } 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-overrides.exp: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-pathexists.exp: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-patterns.exp: -------------------------------------------------------------------------------- 1 | "abcxyzDDDDEFijk" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-print.err.exp: -------------------------------------------------------------------------------- 1 | trace: [ «thunk» ] 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-redefine-builtin.exp: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-regex-match.exp: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-regex-split.exp: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-regression-20220122.exp: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-regression-20220125.exp: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-regrettable-rec-attrset-merge.exp: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-remove.exp: -------------------------------------------------------------------------------- 1 | 456 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-scope-1.exp: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-scope-2.exp: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-scope-3.exp: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-scope-4.exp: -------------------------------------------------------------------------------- 1 | "ccdd" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-scope-6.exp: -------------------------------------------------------------------------------- 1 | "ccdd" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-scope-7.exp: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-search-path.exp: -------------------------------------------------------------------------------- 1 | "abccX" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-seq.exp: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-seq.nix: -------------------------------------------------------------------------------- 1 | builtins.seq 1 2 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-splitversion.exp: -------------------------------------------------------------------------------- 1 | [ "1" "2" "3" ] 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-splitversion.nix: -------------------------------------------------------------------------------- 1 | builtins.splitVersion "1.2.3" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-strings-as-attrs-names.exp: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-substring-context.exp: -------------------------------------------------------------------------------- 1 | "okay" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-symlink-resolution.exp: -------------------------------------------------------------------------------- 1 | "test" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-tail-call-1.exp-disabled: -------------------------------------------------------------------------------- 1 | 34. -------------------------------------------------------------------------------- /tests/functional/lang/eval-okay-versions.exp: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/functional/lang/imported2.nix: -------------------------------------------------------------------------------- 1 | range 6 10 2 | -------------------------------------------------------------------------------- /tests/functional/lang/lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/lang/lib.nix -------------------------------------------------------------------------------- /tests/functional/lang/non-eval-trivial-lambda-formals.nix: -------------------------------------------------------------------------------- 1 | { a }: a 2 | -------------------------------------------------------------------------------- /tests/functional/lang/parse-fail-dup-formals.nix: -------------------------------------------------------------------------------- 1 | {x, y, x}: x -------------------------------------------------------------------------------- /tests/functional/lang/parse-fail-eof-pos.nix: -------------------------------------------------------------------------------- 1 | ( 2 | # no content 3 | -------------------------------------------------------------------------------- /tests/functional/lang/parse-fail-patterns-1.nix: -------------------------------------------------------------------------------- 1 | args@{args, x, y, z}: x 2 | -------------------------------------------------------------------------------- /tests/functional/lang/parse-fail-undef-var.nix: -------------------------------------------------------------------------------- 1 | x: y 2 | -------------------------------------------------------------------------------- /tests/functional/lang/parse-fail-utf8.nix: -------------------------------------------------------------------------------- 1 | 123 é 4 2 | -------------------------------------------------------------------------------- /tests/functional/lang/parse-okay-1.exp: -------------------------------------------------------------------------------- 1 | ({ x, y, z }: ((x + y) + z)) 2 | -------------------------------------------------------------------------------- /tests/functional/lang/parse-okay-1.nix: -------------------------------------------------------------------------------- 1 | {x, y, z}: x + y + z 2 | -------------------------------------------------------------------------------- /tests/functional/lang/readDir/bar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/lang/readDir/foo/git-hates-directories: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/lang/readDir/ldir: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /tests/functional/lang/readDir/linked: -------------------------------------------------------------------------------- 1 | foo/git-hates-directories -------------------------------------------------------------------------------- /tests/functional/lang/symlink-resolution/broken: -------------------------------------------------------------------------------- 1 | nonexistent -------------------------------------------------------------------------------- /tests/functional/lang/symlink-resolution/foo/lib/default.nix: -------------------------------------------------------------------------------- 1 | "test" 2 | -------------------------------------------------------------------------------- /tests/functional/lang/symlink-resolution/foo/overlays: -------------------------------------------------------------------------------- 1 | ../overlays -------------------------------------------------------------------------------- /tests/functional/lang/symlink-resolution/overlays/overlay.nix: -------------------------------------------------------------------------------- 1 | import ../lib 2 | -------------------------------------------------------------------------------- /tests/functional/logging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/logging.sh -------------------------------------------------------------------------------- /tests/functional/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/meson.build -------------------------------------------------------------------------------- /tests/functional/misc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/misc.sh -------------------------------------------------------------------------------- /tests/functional/nar-access.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/nar-access.nix -------------------------------------------------------------------------------- /tests/functional/nar-access.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/nar-access.sh -------------------------------------------------------------------------------- /tests/functional/nars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/nars.sh -------------------------------------------------------------------------------- /tests/functional/nix-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/nix-build.sh -------------------------------------------------------------------------------- /tests/functional/nix-channel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/nix-channel.sh -------------------------------------------------------------------------------- /tests/functional/nix-daemon-untrusting.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec nix-daemon --force-untrusted "$@" 4 | -------------------------------------------------------------------------------- /tests/functional/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../nix-meson-build-support -------------------------------------------------------------------------------- /tests/functional/nix-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/nix-profile.sh -------------------------------------------------------------------------------- /tests/functional/nix-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/nix-shell.sh -------------------------------------------------------------------------------- /tests/functional/nix_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/nix_path.sh -------------------------------------------------------------------------------- /tests/functional/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/package.nix -------------------------------------------------------------------------------- /tests/functional/parallel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/parallel.nix -------------------------------------------------------------------------------- /tests/functional/parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/parallel.sh -------------------------------------------------------------------------------- /tests/functional/path-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/path-info.sh -------------------------------------------------------------------------------- /tests/functional/path.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/path.nix -------------------------------------------------------------------------------- /tests/functional/plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/plugins.sh -------------------------------------------------------------------------------- /tests/functional/post-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/post-hook.sh -------------------------------------------------------------------------------- /tests/functional/pure-eval.nix: -------------------------------------------------------------------------------- 1 | { 2 | x = 123; 3 | } 4 | -------------------------------------------------------------------------------- /tests/functional/pure-eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/pure-eval.sh -------------------------------------------------------------------------------- /tests/functional/recursive.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/recursive.nix -------------------------------------------------------------------------------- /tests/functional/recursive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/recursive.sh -------------------------------------------------------------------------------- /tests/functional/referrers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/referrers.sh -------------------------------------------------------------------------------- /tests/functional/repair.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/repair.sh -------------------------------------------------------------------------------- /tests/functional/repl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/repl.sh -------------------------------------------------------------------------------- /tests/functional/repl/characterisation/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/repl/doc-comment-function.in: -------------------------------------------------------------------------------- 1 | :doc import ./doc-comment-function.nix 2 | -------------------------------------------------------------------------------- /tests/functional/repl/doc-floatedIn.in: -------------------------------------------------------------------------------- 1 | :l doc-comments.nix 2 | :doc floatedIn 3 | -------------------------------------------------------------------------------- /tests/functional/repl/doc-functor.flags: -------------------------------------------------------------------------------- 1 | --max-call-depth 100 2 | -------------------------------------------------------------------------------- /tests/functional/repl/doc-multiply.in: -------------------------------------------------------------------------------- 1 | :l doc-comments.nix 2 | :doc multiply 3 | -------------------------------------------------------------------------------- /tests/functional/repl/doc-unambiguous.in: -------------------------------------------------------------------------------- 1 | :l doc-comments.nix 2 | :doc unambiguous 3 | -------------------------------------------------------------------------------- /tests/functional/restricted.nix: -------------------------------------------------------------------------------- 1 | 1 + 2 2 | -------------------------------------------------------------------------------- /tests/functional/restricted.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/restricted.sh -------------------------------------------------------------------------------- /tests/functional/search.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/search.nix -------------------------------------------------------------------------------- /tests/functional/search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/search.sh -------------------------------------------------------------------------------- /tests/functional/selfref-gc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/selfref-gc.sh -------------------------------------------------------------------------------- /tests/functional/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/shell.nix -------------------------------------------------------------------------------- /tests/functional/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/shell.sh -------------------------------------------------------------------------------- /tests/functional/signing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/signing.sh -------------------------------------------------------------------------------- /tests/functional/simple.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/simple.nix -------------------------------------------------------------------------------- /tests/functional/simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/simple.sh -------------------------------------------------------------------------------- /tests/functional/ssh-relay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/ssh-relay.sh -------------------------------------------------------------------------------- /tests/functional/store-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/store-info.sh -------------------------------------------------------------------------------- /tests/functional/suggestions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/suggestions.sh -------------------------------------------------------------------------------- /tests/functional/symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/symlinks.sh -------------------------------------------------------------------------------- /tests/functional/tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/tarball.sh -------------------------------------------------------------------------------- /tests/functional/test-infra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/test-infra.sh -------------------------------------------------------------------------------- /tests/functional/test-libstoreconsumer/nix-meson-build-support: -------------------------------------------------------------------------------- 1 | ../../../nix-meson-build-support -------------------------------------------------------------------------------- /tests/functional/timeout.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/timeout.nix -------------------------------------------------------------------------------- /tests/functional/timeout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/timeout.sh -------------------------------------------------------------------------------- /tests/functional/tree.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/tree.tar.gz -------------------------------------------------------------------------------- /tests/functional/user-envs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/user-envs.nix -------------------------------------------------------------------------------- /tests/functional/user-envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/user-envs.sh -------------------------------------------------------------------------------- /tests/functional/why-depends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/why-depends.sh -------------------------------------------------------------------------------- /tests/functional/zstd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/functional/zstd.sh -------------------------------------------------------------------------------- /tests/installer/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/installer/default.nix -------------------------------------------------------------------------------- /tests/nixos/authorization.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/authorization.nix -------------------------------------------------------------------------------- /tests/nixos/ca-fd-leak/sender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/ca-fd-leak/sender.c -------------------------------------------------------------------------------- /tests/nixos/cgroups/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/cgroups/default.nix -------------------------------------------------------------------------------- /tests/nixos/cgroups/hang.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/cgroups/hang.nix -------------------------------------------------------------------------------- /tests/nixos/chroot-store.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/chroot-store.nix -------------------------------------------------------------------------------- /tests/nixos/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/default.nix -------------------------------------------------------------------------------- /tests/nixos/fetchurl.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/fetchurl.nix -------------------------------------------------------------------------------- /tests/nixos/fsync.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/fsync.nix -------------------------------------------------------------------------------- /tests/nixos/git-submodules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/git-submodules.nix -------------------------------------------------------------------------------- /tests/nixos/github-flakes.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/github-flakes.nix -------------------------------------------------------------------------------- /tests/nixos/nix-copy.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/nix-copy.nix -------------------------------------------------------------------------------- /tests/nixos/nix-docker-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/nix-docker-test.sh -------------------------------------------------------------------------------- /tests/nixos/nix-docker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/nix-docker.nix -------------------------------------------------------------------------------- /tests/nixos/nss-preload.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/nss-preload.nix -------------------------------------------------------------------------------- /tests/nixos/remote-builds.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/remote-builds.nix -------------------------------------------------------------------------------- /tests/nixos/setuid.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/setuid.nix -------------------------------------------------------------------------------- /tests/nixos/tarball-flakes.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/nixos/tarball-flakes.nix -------------------------------------------------------------------------------- /tests/repl-completion.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix/HEAD/tests/repl-completion.nix --------------------------------------------------------------------------------