2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2017-03-21 10:04:35 +00:00
|
|
|
|
2019-03-14 00:49:10 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "terminal-parrot";
|
2019-03-14 00:49:10 +00:00
|
|
|
version = "1.1.1";
|
2017-03-21 10:04:35 +00:00
|
|
|
|
2019-03-14 00:46:32 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jmhobbs";
|
|
|
|
repo = "terminal-parrot";
|
2019-09-08 23:38:31 +00:00
|
|
|
rev = version;
|
2023-09-21 14:23:40 +00:00
|
|
|
hash = "sha256-Qhy5nCbuC9MmegXA48LFCDk4Lm1T5MBmcXfeHzTJm6w=";
|
2019-03-14 00:46:32 +00:00
|
|
|
};
|
|
|
|
|
2023-09-21 14:23:40 +00:00
|
|
|
vendorHash = "sha256-DJEoJjItusN1LTOOX1Ep+frF03yF/QmB/L66gSG0VOE=";
|
2019-03-14 00:49:10 +00:00
|
|
|
|
2020-08-04 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-03-14 00:46:32 +00:00
|
|
|
description = "Shows colorful, animated party parrot in your terminial";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/jmhobbs/terminal-parrot";
|
2019-03-14 00:46:32 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.heel ];
|
|
|
|
};
|
2020-07-31 03:58:04 +00:00
|
|
|
}
|