Added aspell
Added gtkspell Added pidgin, builds but does not run yet: running pidgin fails to find libX11.so.6. ldd on pidgin reports: libX11.so.6 => not found .... libX11.so.6 => /nix/store/brsva6rh1p2ymjvk7054a90is5panrhf-libX11-1.1.1/lib/libX11.so.6 (0xb7358000) which looks a bit weird ... Maybe some problem with patchelf? Or just a build problem and should the library path be set using an environment variable? svn path=/nixpkgs/trunk/; revision=8660
This commit is contained in:
11
pkgs/development/libraries/aspell/default.nix
Normal file
11
pkgs/development/libraries/aspell/default.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{stdenv, fetchurl, perl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "aspell-0.60.5";
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.5.tar.gz;
|
||||
md5 = "17fd8acac6293336bcef44391b71e337";
|
||||
};
|
||||
|
||||
buildInputs = [perl];
|
||||
}
|
||||
Reference in New Issue
Block a user