47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libtool
|
|
, xlibsWrapper, xbitmaps, libXrender, libXmu, libXt
|
|
, expat, libjpeg, libpng, libiconv
|
|
, flex
|
|
, libXp, libXau
|
|
, demoSupport ? false, autoconf, automake
|
|
}:
|
|
# refer to the gentoo package
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "motif-${version}";
|
|
version = "2.3.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/motif/${name}.tar.gz";
|
|
sha256 = "1ksqbp0bzdw6wcrx8s4hj4ivvxmw54hz85l2xfigb87cxmmhx0gs";
|
|
};
|
|
|
|
buildInputs = [
|
|
libtool
|
|
xlibsWrapper xbitmaps libXrender libXmu libXt
|
|
expat libjpeg libpng libiconv
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig flex ] ++ stdenv.lib.optionals (!demoSupport) [ autoconf automake ];
|
|
|
|
propagatedBuildInputs = [ libXp libXau ];
|
|
|
|
makeFlags = [ "CFLAGS=-fno-strict-aliasing" ];
|
|
|
|
prePatch = ''rm lib/Xm/Xm.h'';
|
|
|
|
patches = [ ./Remove-unsupported-weak-refs-on-darwin.patch
|
|
./Use-correct-header-for-malloc.patch
|
|
./Add-X.Org-to-bindings-file.patch
|
|
]
|
|
++ stdenv.lib.optional (!demoSupport) ./Do-not-compile-demos.patch;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://motif.ics.com;
|
|
description = "Unix standard widget-toolkit and window-manager";
|
|
platforms = with platforms; linux ++ darwin;
|
|
license = with licenses; [ lgpl21 ];
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|