summary refs log tree commit diff
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-06-23 12:33:10 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-06-23 12:33:10 +0200
commit89e6eb41f2857b5d7e9d59a27c7790385fd33290 (patch)
tree2b59da80675a1c910aa0f8fae2db0a8eecaf9cd6
parent667986eafc96f933405fe4a04948aa927926a39e (diff)
downloadnixlib-89e6eb41f2857b5d7e9d59a27c7790385fd33290.tar
nixlib-89e6eb41f2857b5d7e9d59a27c7790385fd33290.tar.gz
nixlib-89e6eb41f2857b5d7e9d59a27c7790385fd33290.tar.bz2
nixlib-89e6eb41f2857b5d7e9d59a27c7790385fd33290.tar.lz
nixlib-89e6eb41f2857b5d7e9d59a27c7790385fd33290.tar.xz
nixlib-89e6eb41f2857b5d7e9d59a27c7790385fd33290.tar.zst
nixlib-89e6eb41f2857b5d7e9d59a27c7790385fd33290.zip
aliceml: description improvements
Move the (long) description to "longDescription" and add a short
description in "description".
-rw-r--r--pkgs/development/compilers/aliceml/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/compilers/aliceml/default.nix b/pkgs/development/compilers/aliceml/default.nix
index 5ea470bfc870..29e95863921c 100644
--- a/pkgs/development/compilers/aliceml/default.nix
+++ b/pkgs/development/compilers/aliceml/default.nix
@@ -63,8 +63,13 @@ stdenv.mkDerivation {
   builder = ./builder.sh;
 
   meta = {
+    description = "Functional programming language based on Standard ML";
+    longDescription = ''
+      Alice ML is a functional programming language based on Standard ML,
+      extended with rich support for concurrent, distributed, and constraint
+      programming.
+    '';
     homepage = http://www.ps.uni-saarland.de/alice/;
-    description = "Alice ML is a functional programming language based on Standard ML, extended with rich support for concurrent, distributed, and constraint programming.";
     license = "BSD";
   };
 }