2011-01-10 20:41:58 +01:00
|
|
|
{stdenv, fetchurl, libX11, xproto, libXt, xextproto, libXext}:
|
2009-03-23 22:31:30 +01:00
|
|
|
|
2011-01-10 20:41:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-03-03 11:08:41 +01:00
|
|
|
name = "plan9port-20140228";
|
2014-04-15 04:24:36 +02:00
|
|
|
|
|
|
|
patches = [ ./fontsrv.patch ];
|
|
|
|
|
2009-03-23 22:31:30 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2011-01-10 20:41:58 +01:00
|
|
|
url = "http://swtch.com/plan9port/${name}.tgz";
|
2014-03-03 11:08:41 +01:00
|
|
|
sha256 = "1l7nsjfrrcq0l43kw0f1437jz3nyl9qw7i2vn0sbmcsv5vmsj0cr";
|
2009-03-23 22:31:30 +01:00
|
|
|
};
|
|
|
|
|
2011-01-10 20:41:58 +01:00
|
|
|
buildInputs = [ libX11 xproto libXt xextproto libXext ];
|
2009-03-23 22:31:30 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://swtch.com/plan9port/";
|
|
|
|
description = "Plan 9 from User Space";
|
|
|
|
license="free";
|
|
|
|
};
|
|
|
|
}
|