14b8b406d9
1.6.4 release announcement: https://lists.x.org/archives/xorg-announce/2022-August/003202.html 1.6.5 release announcement: https://lists.x.org/archives/xorg-announce/2023-May/003396.html
35 lines
729 B
Nix
35 lines
729 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, imake
|
|
, gccmakedep
|
|
, bison
|
|
, flex
|
|
, pkg-config
|
|
, libXext
|
|
, libXmu
|
|
, libXpm
|
|
, libXp
|
|
, libXt
|
|
, xorgproto
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "Xaw3d";
|
|
version = "1.6.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.x.org/releases/individual/lib/libXaw3d-${version}.tar.xz";
|
|
sha256 = "sha256-NIHuS2dTuI4YhW6iZcuE8rAznujDu+yWaxVrOLWEGDM=";
|
|
};
|
|
dontUseImakeConfigure = true;
|
|
nativeBuildInputs = [ pkg-config bison flex imake gccmakedep ];
|
|
buildInputs = [ libXext libXpm libXp ];
|
|
propagatedBuildInputs = [ libXmu libXt xorgproto ];
|
|
|
|
meta = with lib; {
|
|
description = "3D widget set based on the Athena Widget set";
|
|
platforms = lib.platforms.unix;
|
|
license = licenses.mit;
|
|
};
|
|
}
|