deadpixi-sam: fix on Darwin

This commit is contained in:
Dmitry Kalinkin 2018-01-19 00:26:03 -05:00
parent 4dff3ee959
commit 88b485a062
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333

View File

@ -15,9 +15,11 @@ stdenv.mkDerivation rec {
postPatch = ''
substituteInPlace config.mk.def \
--replace "/usr/include/freetype2" "${freetype.dev}/include/freetype2"
--replace "/usr/include/freetype2" "${freetype.dev}/include/freetype2" \
--replace "CC=gcc" ""
'';
CFLAGS = "-D_DARWIN_C_SOURCE";
makeFlags = [ "DESTDIR=$(out)" ];
buildInputs = [ libX11 libXt libXft ];
@ -31,6 +33,6 @@ stdenv.mkDerivation rec {
description = "Updated version of the sam text editor";
license = with licenses; lpl-102;
maintainers = with maintainers; [ ramkromberg ];
platforms = with platforms; linux;
platforms = with platforms; unix;
};
}