2015-09-15 09:13:22 +00:00
|
|
|
{stdenv, fetchurl, xlibsWrapper, imake, gccmakedep, libXmu, libXpm, libXp, bison, flex}:
|
2005-11-12 17:05:51 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "Xaw3d-1.5E";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2007-08-24 12:32:36 +00:00
|
|
|
url = http://freshmeat.net/redir/xaw3d/11835/url_tgz/Xaw3d-1.5E.tar.gz;
|
2005-11-12 17:05:51 +00:00
|
|
|
md5 = "29ecfdcd6bcf47f62ecfd672d31269a1";
|
|
|
|
};
|
2006-08-07 10:17:39 +00:00
|
|
|
patches = [./config.patch ./laylex.patch];
|
2015-09-15 09:13:22 +00:00
|
|
|
buildInputs = [imake gccmakedep libXpm libXp bison flex];
|
|
|
|
propagatedBuildInputs = [xlibsWrapper libXmu];
|
2013-10-05 14:22:46 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "3D widget set based on the Athena Widget set";
|
|
|
|
};
|
2005-11-12 17:05:51 +00:00
|
|
|
}
|