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