2021-04-30 13:53:37 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "frugal";
|
2022-02-23 05:47:37 +00:00
|
|
|
version = "3.14.15";
|
2021-04-30 13:53:37 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Workiva";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-02-23 05:47:37 +00:00
|
|
|
sha256 = "sha256-7840HndsU5+mWKQ/HXLVYA2dV7L8NlM7so1nk8Zdc2c=";
|
2021-04-30 13:53:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2022-02-16 21:23:56 +00:00
|
|
|
vendorSha256 = "sha256-vWqj2fRtaDextDstIb5GrdRn4nxQpCfjegYiVbPILuM=";
|
2021-04-30 13:53:37 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Thrift improved";
|
|
|
|
homepage = "https://github.com/Workiva/frugal";
|
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
maintainers = with maintainers; [ diogox ];
|
|
|
|
};
|
|
|
|
}
|