2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libcaca }:
|
2015-09-26 17:46:06 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "toilet";
|
2015-09-26 17:46:06 +00:00
|
|
|
version = "0.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://caca.zoy.org/raw-attachment/wiki/toilet/${pname}-${version}.tar.gz";
|
2015-09-26 17:46:06 +00:00
|
|
|
sha256 = "1pl118qb7g0frpgl9ps43w4sd0psjirpmq54yg1kqcclqcqbbm49";
|
|
|
|
};
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libcaca ];
|
2015-09-26 17:46:06 +00:00
|
|
|
|
2018-07-16 20:04:48 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-09-26 17:46:06 +00:00
|
|
|
description = "Display large colourful characters in text mode";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://caca.zoy.org/wiki/toilet;
|
2018-07-16 20:04:48 +00:00
|
|
|
license = licenses.wtfpl;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
platforms = platforms.all;
|
2015-09-26 17:46:06 +00:00
|
|
|
};
|
|
|
|
}
|