about summary refs log tree commit diff
path: root/pkgs/development/compilers/pakcs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-09-19 16:38:43 +0000
committerPeter Simons <simons@cryp.to>2011-09-19 16:38:43 +0000
commitc9a0666da7ebf309bb0b483b18955c13a1a7741c (patch)
treef665b9a3d2e47e975aa223955a42559966f8f4b9 /pkgs/development/compilers/pakcs
parenta5bbfc578640a6d699df652eab421d82eb9414e1 (diff)
downloadnixlib-c9a0666da7ebf309bb0b483b18955c13a1a7741c.tar
nixlib-c9a0666da7ebf309bb0b483b18955c13a1a7741c.tar.gz
nixlib-c9a0666da7ebf309bb0b483b18955c13a1a7741c.tar.bz2
nixlib-c9a0666da7ebf309bb0b483b18955c13a1a7741c.tar.lz
nixlib-c9a0666da7ebf309bb0b483b18955c13a1a7741c.tar.xz
nixlib-c9a0666da7ebf309bb0b483b18955c13a1a7741c.tar.zst
nixlib-c9a0666da7ebf309bb0b483b18955c13a1a7741c.zip
pkgs/development/compilers/pakcs: minor cosmetic changes
svn path=/nixpkgs/trunk/; revision=29354
Diffstat (limited to 'pkgs/development/compilers/pakcs')
-rw-r--r--pkgs/development/compilers/pakcs/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/development/compilers/pakcs/default.nix b/pkgs/development/compilers/pakcs/default.nix
index 8d1665844511..3c4723a88fb1 100644
--- a/pkgs/development/compilers/pakcs/default.nix
+++ b/pkgs/development/compilers/pakcs/default.nix
@@ -1,9 +1,7 @@
 { stdenv, fetchurl, ghc, swiProlog, syb, mtl, makeWrapper, rlwrap, tk }:
 
-stdenv.mkDerivation rec {
-  pname = "pakcs";
-  version = "1.9.2";
-  name = "${pname}-${version}";
+stdenv.mkDerivation {
+  name = "pakcs-1.9.2";
 
   src = fetchurl {
     url = "http://www.informatik.uni-kiel.de/~pakcs/download/pakcs_src.tar.gz";
@@ -44,7 +42,7 @@ stdenv.mkDerivation rec {
     (cd $out/curry2prolog/ ; make)
 
     ensureDir $out/share/emacs/site-lisp/curry-pakcs
-    for e in $out/tools/emacs/*.el ; do
+    for e in "$out/tools/emacs/"*.el ; do
       ln -s $out/tools/emacs/$e $out/share/emacs/site-lisp/curry-pakcs/;
     done
 
@@ -60,7 +58,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = {
-    description = "PAKCS is an implementation of the multi-paradigm declarative language Curry.";
+    description = "an implementation of the multi-paradigm declarative language Curry";
     longDescription = ''
       PAKCS is an implementation of the multi-paradigm declarative language
       Curry jointly developed by the Portland State University, the Aachen
@@ -75,7 +73,7 @@ stdenv.mkDerivation rec {
 
     homepage = http://www.informatik.uni-kiel.de/~pakcs/;
     license = stdenv.lib.licenses.bsd3;
-    maintainers = [ stdenv.lib.maintainers.kkallio ];
+    maintainers = [ stdenv.lib.maintainers.kkallio stdenv.lib.maintainers.simons ];
     platforms = stdenv.lib.platforms.linux;
   };
 }