summary refs log blame commit diff
path: root/pkgs/development/tools/frugal/default.nix
blob: c8339fe6d8510c2a2fcac78513809673d33747a5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                        
                     




                         
                                                                   












                                                                       
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "frugal";
  version = "3.14.4";

  src = fetchFromGitHub {
    owner = "Workiva";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-RFVn5aL5MqsB7heDPVUci3Eyq6F/qo3RmdEaZbsC+Ng=";
  };

  subPackages = [ "." ];

  vendorSha256 = "sha256-hyupBMRKuw77SJNIk3mEUixV0LV5mEmZx8M70qGmYJY=";

  meta = with lib; {
    description = "Thrift improved";
    homepage = "https://github.com/Workiva/frugal";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ diogox ];
  };
}