2005-08-24 16:02:30 +01:00
|
|
|
{stdenv, fetchurl, ncurses}:
|
|
|
|
|
2008-06-10 19:15:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-18 15:21:57 +00:00
|
|
|
name = "libcaca-0.99.beta18";
|
2009-02-12 19:25:10 +00:00
|
|
|
|
2005-08-24 16:02:30 +01:00
|
|
|
src = fetchurl {
|
2011-10-02 15:34:23 +01:00
|
|
|
url = "http://caca.zoy.org/files/libcaca/${name}.tar.gz";
|
2013-12-18 15:21:57 +00:00
|
|
|
sha256 = "189kdh7zi88gxb3w33rh0p5l0yhn7s1c2xjgrpf24q2a7xihdskp";
|
2005-08-24 16:02:30 +01:00
|
|
|
};
|
2009-02-12 19:25:10 +00:00
|
|
|
|
2005-10-04 15:24:19 +01:00
|
|
|
configureFlags = "--disable-x11 --disable-imlib2 --disable-doc";
|
2009-02-12 19:25:10 +00:00
|
|
|
|
2005-08-24 16:02:30 +01:00
|
|
|
propagatedBuildInputs = [ncurses];
|
2008-06-10 19:15:10 +01:00
|
|
|
|
2009-02-12 19:25:10 +00: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 16:02:30 +01:00
|
|
|
}
|