3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/frugal/default.nix

25 lines
576 B
Nix
Raw Normal View History

2021-04-30 14:53:37 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "frugal";
2021-12-21 06:37:02 +00:00
version = "3.14.11";
2021-04-30 14:53:37 +01:00
src = fetchFromGitHub {
owner = "Workiva";
repo = pname;
rev = "v${version}";
2021-12-21 06:37:02 +00:00
sha256 = "sha256-XUG9Md6T0/+yn3KGqJO09FFlpuli2wJqOf/SEIVKXac=";
2021-04-30 14:53:37 +01:00
};
subPackages = [ "." ];
2021-10-29 17:26:50 +01:00
vendorSha256 = "sha256-Z42t9dGlNbSwNy2N/ZoEejkbIEeUUk87mcYhkTnxhpc=";
2021-04-30 14:53:37 +01:00
meta = with lib; {
description = "Thrift improved";
homepage = "https://github.com/Workiva/frugal";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ diogox ];
};
}