571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
32 lines
845 B
Nix
32 lines
845 B
Nix
{ lib, buildGoModule, fetchFromGitHub, testers, terraform-inventory }:
|
|
|
|
buildGoModule rec {
|
|
pname = "terraform-inventory";
|
|
version = "0.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adammck";
|
|
repo = "terraform-inventory";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-gkSDxcBoYmCBzkO8y1WKcRtZdfl8w5qVix0zbyb4Myo=";
|
|
};
|
|
|
|
vendorHash = "sha256-pj9XLzaGU1PuNnpTL/7XaKJZUymX+i8hFMroZtHIqTc=";
|
|
|
|
ldflags = [ "-s" "-w" "-X main.build_version=${version}" ];
|
|
|
|
doCheck = false;
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = terraform-inventory;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/adammck/terraform-inventory";
|
|
description = "Terraform state to ansible inventory adapter";
|
|
mainProgram = "terraform-inventory";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ htr ];
|
|
};
|
|
}
|