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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
573 B
Nix
Raw Normal View History

2021-04-30 13:53:37 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "frugal";
2023-12-15 03:58:27 +00:00
version = "3.17.6";
2021-04-30 13:53:37 +00:00
src = fetchFromGitHub {
owner = "Workiva";
repo = pname;
rev = "v${version}";
2023-12-15 03:58:27 +00:00
sha256 = "sha256-N4XcU2D3HE/bQWA70T2XYR5QBsknEr1bgRnfTKgzMiY=";
2021-04-30 13:53:37 +00:00
};
subPackages = [ "." ];
2023-12-15 03:58:27 +00:00
vendorHash = "sha256-KxDtSrtDloUozUKE7pPR5TZsal9TSyA7Ohoe7HC0/VU=";
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 ];
};
}