scowl: fix darwin build

/cc ZHF #36454
This commit is contained in:
Daiderd Jordan 2018-03-25 15:23:49 +02:00
parent 2b7003e1de
commit e52250b33c
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -1,4 +1,7 @@
{stdenv, fetchFromGitHub, unzip, zip, perl, aspell, dos2unix, singleWordlist ? null}:
{ stdenv, fetchFromGitHub, unzip, zip, libiconv, perl, aspell, dos2unix
, singleWordlist ? null
}:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "scowl";
@ -11,10 +14,15 @@ stdenv.mkDerivation rec {
sha256 = "16mgk6scbw8i38g63kh60bsnzgzfs8gvvz2n5jh4x5didbwly8nz";
};
buildInputs = [];
nativeBuildInputs = [unzip zip perl aspell dos2unix];
postPatch = ''
substituteInPlace scowl/src/Makefile \
--replace g++ c++
'';
NIX_CFLAGS_COMPILE = " -Wno-narrowing ";
nativeBuildInputs = [ unzip zip perl aspell dos2unix ];
buildInputs = stdenv.lib.optional (!stdenv.isLinux) libiconv;
NIX_CFLAGS_COMPILE = "-Wno-narrowing";
preConfigure = ''
patchShebangs .
@ -34,8 +42,8 @@ stdenv.mkDerivation rec {
installPhase = if singleWordlist == null then ''
eval "$preInstall"
mkdir -p "$out/share/scowl"
mkdir -p "$out/lib" "$out/share/hunspell" "$out/share/myspell"
mkdir -p "$out/share/scowl"
mkdir -p "$out/lib" "$out/share/hunspell" "$out/share/myspell"
mkdir -p "$out/share/dict"
cp -r scowl/speller/aspell "$out/lib/aspell"