2018-08-19 09:18:16 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, imake, gccmakedep, bison, flex, pkgconfig
|
|
|
|
, xlibsWrapper, libXmu, libXpm, libXp }:
|
2005-11-12 17:05:51 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2018-06-24 18:26:59 +01:00
|
|
|
name = "Xaw3d-1.6.3";
|
2005-11-12 17:05:51 +00:00
|
|
|
src = fetchurl {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://www.x.org/releases/individual/lib/libXaw3d-1.6.3.tar.bz2";
|
2018-06-24 18:26:59 +01:00
|
|
|
sha256 = "0i653s8g25cc0mimkwid9366bqkbyhdyjhckx7bw77j20hzrkfid";
|
2005-11-12 17:05:51 +00:00
|
|
|
};
|
2018-11-28 20:22:10 +00:00
|
|
|
dontUseImakeConfigure = true;
|
2018-08-19 09:18:16 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig bison flex imake gccmakedep ];
|
|
|
|
buildInputs = [ libXpm libXp ];
|
|
|
|
propagatedBuildInputs = [ xlibsWrapper libXmu ];
|
2013-10-05 15:22:46 +01:00
|
|
|
|
2018-08-19 09:18:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-05 15:22:46 +01:00
|
|
|
description = "3D widget set based on the Athena Widget set";
|
2018-04-20 00:15:31 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2018-08-19 09:18:16 +01:00
|
|
|
license = licenses.mit;
|
2013-10-05 15:22:46 +01:00
|
|
|
};
|
2005-11-12 17:05:51 +00:00
|
|
|
}
|