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
574 B
Nix
Raw Normal View History

2021-04-30 13:53:37 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "frugal";
2023-07-02 17:56:20 +00:00
version = "3.16.24";
2021-04-30 13:53:37 +00:00
src = fetchFromGitHub {
owner = "Workiva";
repo = pname;
rev = "v${version}";
2023-07-02 17:56:20 +00:00
sha256 = "sha256-DXdecPsxYE12YkOn6acuai+mbqNkzZUEXEw1+ZcJlt8=";
2021-04-30 13:53:37 +00:00
};
subPackages = [ "." ];
2023-07-02 17:56:20 +00:00
vendorHash = "sha256-9ZWK5xw2onwm9F/o/upGuo080X6neXUrSF+0WR+FpCs=";
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 ];
};
}