python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / toilet / default.nix
blob41eaa6b03bf584d028d1f50933e34dae64b1e45f
1 { lib, stdenv, fetchurl, pkg-config, libcaca }:
3 stdenv.mkDerivation rec {
4   pname = "toilet";
5   version = "0.3";
7   src = fetchurl {
8     url = "http://caca.zoy.org/raw-attachment/wiki/toilet/${pname}-${version}.tar.gz";
9     sha256 = "1pl118qb7g0frpgl9ps43w4sd0psjirpmq54yg1kqcclqcqbbm49";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ libcaca ];
15   meta = with lib; {
16     description = "Display large colourful characters in text mode";
17     homepage = "http://caca.zoy.org/wiki/toilet";
18     license = licenses.wtfpl;
19     maintainers = with maintainers; [ pSub ];
20     platforms = platforms.all;
21   };