blob: 24d9e109fa55cc4b91e66e949ed5f904b60bec16 (
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
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
}:
let
version = "0.0.18";
in
buildGoModule {
pname = "longcat";
inherit version;
src = fetchFromGitHub {
owner = "mattn";
repo = "longcat";
tag = "v${version}";
hash = "sha256-5D+hGWwpjRLDNw1zwM+tkVPHRebERU83Gye6WQZUuhg=";
};
vendorHash = "sha256-VcNhzQyhd7gDvlrz7Lh2QRUkMjZj40s2hanNP6gsnMs=";
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/mattn/longcat";
description = "Renders a picture of a long cat on the terminal";
license = lib.licenses.mit;
platforms = lib.platforms.all;
mainProgram = "longcat";
maintainers = with lib.maintainers; [
bubblepipe
];
};
}
|