1 { lib, stdenv, fetchurl, pkg-config, libcaca }:
3 stdenv.mkDerivation rec {
8 url = "http://caca.zoy.org/raw-attachment/wiki/toilet/${pname}-${version}.tar.gz";
9 sha256 = "1pl118qb7g0frpgl9ps43w4sd0psjirpmq54yg1kqcclqcqbbm49";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ libcaca ];
16 description = "Display large colourful characters in text mode";
17 homepage = "http://caca.zoy.org/wiki/toilet";
18 license = licenses.wtfpl;
19 maintainers = with maintainers; [ pSub ];
20 platforms = platforms.all;