nixpkgs/pkgs/development/libraries/motif/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00

52 lines
1.3 KiB
Nix

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