tea: Init at 0.6.0

master
Michael Raitza 2020-12-18 21:54:32 +01:00
parent 2d3bfa5832
commit 86fc7ba89a
2 changed files with 20 additions and 0 deletions

View File

@ -41,5 +41,6 @@ let
myR = prev.rWrapper.override { packages = with prev.rPackages; [ ggplot2 lintr tikzDevice rlang ]; };
ledgerTools = callPackage ./ledger-tools { };
tea = callPackage ./tea.nix {};
};
in _self

19
tea.nix Normal file
View File

@ -0,0 +1,19 @@
{ lib, fetchurl, buildGoModule }:
buildGoModule rec {
pname = "tea";
version = "0.6.0";
src = fetchurl {
url = "https://gitea.com/gitea/tea/archive/v${version}.tar.gz";
sha256 = "BI5iNYhb7GpFyiL7qVsWPR1ktoPy9BycYzmqzHVB+Gk=";
};
vendorSha256 = "2bHmXSQ7XnfeBSrU+d+x9jRL7wQ3QZbrKLoZgJ9Nyv4=";
subPackages = [ "." ];
meta = with lib; {
description = "Gitea command-line client written in Go";
homepage = "https://gitea.com/gitea/tea";
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
};
}