2016-10-26 15:48:39 +02:00
|
|
|
{stdenv, fetchurl, xlibsWrapper, imake, gccmakedep, libXmu, libXpm, libXp, bison, flex, pkgconfig}:
|
2005-11-12 18:05:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2016-10-26 15:48:39 +02:00
|
|
|
name = "Xaw3d-1.6.2";
|
2005-11-12 18:05:51 +01:00
|
|
|
src = fetchurl {
|
2016-10-26 15:48:39 +02:00
|
|
|
urls = [
|
2017-12-28 00:31:57 +01:00
|
|
|
ftp://ftp.x.org/pub/xorg/individual/lib/libXaw3d-1.6.2.tar.bz2
|
2016-10-26 15:48:39 +02:00
|
|
|
];
|
2017-12-28 00:31:57 +01:00
|
|
|
sha256 = "0awplv1nf53ywv01yxphga3v6dcniwqnxgnb0cn4khb121l12kxp";
|
2005-11-12 18:05:51 +01:00
|
|
|
};
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [imake gccmakedep libXpm libXp bison flex];
|
2015-09-15 11:13:22 +02:00
|
|
|
propagatedBuildInputs = [xlibsWrapper libXmu];
|
2013-10-05 16:22:46 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "3D widget set based on the Athena Widget set";
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2013-10-05 16:22:46 +02:00
|
|
|
};
|
2005-11-12 18:05:51 +01:00
|
|
|
}
|