blob: 37ab1a528433ff96197c8f3d85f1d4f00b344ac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "term-banner";
version = "1.2.0";
src = fetchFromGitHub {
owner = "nsfisis";
repo = "term-banner";
rev = "v${version}";
hash = "sha256-YCIT+6PdHLrOrPzWpF/U8G8qGcYDXkgVMde/IUWRe84=";
};
vendorHash = "sha256-i78RKipeirkmteFsYmmmu0gU4cjph01gn/9zl8lcpXM=";
meta = {
description = "Show a banner in your terminal.";
homepage = "https://github.com/nsfisis/term-banner";
license = lib.licenses.mit;
mainProgram = "term-banner";
};
}
|