2015-07-08 21:51:38 +03:00
|
|
|
{ stdenv, fetchurl }:
|
2011-07-08 02:19:52 +04:00
|
|
|
|
2015-07-08 21:51:38 +03:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "banner-1.3.3";
|
2011-07-08 02:19:52 +04:00
|
|
|
|
2015-07-08 21:51:38 +03:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://software.cedar-solutions.com/ftp/software/${name}.tar.gz";
|
|
|
|
sha256 = "1njbgba0gzvrmdkvfjgrnvj0i80yi8k7mpkgyxaj07bmv9kc3h5v";
|
|
|
|
};
|
2011-07-08 02:19:52 +04:00
|
|
|
|
2015-07-08 21:51:38 +03:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://software.cedar-solutions.com/utilities.html;
|
2014-08-24 18:21:08 +04:00
|
|
|
description = "Print large banners to ASCII terminals";
|
2015-07-08 21:51:38 +03:00
|
|
|
license = licenses.gpl2;
|
2011-07-08 02:19:52 +04:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
An implementation of the traditional Unix-program used to display
|
|
|
|
large characters.
|
|
|
|
'';
|
|
|
|
|
2015-07-08 21:51:38 +03:00
|
|
|
platforms = platforms.all;
|
2016-05-16 23:30:20 +03:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2011-07-08 02:19:52 +04:00
|
|
|
};
|
|
|
|
}
|