Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / banner / default.nix
blobbefb29f6ffc91593931a934056efbd88464aade4
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "banner";
5   version = "1.3.5";
7   src = fetchFromGitHub {
8     owner = "pronovic";
9     repo = "banner";
10     rev = "BANNER_V${version}";
11     sha256 = "ISSnGzrFSzSj/+KxgeFtaw4H+4Ea5x5S5C8xjcjKWqQ=";
12   };
14   meta = with lib; {
15     homepage = "https://github.com/pronovic/banner";
16     description = "Print large banners to ASCII terminals";
17     license = licenses.gpl2Only;
19     longDescription = ''
20       An implementation of the traditional Unix-program used to display
21       large characters.
22     '';
24     platforms = platforms.all;
25     maintainers = with maintainers; [ pSub ];
26   };