aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2012-04-08Nix is on github nowShea Levy
2012-04-06Fix building from the tarballEelco Dolstra
2012-04-06Documentation fixEelco Dolstra
2012-04-06Include environment variables in the manpagesEelco Dolstra
2012-04-06Include common options in the manpages using some XInclude hackeryEelco Dolstra
2012-04-06Update affiliationEelco Dolstra
2012-04-06Add a missing DocBook source file to the tarballEelco Dolstra
Reported on IRC by Adrian Siekierka.
2012-03-26Remove the --max-links GC optionEelco Dolstra
We don't need this anymore now that current filesystems support more than 32,000 files in a directory.
2012-03-18Drop the externals directoryEelco Dolstra
Nix now requires SQLite and bzip2 to be pre-installed. SQLite is detected using pkg-config. We required DBD::SQLite anyway, so depending on SQLite is not a big problem. The --with-bzip2, --with-openssl and --with-sqlite flags are gone.
2012-01-17* Added a command ‘nix-store --print-env $drvpath’ that prints out theEelco Dolstra
environment of the given derivation in a format that can be sourced by the shell, e.g. $ eval "$(nix-store --print-env $(nix-instantiate /etc/nixos/nixpkgs -A pkg))" $ NIX_BUILD_TOP=/tmp $ source $stdenv/setup This is especially useful to reproduce the environment used to build a package outside of its builder for development purposes. TODO: add a nix-build option to do the above and fetch the dependencies of the derivation as well.
2012-01-13* nix-build: put the temporary derivation symlink in a temporaryEelco Dolstra
directory rather than the current directory. * nix-build: --drv-link now implies --add-drv-link.
2011-12-30* Follow our own coding conventions.Eelco Dolstra
2011-12-30* Remove a redundant dot (Nicolas Pierron).Eelco Dolstra
2011-12-30* Fix doc error.Eelco Dolstra
2011-12-01doc/manual/nix-env.xml: fixed "nix-env -qaA" typoPeter Simons
2011-12-01doc/manual/nix-env.xml: stripped trailing whitespacePeter Simons
2011-11-23(no commit message)Eelco Dolstra
2011-11-23* Document the --include-outputs option.Eelco Dolstra
2011-11-23* Add bzip2 and xz support to nix-copy-closure.Eelco Dolstra
2011-11-03(no commit message)Eelco Dolstra
2011-11-03* The Nix configuration file is usually /etc/nix/nix.conf.Eelco Dolstra
2011-11-02* Fix permission on /nix/store in the manual for multi-user installsEelco Dolstra
(reported by Silvio Frischknecht).
2011-09-06* Added a command ‘nix-store --verify-paths PATHS’ to check whetherEelco Dolstra
the contents of any of the given store paths have been modified. E.g. $ nix-store --verify-path $(nix-store -qR /var/run/current-system) path `/nix/store/m2smyiwbxidlprfxfz4rjlvz2c3mg58y-etc' was modified! expected hash `fc87e271c5fdf179b47939b08ad13440493805584b35e3014109d04d8436e7b8', got `20f1a47281b3c0cbe299ce47ad5ca7340b20ab34246426915fce0ee9116483aa' All paths are checked; the exit code is 1 if any path has been modified, 0 otherwise.
2011-08-06* Add a Nix expression search path feature. Paths between angleEelco Dolstra
brackets, e.g. import <nixpkgs/pkgs/lib> are resolved by looking them up relative to the elements listed in the search path. This allows us to get rid of hacks like import "${builtins.getEnv "NIXPKGS_ALL"}/pkgs/lib" The search path can be specified through the ‘-I’ command-line flag and through the colon-separated ‘NIX_PATH’ environment variable, e.g., $ nix-build -I /etc/nixos ... If a file is not found in the search path, an error message is lazily thrown.
2011-07-13* Allow a default value in attribute selection by writingEelco Dolstra
x.y.z or default (as originally proposed in https://mail.cs.uu.nl/pipermail/nix-dev/2009-September/002989.html). For instance, an expression like stdenv.lib.attrByPath ["features" "ckSched"] false args can now be written as args.features.ckSched or false
2011-06-30doc: Fix typo.Ludovic Courtès
2011-06-30Add support for the `build-timeout' and `--timeout' options.Ludovic Courtès
2011-03-15* Fix a bug in the documentation (reported by Olexiy Buyanskyy,Eelco Dolstra
Nix/215).
2010-11-17* Add an operation `nix-store -q --size'.Eelco Dolstra
2010-11-16* Sync with the trunk.Eelco Dolstra
2010-10-29* Document Boehm GC support.Eelco Dolstra
2010-10-06nix manual: fix 'install' -> 'uninstall' in garbage collection section of ↵Rob Vermaas
introduction
2010-08-24* Sync with the trunk.Eelco Dolstra
2010-08-17* Update date.Eelco Dolstra
2010-08-17* Document --cores in the manual.Eelco Dolstra
2010-08-16* Typo.Eelco Dolstra
2010-08-16* Nix 0.16 release notes.Eelco Dolstra
2010-05-12* Sync with the trunk.Eelco Dolstra
2010-05-07* Sync with the trunk.Eelco Dolstra
2010-05-02* Don't use smart quotes where normal ASCII quotes are intended.Eelco Dolstra
Actually, don't use quotes at all. (Reported by Howard B. Golden.)
2010-04-25Fixing a typo in the nix-store manual, that could confuse a bit too much ↵Lluís Batlle i Rossell
(--delete/--gc)
2010-04-20* Sync with the trunk.Eelco Dolstra
2010-04-19* Drop the dependency on the ATerm library.Eelco Dolstra
2010-03-17(no commit message)Eelco Dolstra
2010-03-16* Release notes for Nix 0.15.Eelco Dolstra
2010-03-16* Fix a broken link (reported by Peter Koppstein).Eelco Dolstra
2010-02-24* Disable fsync() in SQLite if the fsync-metadata option is set toEelco Dolstra
false. * Change the default for `fsync-metadata' to true. * Disable `fsync-metadata' in `make check'.
2010-02-12* Typo. Reported by Peter Koppstein.Eelco Dolstra
2010-02-05* Fix a broken link (reported by Bjorn Buckwalter).Eelco Dolstra
2010-02-04(no commit message)Eelco Dolstra