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
11 lines
231 B
Nix
11 lines
231 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libungif-4.1.4";
|
|
src = fetchurl {
|
|
url = http://surfnet.dl.sourceforge.net/sourceforge/libungif/libungif-4.1.4.tar.gz;
|
|
md5 = "efdfcf8e32e35740288a8c5625a70ccb";
|
|
};
|
|
}
|
|
|