aspellDicts: fix cross compilation

This commit is contained in:
Nick Cao 2021-12-16 14:19:28 +08:00
parent 988b006652
commit 770e26126f
No known key found for this signature in database
GPG key ID: 068A56CEF48FA2C1

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 = {