nixpkgs/pkgs/by-name/xa/Xaw3d/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
795 B
Nix
Raw Normal View History

2021-11-09 19:53:19 +00:00
{
lib,
stdenv,
fetchurl,
imake,
gccmakedep,
bison,
flex,
pkg-config,
libXext,
2021-11-09 19:53:19 +00:00
libXmu,
libXpm,
libXp,
libXt,
xorgproto,
2021-11-09 19:53:19 +00:00
}:
stdenv.mkDerivation rec {
pname = "Xaw3d";
2024-03-03 02:59:32 +00:00
version = "1.6.6";
src = fetchurl {
url = "https://www.x.org/releases/individual/lib/libXaw3d-${version}.tar.xz";
2024-03-03 02:59:32 +00:00
sha256 = "sha256-pBw+NxNa1hax8ou95wACr788tZow3zQUH4KdMurchkY=";
};
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;
};
}