93393a6748
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
13 lines
288 B
Nix
13 lines
288 B
Nix
{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];
|
|
}
|