nixpkgs/pkgs/development/libraries/Xaw3d/default.nix

18 lines
590 B
Nix
Raw Normal View History

{stdenv, fetchurl, xlibsWrapper, imake, gccmakedep, libXmu, libXpm, libXp, bison, flex, pkgconfig}:
stdenv.mkDerivation {
name = "Xaw3d-1.6.2";
src = fetchurl {
2018-04-08 08:37:32 +03:00
url = https://www.x.org/releases/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";
2018-04-20 02:15:31 +03:00
platforms = stdenv.lib.platforms.unix;
};
}