Skip to content

Commit

Permalink
aspellWithDicts: create derivation with aspell and selected dictionaries
Browse files Browse the repository at this point in the history
Currently, `aspell` checks the active profiles for dictionaries. While
this may be convenient, it does not work with `nix-shell` and it doesn't
allow any isolation.

This commit adds the possibility to use composition by creating a
derivation with `symlinkJoin` that contains all the chosen dictionaries,
and another derivation that wraps the executables linking to the dictionaries.

Nix example:

my_aspell = aspellWithDicts(ps: with ps; [ en nl ])

`nix-shell` example:

nix-shell -p 'aspellWithDicts(ps: with ps; [ en nl ])'
  • Loading branch information
FRidh committed Jul 17, 2017
1 parent 1d78df2 commit c0cf196
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/development/libraries/aspell/aspell-with-dicts.nix
@@ -0,0 +1,35 @@
# Create a derivation that contains aspell and selected dictionaries.
# Composition is done using `pkgs.buildEnv`.

{ aspell
, aspellDicts
, makeWrapper
, symlinkJoin
, runCommand
}:

f:

let
# Dictionaries we want
dicts = f aspellDicts;

# A tree containing the dictionaries
dictEnv = symlinkJoin {
name = "aspell-dicts";
paths = dicts;
};

in runCommand "aspell-env" {
buildInputs = [ makeWrapper ];
} ''
# Construct wrappers in /bin
mkdir -p $out/bin
pushd "${aspell}/bin"
for prg in *; do
if [ -f "$prg" ]; then
makeWrapper "${aspell}/bin/$prg" "$out/bin/$prg" --set ASPELL_CONF "data-dir ${dictEnv}/lib/aspell"
fi
done
popd
''
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -7393,6 +7393,8 @@ with pkgs;

aspellDicts = recurseIntoAttrs (callPackages ../development/libraries/aspell/dictionaries.nix {});

aspellWithDicts = callPackage ../development/libraries/aspell/aspell-with-dicts.nix { };

attica = callPackage ../development/libraries/attica { };

attr = callPackage ../development/libraries/attr { };
Expand Down

0 comments on commit c0cf196

Please sign in to comment.