summary refs log tree commit diff
path: root/pkgs/development/libraries/Xaw3d/default.nix
blob: 50399f62d0a556b98c9263ddc16c8cc399c9bb7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{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.tar.bz2
      ];
    sha256 = "099kx6ni5vkgr3kf40glif8m6r1m1hq6hxqlqrblaj1w5cphh8hi";
  };
  buildInputs = [imake gccmakedep libXpm libXp bison flex pkgconfig];
  propagatedBuildInputs = [xlibsWrapper libXmu];

  meta = {
    description = "3D widget set based on the Athena Widget set";
    platforms = stdenv.lib.platforms.linux;
  };
}