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

2021-04-30 13:53:37 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "frugal";
2022-07-28 12:09:44 +00:00
version = "3.16.1";
2021-04-30 13:53:37 +00:00
src = fetchFromGitHub {
owner = "Workiva";
repo = pname;
rev = "v${version}";
2022-07-28 12:09:44 +00:00
sha256 = "sha256-u8+4wBadgyzw1XfZChmI/K2nkSoRZ0Yp+Q8V7NrDQ3E=";
2021-04-30 13:53:37 +00:00
};
subPackages = [ "." ];
2022-07-28 12:09:44 +00:00
vendorSha256 = "sha256-QtF2MdZCO6CsoRD25yaQ6h8n/j/9fHogJaVZNQ2RbDs=";
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 ];
};
}