lol
1{stdenv, fetchurl, xlibsWrapper, imake, gccmakedep, libXmu, libXpm, libXp, bison, flex, pkgconfig}:
2
3stdenv.mkDerivation {
4 name = "Xaw3d-1.6.2";
5 src = fetchurl {
6 urls = [
7 ftp://ftp.x.org/pub/xorg/individual/lib/libXaw3d-1.6.tar.bz2
8 ];
9 sha256 = "099kx6ni5vkgr3kf40glif8m6r1m1hq6hxqlqrblaj1w5cphh8hi";
10 };
11 buildInputs = [imake gccmakedep libXpm libXp bison flex pkgconfig];
12 propagatedBuildInputs = [xlibsWrapper libXmu];
13
14 meta = {
15 description = "3D widget set based on the Athena Widget set";
16 platforms = stdenv.lib.platforms.linux;
17 };
18}