summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-08-26 09:41:22 +0000
committerPeter Simons <simons@cryp.to>2010-08-26 09:41:22 +0000
commit7b9b8f9e2e0aa0e51738a015a2cc752763433f7a (patch)
tree51e9f5593f521f2929cdffaaf0dd0a8d448da999 /pkgs/tools/admin
parentd343d907a9813ddbb554b7c15dc5a95fa30481a0 (diff)
downloadnixlib-7b9b8f9e2e0aa0e51738a015a2cc752763433f7a.tar
nixlib-7b9b8f9e2e0aa0e51738a015a2cc752763433f7a.tar.gz
nixlib-7b9b8f9e2e0aa0e51738a015a2cc752763433f7a.tar.bz2
nixlib-7b9b8f9e2e0aa0e51738a015a2cc752763433f7a.tar.lz
nixlib-7b9b8f9e2e0aa0e51738a015a2cc752763433f7a.tar.xz
nixlib-7b9b8f9e2e0aa0e51738a015a2cc752763433f7a.tar.zst
nixlib-7b9b8f9e2e0aa0e51738a015a2cc752763433f7a.zip
pkgs/tools/admin/tightvnc/default.nix: added meta section (plus various cosmetic changes)
svn path=/nixpkgs/trunk/; revision=23438
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/tightvnc/default.nix27
1 files changed, 20 insertions, 7 deletions
diff --git a/pkgs/tools/admin/tightvnc/default.nix b/pkgs/tools/admin/tightvnc/default.nix
index 10ed5dc50f22..187d3345e6b3 100644
--- a/pkgs/tools/admin/tightvnc/default.nix
+++ b/pkgs/tools/admin/tightvnc/default.nix
@@ -2,19 +2,32 @@
 
 stdenv.mkDerivation {
   name = "tightvnc-1.3.10";
-  builder = ./builder.sh;
-  gcc=stdenv.gcc.gcc;
-	inherit perl;
+
   src = fetchurl {
     url = mirror://sourceforge/vnc-tight/tightvnc-1.3.10_unixsrc.tar.bz2;
     sha256 = "f48c70fea08d03744ae18df6b1499976362f16934eda3275cead87baad585c0d";
   };
 
   # for the builder script
-  inherit xauth;
+  inherit xauth fontDirectories perl;
+  gcc = stdenv.gcc.gcc;
+
+  buildInputs = [x11 zlib libjpeg imake gccmakedep libXmu libXaw libXpm libXp xauth];
+  builder = ./builder.sh;
+
+  meta = {
+    license = "GPLv2+";
+    homepage = "http://vnc-tight.sourceforge.net/";
+    description = "TightVNC is an improved version of VNC";
 
-  inherit fontDirectories;
+    longDescription = ''
+      TightVNC is an improved version of VNC, the great free
+      remote-desktop tool. The improvements include bandwidth-friendly
+      "tight" encoding, file transfers in the Windows version, enhanced
+      GUI, many bugfixes, and more.
+    '';
 
-  buildInputs = [x11 zlib libjpeg imake gccmakedep libXmu libXaw libXpm libXp
-  	xauth];
+    maintainers = [];
+    platforms = stdenv.lib.platforms.unix;
+  };
 }