Merge pull request #307746 from r-ryantm/auto-update/mame
[NixPkgs.git] / pkgs / games / banner / default.nix
blobaf54f59999c80c3c55492f2ae8b7388bbca1d431
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "banner";
5   version = "1.3.6";
7   src = fetchFromGitHub {
8     owner = "pronovic";
9     repo = "banner";
10     rev = "BANNER_V${version}";
11     sha256 = "sha256-g9i460W0SanW2xIfZk9Am/vDsRlL7oxJOUhksa+I8zY=";
12   };
14   meta = with lib; {
15     homepage = "https://github.com/pronovic/banner";
16     description = "Print large banners to ASCII terminals";
17     mainProgram = "banner";
18     license = licenses.gpl2Only;
20     longDescription = ''
21       An implementation of the traditional Unix-program used to display
22       large characters.
23     '';
25     platforms = platforms.all;
26     maintainers = with maintainers; [ pSub ];
27   };