summary refs log tree commit diff
path: root/pkgs/games/banner/default.nix
blob: eb3692b05ab0f8a5ebb53359e3634b20d21cd84f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "banner-1.3.3";

  src = fetchurl {
    url = "http://software.cedar-solutions.com/ftp/software/${name}.tar.gz";
    sha256 = "1njbgba0gzvrmdkvfjgrnvj0i80yi8k7mpkgyxaj07bmv9kc3h5v";
  };

  meta = with stdenv.lib; {
    homepage = http://software.cedar-solutions.com/utilities.html;
    description = "Print large banners to ASCII terminals";
    license = licenses.gpl2;

    longDescription = ''
      An implementation of the traditional Unix-program used to display
      large characters.
    '';

    platforms = platforms.all;
    maintainers = with maintainers; [ pSub ];
  };
}