about summary refs log tree commit diff
path: root/src/nix-env/Makefile.am (follow)
AgeCommit message (Collapse)AuthorFilesLines
2012-10-03 When ‘--help’ is given, just run ‘man’ to show the manual pageEelco Dolstra1-6/+1
I.e. do what git does. I'm too lazy to keep the builtin help text up to date :-) Also add ‘--help’ to various commands that lacked it (e.g. nix-collect-garbage).
2010-05-12 * Sync with the trunk.Eelco Dolstra1-2/+2
2010-04-27 (no commit message)Eelco Dolstra1-1/+1
2010-04-19 * Drop the dependency on the ATerm library.Eelco Dolstra1-2/+2
2010-04-19 * Refactoring: move the user environment stuff into its own module.Eelco Dolstra1-1/+2
2010-03-02 * When using the included sqlite/aterm libraries, build withEelco Dolstra1-2/+3
--enable-shared. * In libutil/libstore/libexpr etc., link against sqlite and aterm. * Some more header file hygiene.
2010-02-24 * ADDITIONAL_NETWORK_LIBS -> LIBS.Eelco Dolstra1-1/+1
2010-02-24 * Add ${sqlite_lib} everywhere. Just adding it in `libstore' doesn'tEelco Dolstra1-1/+1
work on x86_64 when sqlite is compiled statically.
2009-11-06 * Remove support for old (before Nix 0.12pre12020) databases.Eelco Dolstra1-2/+2
2009-10-08 Added optional parameter which adds -lnsl -lsocket to make the Nix package ↵Sander van der Burg1-1/+1
manager work on OpenSolaris
2008-07-01 * Export the nix-env derivation name parsing and version comparisonEelco Dolstra1-2/+1
logic through the `parseDrvName' and `compareVersions' primops. This will allow expressions to easily check whether some dependency is a specific needed version or falls in some version range. See tests/lang/eval-okay-versions.nix for examples.
2006-12-07 * Doh!Eelco Dolstra1-1/+1
2006-12-07 * Rename all those main.cc files.Eelco Dolstra1-1/+1
2006-05-12 * Support for srcdir != builddir (NIX-41).Eelco Dolstra1-2/+3
2005-07-22 * Build dynamic libraries.Eelco Dolstra1-3/+3
2004-04-22 * Don't create $(localstatedir)/nix/profiles if --disable-init-stateEelco Dolstra1-3/+0
is specified.
2004-02-16 * Allow linking against an external Berkeley DB / ATerm library.Eelco Dolstra1-3/+2
2004-02-06 * More refactoring.Eelco Dolstra1-1/+2
2004-02-06 * Refactoring.Eelco Dolstra1-1/+1
2004-02-06 * Improvements to profiles. Generations are now per-profile, e.g.,Eelco Dolstra1-0/+3
default -> default-94-link default-82-link -> /nix/store/cc4480... default-83-link -> /nix/store/caeec8... ... default-94-link -> /nix/store/2896ca... experimental -> experimental-2-link experimental-1-link -> /nix/store/cc4480... experimental-2-link -> /nix/store/a3148f... * `--profile' / `-p' -> `--switch-profile' / `-S' * `--link' / `-l' -> `--profile' / `-p' * The default profile is stored in $prefix/var/nix/profiles. $prefix/var/nix/links is gone. Profiles can be stored anywhere. * The current profile is now referenced from ~/.nix-profile, not ~/.nix-userenv. * The roots to the garbage collector now have extension `.gcroot', not `.id'.
2004-02-04 * Use a map to lookup primops.Eelco Dolstra1-1/+1
* Various performance improvements in the evaluator. * Do not link against unused (and missing!) libraries (-lsglr, etc.).
2003-12-02 * Add missing files to `make dist'.Eelco Dolstra1-1/+1
2003-12-01 * Help text for all (non-script) programs, so no more:Eelco Dolstra1-0/+5
$ nix-instantiate --help error: unknown flag `--help` Try `nix-instantiate --help' for more information. :-)
2003-11-19 * nix-env: a tool to manage user environments.Eelco Dolstra1-0/+11
* Replace all directory reading code by a generic readDirectory() function.