nixpkgs/pkgs/development/libraries/aspell/default.nix
Bjørn Forsman 28ac782583 Some description fixes
There are many more packages to fix, this is just a start.

Rules:
 * Don't repeat the package name (not always that easy...)
 * Start with capital letter
 * Don't end with full stop
 * Don't start with "The ..." or "A ..."

I've also added descriptions to some packages and rewritten others.
2013-10-05 19:36:23 +02:00

29 lines
745 B
Nix

{stdenv, fetchurl, perl}:
stdenv.mkDerivation rec {
name = "aspell-0.60.6.1";
src = fetchurl {
url = "mirror://gnu/aspell/${name}.tar.gz";
sha256 = "1qgn5psfyhbrnap275xjfrzppf5a83fb67gpql0kfqv37al869gm";
};
buildInputs = [ perl ];
doCheck = true;
# Note: Users should define the `ASPELL_CONF' environment variable to
# `dict-dir $HOME/.nix-profile/lib/aspell/' so that they can access
# dictionaries installed in their profile.
#
# We can't use `$out/etc/aspell.conf' for that purpose since Aspell
# doesn't expand environment variables such as `$HOME'.
meta = {
description = "Spell checker for many languages";
homepage = http://aspell.net/;
license = "LGPLv2+";
maintainers = [ ];
};
}