2005-08-24 17:02:30 +02:00
|
|
|
{stdenv, fetchurl, ncurses}:
|
|
|
|
|
2008-06-10 20:15:10 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2007-12-31 20:02:49 +01:00
|
|
|
name = "libcaca-0.99-beta13b";
|
2005-08-24 17:02:30 +02:00
|
|
|
src = fetchurl {
|
2008-06-10 20:15:10 +02:00
|
|
|
name = "${name}.tar.gz";
|
|
|
|
url = http://libcaca.zoy.org/attachment/wiki/libcaca/libcaca-0.99.beta13b.tar.gz?format=raw;
|
2007-12-31 20:02:49 +01:00
|
|
|
sha256 = "0xy8pcnljnj5la97bzbwwyzyqa7dr3v9cyw8gdjzdfgqywvac1vg";
|
2005-08-24 17:02:30 +02:00
|
|
|
};
|
2005-10-04 16:24:19 +02:00
|
|
|
configureFlags = "--disable-x11 --disable-imlib2 --disable-doc";
|
2005-08-24 17:02:30 +02:00
|
|
|
propagatedBuildInputs = [ncurses];
|
2008-06-10 20:15:10 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://libcaca.zoy.org/;
|
|
|
|
description = "A graphics library that outputs text instead of pixels.";
|
|
|
|
license = "WTFPL"; # http://sam.zoy.org/wtfpl/
|
|
|
|
};
|
2005-08-24 17:02:30 +02:00
|
|
|
}
|