nixpkgs/pkgs/games/banner/default.nix

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

29 lines
690 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub }:
2015-07-08 18:51:38 +00:00
stdenv.mkDerivation rec {
2020-12-27 13:50:45 +00:00
pname = "banner";
2024-03-18 04:01:41 +00:00
version = "1.3.6";
2020-12-27 13:50:45 +00:00
src = fetchFromGitHub {
owner = "pronovic";
repo = "banner";
rev = "BANNER_V${version}";
2024-03-18 04:01:41 +00:00
sha256 = "sha256-g9i460W0SanW2xIfZk9Am/vDsRlL7oxJOUhksa+I8zY=";
2015-07-08 18:51:38 +00:00
};
meta = with lib; {
2022-01-07 06:35:51 +00:00
homepage = "https://github.com/pronovic/banner";
description = "Print large banners to ASCII terminals";
mainProgram = "banner";
2020-12-27 13:50:45 +00:00
license = licenses.gpl2Only;
longDescription = ''
An implementation of the traditional Unix-program used to display
large characters.
'';
2015-07-08 18:51:38 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}