aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/libraries/aspell')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/aspell-with-dicts.nix2
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix6
2 files changed, 4 insertions, 4 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/aspell-with-dicts.nix b/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/aspell-with-dicts.nix
index fd5ccf9696cc..88b1302271fb 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/aspell-with-dicts.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/aspell-with-dicts.nix
@@ -33,4 +33,4 @@ in buildEnv {
done
popd
'';
-} \ No newline at end of file
+}
diff --git a/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix b/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix
index 32405d6a5251..bc2a189a887a 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix
@@ -132,15 +132,15 @@ let
# drop comments
aspell-affix() {
words-only \
- | grep -v '#' \
+ | grep -a -v '#' \
| aspell-create "$@"
}
# Hack: drop comments and words with affixes
aspell-plain() {
words-only \
- | grep -v '#' \
- | grep -v '/' \
+ | grep -a -v '#' \
+ | grep -a -v '/' \
| aspell-create "$@"
}