Merge pull request #150933 from NickCao/aspell

aspellDicts: fix cross compilation
This commit is contained in:
Guillaume Girol 2021-12-18 16:50:02 +00:00 committed by GitHub
commit d1019e1aa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,10 +41,14 @@ let
stdenv.mkDerivation ({
name = "aspell-dict-${shortName}";
buildInputs = [aspell which];
strictDeps = true;
nativeBuildInputs = [ aspell which ];
dontAddPrefix = true;
configurePlatforms = [ ];
preBuild = "makeFlagsArray=(dictdir=$out/lib/aspell datadir=$out/lib/aspell)";
meta = {