deeadfc6f5
distributed by default in KDE). Unfortunately it doesn't work, because of some strange problems with mime types. But well, it compiles. The libraries are useful anyway: - arts (kde) - imlib (gnome) - libungif (aka libgif) svn path=/nixpkgs/trunk/; revision=6111
22 lines
475 B
Nix
22 lines
475 B
Nix
{stdenv, fetchurl, libX11, libXext, xextproto, libjpeg, libungif, libtiff, libpng}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "imlib-1.9.15";
|
|
src = fetchurl {
|
|
url = http://ftp.gnome.org/pub/GNOME/sources/imlib/1.9/imlib-1.9.15.tar.gz;
|
|
md5 = "2a5561457e7f8b2e04d88f73508fd13a";
|
|
};
|
|
|
|
configureFlags = "
|
|
--disable-shm
|
|
--x-includes=${libX11}/include
|
|
--x-libraries=${libX11}/lib";
|
|
|
|
buildInputs = [libjpeg libXext libX11 xextproto libtiff libungif libpng];
|
|
}
|
|
|
|
|
|
|
|
|
|
|