about summary refs log tree commit diff
path: root/src/nix-env/help.txt (follow)
AgeCommit message (Collapse)AuthorFilesLines
2004-02-02 * Sort `nix-env -q' output by derivation name.Eelco Dolstra1-1/+1
* `--version' flag for all commands. * Manual updates.
2004-01-05 * Implemented Eelco V.'s `nix-env -I' command to specify the defaultEelco Dolstra1-4/+6
path of the Nix expression to be used with the import, upgrade, and query commands. For instance, $ nix-env -I ~/nixpkgs/pkgs/system/i686-linux.nix $ nix-env --query --available [aka -qa] sylpheed-0.9.7 bison-1.875 pango-1.2.5 subversion-0.35.1 ... $ nix-env -i sylpheed $ nix-env -u subversion There can be only one default at a time. * If the path to a Nix expression is a symlink, follow the symlink prior to resolving relative path references in the expression.
2004-01-05 * Implemented Eelco V.'s `-p' command to switch profiles. It switchesEelco Dolstra1-0/+2
the symlink ~/.nix-userenv to the given argument (which defaults to .../links/current). /etc/profile.d/nix-profile creates this symlink if it doesn't exist yet. Example use: $ nix-env -l my_profile -i foo.nix subversion quake $ nix-env -p my_profile I don't like the term "profile". Let's deprecate it :-)
2003-12-21 * Version numbers can be omitted in install/uninstall. E.g.,Eelco Dolstra1-2/+3
nix-env -i foo.nix subversion The version number part of a derivation name is defined as everything following the first dash not followed by a letter.
2003-12-21 * `-u' -> `-e'.Eelco Dolstra1-1/+2
* `--link' / `-l' flag to specify the switch symlink to use (by default, /nix/var/nix/links/current).
2003-12-01 * Help text for all (non-script) programs, so no more:Eelco Dolstra1-0/+31
$ nix-instantiate --help error: unknown flag `--help` Try `nix-instantiate --help' for more information. :-)