c0a804c747
We need to set dontUseImakeConfigure in a few places to prevent imake from overriding the default configure phase. This packages all have a configure script that needs to get run: - Xaw3d - R - tkgate - ssvnc
22 lines
675 B
Nix
22 lines
675 B
Nix
{ stdenv, fetchurl
|
|
, imake, gccmakedep, bison, flex, pkgconfig
|
|
, xlibsWrapper, libXmu, libXpm, libXp }:
|
|
|
|
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";
|
|
};
|
|
dontUseImakeConfigure = true;
|
|
nativeBuildInputs = [ pkgconfig bison flex imake gccmakedep ];
|
|
buildInputs = [ libXpm libXp ];
|
|
propagatedBuildInputs = [ xlibsWrapper libXmu ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "3D widget set based on the Athena Widget set";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
license = licenses.mit;
|
|
};
|
|
}
|