about summary refs log tree commit diff
path: root/pkgs/tools/system/plan9port
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-08-15 00:11:28 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-08-15 00:11:28 +0200
commita149b1f31f6f1e4110d892ce50a0e48f2396cfa7 (patch)
treef56d94c6b1ee58d6d46d5729172eff84ec98570f /pkgs/tools/system/plan9port
parent5d8c8845ed3e1b3e4bf75328e37915fa69648a09 (diff)
downloadnixlib-a149b1f31f6f1e4110d892ce50a0e48f2396cfa7.tar
nixlib-a149b1f31f6f1e4110d892ce50a0e48f2396cfa7.tar.gz
nixlib-a149b1f31f6f1e4110d892ce50a0e48f2396cfa7.tar.bz2
nixlib-a149b1f31f6f1e4110d892ce50a0e48f2396cfa7.tar.lz
nixlib-a149b1f31f6f1e4110d892ce50a0e48f2396cfa7.tar.xz
nixlib-a149b1f31f6f1e4110d892ce50a0e48f2396cfa7.tar.zst
nixlib-a149b1f31f6f1e4110d892ce50a0e48f2396cfa7.zip
plan9port: enableParallelBuilding, improve meta
Diffstat (limited to 'pkgs/tools/system/plan9port')
-rw-r--r--pkgs/tools/system/plan9port/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/tools/system/plan9port/default.nix b/pkgs/tools/system/plan9port/default.nix
index a1771feb8eb8..8ff6c65f8b4b 100644
--- a/pkgs/tools/system/plan9port/default.nix
+++ b/pkgs/tools/system/plan9port/default.nix
@@ -12,17 +12,20 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "https://plan9port.googlecode.com/files/${name}.tgz";
-	# Google code is much faster than swtch
+    # Google code is much faster than swtch
     # url = "http://swtch.com/plan9port/${name}.tgz";
     sha256 = "1sza12j3db7i54r3pzli8wmby6aiyzmyfj8w0nidmawkwv6jdf6b";
   };
 
   buildInputs = stdenv.lib.optionals (!stdenv.isDarwin) [ libX11 xproto libXt xextproto libXext ];
 
-  meta = {
+  enableParallelBuilding = true;
+
+  meta = with stdenv.lib; {
     homepage = "http://swtch.com/plan9port/";
     description = "Plan 9 from User Space";
-    license="free";
+    license = licenses.lpl102;
+    platforms = platforms.unix;
   };
 
   inherit libXt;