nixpkgs/pkgs/tools/misc/toilet/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
740 B
Nix
Raw Normal View History

2023-09-18 21:58:14 +02:00
{ lib, stdenv, fetchurl, pkg-config, libcaca, toilet, testers }:
stdenv.mkDerivation rec {
pname = "toilet";
version = "0.3";
src = fetchurl {
url = "http://caca.zoy.org/raw-attachment/wiki/toilet/${pname}-${version}.tar.gz";
sha256 = "1pl118qb7g0frpgl9ps43w4sd0psjirpmq54yg1kqcclqcqbbm49";
};
2021-01-17 04:51:22 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libcaca ];
2023-09-18 21:58:14 +02:00
passthru.tests.version = testers.testVersion {
package = toilet;
};
meta = with lib; {
description = "Display large colourful characters in text mode";
homepage = "http://caca.zoy.org/wiki/toilet";
license = licenses.wtfpl;
maintainers = with maintainers; [ pSub ];
platforms = platforms.all;
2023-11-27 02:17:53 +01:00
mainProgram = "toilet";
};
}