2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, 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";
|
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libcaca ];
|
2015-09-26 18:46:06 +01:00
|
|
|
|
2018-07-16 21:04:48 +01:00
|
|
|
meta = with stdenv.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
|
|
|
};
|
|
|
|
}
|