Merge pull request #107722 from freezeboy/update-banner
banner: 1.3.4 -> 1.3.5
This commit is contained in:
commit
e3d6218437
|
@ -1,17 +1,20 @@
|
||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "banner-1.3.4";
|
pname = "banner";
|
||||||
|
version = "1.3.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://software.cedar-solutions.com/ftp/software/${name}.tar.gz";
|
owner = "pronovic";
|
||||||
sha256 = "04q5ribr0r9s8waky3nk356l0qdhfxw15ipz7lsfgv1fxq3qk6bz";
|
repo = "banner";
|
||||||
|
rev = "BANNER_V${version}";
|
||||||
|
sha256 = "ISSnGzrFSzSj/+KxgeFtaw4H+4Ea5x5S5C8xjcjKWqQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://software.cedar-solutions.com/utilities.html";
|
homepage = "http://software.cedar-solutions.com/utilities.html";
|
||||||
description = "Print large banners to ASCII terminals";
|
description = "Print large banners to ASCII terminals";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2Only;
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
An implementation of the traditional Unix-program used to display
|
An implementation of the traditional Unix-program used to display
|
||||||
|
|
Loading…
Reference in New Issue