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