summary refs log tree commit diff
path: root/pkgs/development/libraries/Xaw3d/default.nix
blob: 07d256f4f571cef1e5818e708002a1f034290413 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, xlibsWrapper, imake, gccmakedep, libXmu, libXpm, libXp, bison, flex, pkgconfig}:

stdenv.mkDerivation {
  name = "Xaw3d-1.6.2";
  src = fetchurl {
    urls = [ 
      ftp://ftp.x.org/pub/xorg/individual/lib/libXaw3d-1.6.2.tar.bz2
      ];
    sha256 = "0awplv1nf53ywv01yxphga3v6dcniwqnxgnb0cn4khb121l12kxp";
  };
  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.linux;
  };
}