From 12379b27c8e1945763268cc6e8507dbf2d7a9b95 Mon Sep 17 00:00:00 2001 From: Mateusz Kowalczyk Date: Thu, 13 Nov 2014 13:50:49 +0000 Subject: [PATCH] mozart: use longDescription field --- pkgs/development/compilers/mozart/binary.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/mozart/binary.nix b/pkgs/development/compilers/mozart/binary.nix index 57e339204bd..bcaf917b3c3 100644 --- a/pkgs/development/compilers/mozart/binary.nix +++ b/pkgs/development/compilers/mozart/binary.nix @@ -22,9 +22,15 @@ stdenv.mkDerivation { meta = with stdenv.lib; { homepage = "http://www.mozart-oz.org/"; - description = "The Mozart Programming System combines ongoing research in programming language design and implementation, constraint logic programming, distributed computing, and human-computer interfaces. Mozart implements the Oz language and provides both expressive power and advanced functionality."; - + description = "Multiplatform implementation of the Oz programming language"; + longDescription = '' + The Mozart Programming System combines ongoing research in + programming language design and implementation, constraint logic + programming, distributed computing, and human-computer + interfaces. Mozart implements the Oz language and provides both + expressive power and advanced functionality. + ''; license = licenses.mit; - platforms = ["x86_64-linux"]; + platforms = [ "x86_64-linux" ]; }; }