summaryrefslogtreecommitdiff
path: root/website/posts/gnu-guix-0.9.0-released.sxml
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-10-28 01:05:37 +0200
committerLudovic Courtès <ludo@gnu.org>2016-10-28 01:05:37 +0200
commit0735cb03a91d6fe1e644b0409ecc790eefe8f543 (patch)
treee064a44394581fc21e1163a807a9d0148493c278 /website/posts/gnu-guix-0.9.0-released.sxml
parent864ff90859459615872d3d3b5e1574ac08c3839a (diff)
downloadguix-artwork-0735cb03a91d6fe1e644b0409ecc790eefe8f543.tar
guix-artwork-0735cb03a91d6fe1e644b0409ecc790eefe8f543.tar.gz
website: Import news entries from Savannah as Haunt posts.
* website/post: New directory, with 54 .sxml files.
Diffstat (limited to 'website/posts/gnu-guix-0.9.0-released.sxml')
-rw-r--r--website/posts/gnu-guix-0.9.0-released.sxml84
1 files changed, 84 insertions, 0 deletions
diff --git a/website/posts/gnu-guix-0.9.0-released.sxml b/website/posts/gnu-guix-0.9.0-released.sxml
new file mode 100644
index 0000000..8df1cb8
--- /dev/null
+++ b/website/posts/gnu-guix-0.9.0-released.sxml
@@ -0,0 +1,84 @@
+(begin
+ (use-modules (srfi srfi-19))
+ `((title . "GNU Guix 0.9.0 released")
+ (author . "Ludovic Courtès")
+ (date unquote (make-date 0 0 0 0 5 11 2015 3600))
+ (content
+ div
+ (p "We are pleased to announce the next alpha release of GNU Guix, version 0.9.0."
+ (br))
+ (p "The release comes with USB installation images to install the standalone "
+ (a (@ (href "http://www.gnu.org/software/guix/manual/html_node/System-Installation.html"))
+ "GuixSD")
+ ", and with tarballs to install the package manager on top of a running GNU/Linux system, either "
+ (a (@ (href "http://www.gnu.org/software/guix/manual/html_node/Requirements.html"))
+ "from source")
+ " or "
+ (a (@ (href "http://www.gnu.org/software/guix/manual/html_node/Binary-Installation.html"))
+ "from binaries")
+ "."
+ (br))
+ (p "The highlights for this release include:"
+ (br))
+ (ul (li "Support for "
+ (a (@ (href "http://savannah.gnu.org/forum/forum.php?forum_id=8386"))
+ "automatic container provisioning")
+ " in "
+ (a (@ (href "http://www.gnu.org/software/guix/manual/html_node/Invoking-guix-environment.html"))
+ "guix environment")
+ ", for development environments, and in "
+ (a (@ (href "http://www.gnu.org/software/guix/manual/html_node/Invoking-guix-system.html"))
+ "guix system")
+ ", for full GuixSD deployments.\n")
+ (li "A brand new "
+ (a (@ (href "https://www.gnu.org/software/guix/manual/html_node/Service-Composition.html"))
+ "service composition framework")
+ " for GuixSD. It significantly improves extensibility and modularity, while providing a framework that makes it easy to reason about how system services relate to each other. This was one of the main design issues that needed to be addressed on the road to 1.0.\n")
+ (li "The new "
+ (a (@ (href "http://www.gnu.org/software/guix/manual/html_node/Invoking-guix-graph.html"))
+ "guix graph")
+ " command can draw package dependency graphs with different levels of details. Likewise, "
+ (a (@ (href "http://www.gnu.org/software/guix/manual/html_node/Invoking-guix-system.html"))
+ "guix system")
+ " has a new extension-graph command to draw the system's service composition graph, and a dmd-graph command to draw the service dependency graph as seen by "
+ (a (@ (href "http://www.gnu.org/software/dmd/"))
+ "GNU dmd")
+ ".\n")
+ (li "The new "
+ (a (@ (href "http://www.gnu.org/software/guix/manual/html_node/Invoking-guix-challenge.html"))
+ "guix challenge")
+ " command allows users to challenge the authenticity of "
+ (a (@ (href "http://www.gnu.org/software/guix/manual/html_node/Substitutes.html"))
+ "substitutes")
+ " provided by a server. More on that in a future post!\n")
+ (li (a (@ (href "http://www.gnu.org/software/guix/packages/"))
+ "543 new packages")
+ ", notably Idris and many "
+ (a (@ (href "http://www.gnu.org/software/guix/manual/html_node/Invoking-guix-import.html"))
+ "imported")
+ " Haskell, Python, and R packages.\n")
+ (li (a (@ (href "http://debbugs.gnu.org/rrd/guix.html"))
+ "Bug fixes")
+ ", documentation, and other niceties!\n"))
+ (p "See "
+ (a (@ (href "https://lists.gnu.org/archive/html/guix-devel/2015-11/msg00131.html"))
+ "https://lists.gnu.org/archive/html/guix-devel/2015-11/msg00131.html")
+ " for details."
+ (br))
+ (h4 "About GNU Guix")
+ (p (a (@ (href "http://www.gnu.org/software/guix"))
+ "GNU Guix")
+ " is a functional package manager for the GNU system. The Guix System Distribution or GuixSD is an advanced distribution of the GNU system that relies on GNU Guix and "
+ (a (@ (href "http://www.gnu.org/distros/free-system-distribution-guidelines.html"))
+ "respects the user's freedom")
+ "."
+ (br))
+ (p "In addition to standard package management features, Guix supports transactional upgrades and roll-backs, unprivileged package management, per-user profiles, and garbage collection. Guix uses low-level mechanisms from the Nix package manager, except that packages are defined as native "
+ (a (@ (href "http://www.gnu.org/software/guile"))
+ "Guile")
+ " modules, using extensions to the "
+ (a (@ (href "http://schemers.org")) "Scheme")
+ " language. GuixSD offers a declarative approach to operating system configuration management, and is highly customizable and hackable."
+ (br))
+ (p "GuixSD can be used on an i686 or x86_64 machine. It is also possible to use Guix on top of an already installed GNU/Linux system, including on mips64el and armv7."
+ (br)))))