18 lines
590 B
Nix
18 lines
590 B
Nix
{stdenv, fetchurl, xlibsWrapper, imake, gccmakedep, libXmu, libXpm, libXp, bison, flex, pkgconfig}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "Xaw3d-1.6.3";
|
|
src = fetchurl {
|
|
url = https://www.x.org/releases/individual/lib/libXaw3d-1.6.3.tar.bz2;
|
|
sha256 = "0i653s8g25cc0mimkwid9366bqkbyhdyjhckx7bw77j20hzrkfid";
|
|
};
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [imake gccmakedep libXpm libXp bison flex];
|
|
propagatedBuildInputs = [xlibsWrapper libXmu];
|
|
|
|
meta = {
|
|
description = "3D widget set based on the Athena Widget set";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|