2021-01-16 19:51:22 -08:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libcaca }:
|
2015-09-26 10:46:06 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "toilet";
|
2015-09-26 10:46:06 -07:00
|
|
|
version = "0.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://caca.zoy.org/raw-attachment/wiki/toilet/${pname}-${version}.tar.gz";
|
2015-09-26 10:46:06 -07:00
|
|
|
sha256 = "1pl118qb7g0frpgl9ps43w4sd0psjirpmq54yg1kqcclqcqbbm49";
|
|
|
|
};
|
|
|
|
|
2021-01-16 19:51:22 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 14:26:13 -07:00
|
|
|
buildInputs = [ libcaca ];
|
2015-09-26 10:46:06 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2015-09-26 10:46:06 -07:00
|
|
|
description = "Display large colourful characters in text mode";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://caca.zoy.org/wiki/toilet";
|
2018-07-16 13:04:48 -07:00
|
|
|
license = licenses.wtfpl;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
platforms = platforms.all;
|
2015-09-26 10:46:06 -07:00
|
|
|
};
|
|
|
|
}
|