Merge pull request #120721 from diogox/master

frugal: init at 3.14.2
This commit is contained in:
Luke Granger-Brown 2021-05-03 10:49:43 +01:00 committed by GitHub
commit 97d8c5c9de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

View file

@ -2445,6 +2445,12 @@
githubId = 8404455;
name = "Diego Lelis";
};
diogox = {
name = "Diogo Xavier";
email = "13244408+diogox@users.noreply.github.com";
github = "diogox";
githubId = 13244408;
};
dipinhora = {
email = "dipinhora+github@gmail.com";
github = "dipinhora";

View file

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "frugal";
version = "3.14.2";
src = fetchFromGitHub {
owner = "Workiva";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Tcx0jYGKoyBj2vuTJI34TsyCBzXPyccZFqXA8jJNMQI=";
};
subPackages = [ "." ];
vendorSha256 = "sha256-hyupBMRKuw77SJNIk3mEUixV0LV5mEmZx8M70qGmYJY=";
meta = with lib; {
description = "Thrift improved";
homepage = "https://github.com/Workiva/frugal";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ diogox ];
};
}

View file

@ -251,6 +251,8 @@ in
eclipse-mat = callPackage ../development/tools/eclipse-mat { };
frugal = callPackage ../development/tools/frugal { };
glade = callPackage ../development/tools/glade { };
hobbes = callPackage ../development/tools/hobbes { };