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