nixpkgs/pkgs/development/tools/frugal/default.nix

25 lines
575 B
Nix
Raw Normal View History

2021-04-30 13:53:37 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "frugal";
2021-05-05 16:53:59 +00:00
version = "3.14.4";
2021-04-30 13:53:37 +00:00
src = fetchFromGitHub {
owner = "Workiva";
repo = pname;
rev = "v${version}";
2021-05-05 16:53:59 +00:00
sha256 = "sha256-RFVn5aL5MqsB7heDPVUci3Eyq6F/qo3RmdEaZbsC+Ng=";
2021-04-30 13:53:37 +00:00
};
subPackages = [ "." ];
vendorSha256 = "sha256-hyupBMRKuw77SJNIk3mEUixV0LV5mEmZx8M70qGmYJY=";
meta = with lib; {
description = "Thrift improved";
homepage = "https://github.com/Workiva/frugal";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ diogox ];
};
}