Skip to content

Commit 02b4c13

Browse files
authored
longcat: init at 0.0.12 (NixOS#380813)
2 parents c39e50a + 6b6f427 commit 02b4c13

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3570,6 +3570,12 @@
35703570
githubId = 32319131;
35713571
name = "Brett L";
35723572
};
3573+
bubblepipe = {
3574+
email = "[email protected]";
3575+
github = "bubblepipe";
3576+
githubId = 30717258;
3577+
name = "bubblepipe";
3578+
};
35733579
buckley310 = {
35743580
email = "[email protected]";
35753581
matrix = "@buckley310:matrix.org";
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
nix-update-script,
6+
}:
7+
8+
let
9+
version = "0.0.12";
10+
in
11+
buildGoModule {
12+
pname = "longcat";
13+
inherit version;
14+
15+
src = fetchFromGitHub {
16+
owner = "mattn";
17+
repo = "longcat";
18+
tag = "v${version}";
19+
hash = "sha256-MiUkI7qCN/rDJUkBCyET19CH4iYnl1HwKjRZD2dCTVM=";
20+
};
21+
22+
vendorHash = "sha256-ka58YOoyBKLX8Z9ak2+rERXsY3rPUaOanfIFErCJCdE=";
23+
24+
passthru.updateScript = nix-update-script { };
25+
26+
meta = {
27+
homepage = "https://github.com/mattn/longcat";
28+
description = "Renders a picture of a long cat on the terminal.";
29+
license = lib.licenses.mit;
30+
platforms = lib.platforms.all;
31+
mainProgram = "longcat";
32+
maintainers = with lib.maintainers; [
33+
bubblepipe
34+
];
35+
};
36+
}

0 commit comments

Comments
 (0)