summary refs log tree commit diff
path: root/pkgs/development/libraries/Xaw3d/default.nix
blob: 3e496b7e981fdf091c7c54e6a726ca0ec6ebce8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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;
  };
}