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

52 lines
1.3 KiB
Nix
Raw Normal View History

2016-07-27 17:34:26 +00:00
{ stdenv, fetchurl, pkgconfig, libtool
, xlibsWrapper, xbitmaps, libXrender, libXmu, libXt
, expat, libjpeg, libpng, libiconv
, flex
, libXp, libXau
, demoSupport ? false
2016-07-27 17:34:26 +00:00
}:
# refer to the gentoo package
stdenv.mkDerivation rec {
pname = "motif";
2016-07-27 17:34:26 +00:00
version = "2.3.6";
src = fetchurl {
url = "mirror://sourceforge/motif/${pname}-${version}.tar.gz";
2016-07-27 17:34:26 +00:00
sha256 = "1ksqbp0bzdw6wcrx8s4hj4ivvxmw54hz85l2xfigb87cxmmhx0gs";
};
buildInputs = [
2016-07-30 10:42:36 +00:00
libtool
2016-07-27 17:34:26 +00:00
xlibsWrapper xbitmaps libXrender libXmu libXt
expat libjpeg libpng libiconv
2016-07-30 10:42:36 +00:00
];
2016-07-27 17:34:26 +00:00
nativeBuildInputs = [ pkgconfig flex ];
2016-07-27 17:34:26 +00:00
propagatedBuildInputs = [ libXp libXau ];
2016-08-02 15:04:52 +00:00
hardeningDisable = [ "format" ];
2016-07-27 17:34:26 +00:00
makeFlags = [ "CFLAGS=-fno-strict-aliasing" ];
prePatch = ''
rm lib/Xm/Xm.h
'' + stdenv.lib.optionalString (!demoSupport) ''
sed '/^SUBDIRS =,^$/s/\<demos\>//' -i Makefile.{am,in}
'';
2016-07-30 10:42:36 +00:00
patches = [ ./Remove-unsupported-weak-refs-on-darwin.patch
./Use-correct-header-for-malloc.patch
./Add-X.Org-to-bindings-file.patch
];
2016-07-27 17:34:26 +00:00
meta = with stdenv.lib; {
homepage = "https://motif.ics.com";
2016-07-27 17:34:26 +00:00
description = "Unix standard widget-toolkit and window-manager";
2016-07-30 10:42:36 +00:00
platforms = with platforms; linux ++ darwin;
2016-07-27 17:34:26 +00:00
license = with licenses; [ lgpl21 ];
maintainers = with maintainers; [ ];
};
}