nixpkgs/pkgs/applications/misc/terminal-parrot/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
645 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2017-03-21 10:04:35 +00:00
buildGoModule rec {
pname = "terminal-parrot";
version = "1.1.1";
2017-03-21 10:04:35 +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=";
};
2023-09-21 14:23:40 +00:00
vendorHash = "sha256-DJEoJjItusN1LTOOX1Ep+frF03yF/QmB/L66gSG0VOE=";
doCheck = false;
meta = with lib; {
description = "Shows colorful, animated party parrot in your terminial";
homepage = "https://github.com/jmhobbs/terminal-parrot";
license = licenses.mit;
maintainers = [ maintainers.heel ];
2024-02-11 02:19:15 +00:00
mainProgram = "terminal-parrot";
};
}