1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

add libungif expression for backwards compat

svn path=/nixpkgs/trunk/; revision=10027
This commit is contained in:
Armijn Hemel 2007-12-31 21:53:40 +00:00
parent 516078ca38
commit 317ebab2c2

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libungif-4.1.4";
src = fetchurl {
url = mirror://sourceforge/giflib/libungif-4.1.4.tar.gz;
md5 = "efdfcf8e32e35740288a8c5625a70ccb";
};
}