From ce71dc90768950e55a347d1794a12e5774383044 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 12 Oct 2006 11:22:47 +0000 Subject: * Release notes. svn path=/nixpkgs/trunk/; revision=6710 --- doc/release-notes.xml | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/doc/release-notes.xml b/doc/release-notes.xml index a7b637ab9dd3..0d119e17be17 100644 --- a/doc/release-notes.xml +++ b/doc/release-notes.xml @@ -97,8 +97,8 @@ xlink:href='http://nix.cs.uu.nl/dist/nix/nix-0.10/'>Nix Opera. - Visual C++ 2005 Express Edition and the Windows - SDK. + Microsoft Visual C++ 2005 Express Edition and + the Windows SDK. @@ -128,7 +128,9 @@ xlink:href='http://nix.cs.uu.nl/dist/nix/nix-0.10/'>Nix strategoxt = (import ../development/compilers/strategoxt) { inherit fetchurl pkgconfig sdf aterm; stdenv = overrideInStdenv stdenv [gnumake380]; -}; +}; + +gnumake380 = ...; Likewise, there are many packages that don’t compile with the default GCC (4.1.1), but that’s easily fixed: @@ -159,6 +161,28 @@ pkg = import ... { } + + + Packages can now have a human-readable + description field. Package descriptions are + shown by nix-env -qa --description. In addition, + they’re shown on the Nixpkgs release page. A description can be + added to a package as follows: + + +stdenv.mkDerivation { + name = "exult-1.2"; + ... + meta = { + description = "A reimplementation of the Ultima VII game engine"; + }; +} + + The meta attribute is not passed to the builder, + so changes to the description do not trigger a rebuild. Additional + meta attributes may be defined in the future + (such as the URL of the package’s homepage, the license, + etc.). -- cgit 1.4.1