summary refs log tree commit diff
path: root/pkgs/tools/system/plan9port/default.nix
blob: 3c31e4b534579ea16f77a7fefb31c103e24408eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl, libX11, xproto, libXt, xextproto}:

stdenv.mkDerivation {
  name = "plan9port-20090318";
  
  builder = ./builder.sh;

  src = fetchurl {
    url = http://swtch.com/plan9port/plan9port-20090318.tgz;
    sha256 = "1idb2l1s5j34sa1dj1wwnvj97z5z7cy73qjafrxf2bbda26axzqj";
  };

  buildInputs = [ libX11 xproto libXt xextproto ];

  meta = {
    homepage = "http://swtch.com/plan9port/";
    description = "Plan 9 from User Space";
    license="free";
  };
}