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:
@@ -0,0 +1,12 @@
|
||||
{stdenv, fetchurl, gtk, aspell, pkgconfig}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gtkspell-2.0.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://gtkspell.sourceforge.net/download/gtkspell-2.0.11.tar.gz;
|
||||
md5 = "494869f67146a12a3f17a958f51aeb05";
|
||||
};
|
||||
|
||||
buildInputs = [aspell pkgconfig gtk];
|
||||
}
|
||||
Reference in New Issue
Block a user