otadump: init at 0.1.2 (#329129)
[NixPkgs.git] / pkgs / by-name / to / toilet / package.nix
blob42d0b343a69d765ae0bc142a5d328f7ab5466690
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   libcaca,
7   toilet,
8   testers,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "toilet";
13   version = "0.3";
15   src = fetchurl {
16     url = "http://caca.zoy.org/raw-attachment/wiki/toilet/toilet-${version}.tar.gz";
17     sha256 = "1pl118qb7g0frpgl9ps43w4sd0psjirpmq54yg1kqcclqcqbbm49";
18   };
20   nativeBuildInputs = [ pkg-config ];
21   buildInputs = [ libcaca ];
23   passthru.tests.version = testers.testVersion {
24     package = toilet;
25   };
27   meta = with lib; {
28     description = "Display large colourful characters in text mode";
29     homepage = "http://caca.zoy.org/wiki/toilet";
30     license = licenses.wtfpl;
31     maintainers = with maintainers; [ pSub ];
32     platforms = platforms.all;
33     mainProgram = "toilet";
34   };