7f5b839524
`selectVersion ./foo "bar"' instead of `import ./foo/bar.nix'. * Replaced `with args' with formal function arguments in several packages. * Renamed several files to `default.nix'. As a general rule, version numbers should only be included in the filename when there is a reason to keep multiple versions of a package in Nixpkgs. Otherwise, it just makes it harder to update the package. svn path=/nixpkgs/trunk/; revision=18403
17 lines
387 B
Nix
17 lines
387 B
Nix
{ stdenv, fetchurl, aspell, pkgconfig, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "enchant-1.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.abisource.com/downloads/enchant/1.3.0/${name}.tar.gz";
|
|
sha256 = "1vwqwsadnp4rf8wj7d4rglvszjzlcli0jyxh06h8inka1sm1al76";
|
|
};
|
|
|
|
buildInputs = [aspell pkgconfig glib];
|
|
|
|
meta = {
|
|
homepage = http://www.abisource.com/enchant;
|
|
};
|
|
}
|