lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 23 lines 596 B view raw
1{stdenv, fetchurl, ncurses}: 2 3stdenv.mkDerivation rec { 4 name = "libcaca-0.99.beta19"; 5 6 src = fetchurl { 7 urls = [ 8 "http://fossies.org/linux/privat/${name}.tar.gz" 9 "http://caca.zoy.org/files/libcaca/${name}.tar.gz" 10 ]; 11 sha256 = "1x3j6yfyxl52adgnabycr0n38j9hx2j74la0hz0n8cnh9ry4d2qj"; 12 }; 13 14 configureFlags = "--disable-x11 --disable-imlib2 --disable-doc"; 15 16 propagatedBuildInputs = [ncurses]; 17 18 meta = { 19 homepage = http://libcaca.zoy.org/; 20 description = "A graphics library that outputs text instead of pixels"; 21 license = stdenv.lib.licenses.wtfpl; 22 }; 23}