mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 03:56:01 +01:00
Nix expressions in that directory are combined into an attribute set
{file1 = import file1; file2 = import file2; ...}, i.e. each Nix
expression is an attribute with the file name as the attribute
name. Also recurses into directories.
* nix-env: removed the "--import" (-I) option which set the
~/.nix-defexpr symlink.
* nix-channel: don't use "nix-env --import", instead symlink
~/.nix-defexpr/channels. So finally nix-channel --update doesn't
override any default Nix expressions but combines with them.
This means that you can have (say) a local Nixpkgs SVN tree and use
it as a default for nix-env:
$ ln -s .../path-to-nixpkgs-tree ~/.nix-defexpr/nixpkgs_svn
and be subscribed to channels (including Nixpkgs) at the same time.
(If there is any ambiguity, the -A flag can be used to
disambiguate, e.g. "nix-env -i -A nixpkgs_svn.pan".)
|
||
|---|---|---|
| .. | ||
| maintenance | ||
| copying-collector.pl | ||
| download-using-manifests.pl.in | ||
| find-runtime-roots.pl.in | ||
| generate-patches.pl.in | ||
| Makefile.am | ||
| nix-build.in | ||
| nix-channel.in | ||
| nix-collect-garbage.in | ||
| nix-copy-closure.in | ||
| nix-install-package.in | ||
| nix-pack-closure.in | ||
| nix-prefetch-url.in | ||
| nix-profile.sh.in | ||
| nix-pull.in | ||
| nix-push.in | ||
| nix-unpack-closure.in | ||
| optimise-store.pl | ||
| readconfig.pm.in | ||
| readmanifest.pm.in | ||
| remove-patches.pl | ||
| show-duplication.pl | ||
| update-manifest.pl | ||