1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
10 rev = "BANNER_V${version}";
11 sha256 = "sha256-g9i460W0SanW2xIfZk9Am/vDsRlL7oxJOUhksa+I8zY=";
15 homepage = "https://github.com/pronovic/banner";
16 description = "Print large banners to ASCII terminals";
17 mainProgram = "banner";
18 license = licenses.gpl2Only;
21 An implementation of the traditional Unix-program used to display
25 platforms = platforms.all;
26 maintainers = with maintainers; [ pSub ];