File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed
Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 35703570 githubId = 32319131;
35713571 name = "Brett L";
35723572 };
3573+ bubblepipe = {
3574+ 3575+ github = "bubblepipe";
3576+ githubId = 30717258;
3577+ name = "bubblepipe";
3578+ };
35733579 buckley310 = {
3574358035753581 matrix = "@buckley310:matrix.org";
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments