nixpkgs/pkgs/games/banner/default.nix

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

28 lines
655 B
Nix
Raw 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";
version = "1.3.5";
2020-12-27 13:50:45 +00:00
src = fetchFromGitHub {
owner = "pronovic";
repo = "banner";
rev = "BANNER_V${version}";
sha256 = "ISSnGzrFSzSj/+KxgeFtaw4H+4Ea5x5S5C8xjcjKWqQ=";
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";
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 ];
};
}