mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
Merge pull request #127365 from davegallant/infracost-0.9.1
infracost: init at 0.9.1
This commit is contained in:
commit
1bea1daefd
25
pkgs/tools/misc/infracost/default.nix
Normal file
25
pkgs/tools/misc/infracost/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub, terraform }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "infracost";
|
||||
version = "0.9.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "infracost";
|
||||
rev = "v${version}";
|
||||
repo = "infracost";
|
||||
sha256 = "sha256-3dR4NZ1PiMuHNO+xl3zxeBLPOZTLAbJ0VtYJNYpJuXI=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-YHewZsIiDPsgJVYwQX/FovlD+UzJflXy/0oglk8ZkKk=";
|
||||
|
||||
checkInputs = [ terraform ];
|
||||
checkPhase = "make test";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Cloud cost estimates for Terraform in your CLI and pull requests";
|
||||
homepage = "https://github.com/infracost/infracost";
|
||||
license = [ licenses.asl20 ];
|
||||
maintainers = [ maintainers.davegallant ];
|
||||
};
|
||||
}
|
|
@ -12713,6 +12713,8 @@ in
|
|||
|
||||
inav-blackbox-tools = callPackage ../tools/misc/inav-blackbox-tools { };
|
||||
|
||||
infracost = callPackage ../tools/misc/infracost { };
|
||||
|
||||
msp430GccSupport = callPackage ../development/misc/msp430/gcc-support.nix { };
|
||||
|
||||
msp430Newlib = callPackage ../development/misc/msp430/newlib.nix { };
|
||||
|
|
Loading…
Reference in a new issue