nixpkgs/pkgs/development/tools/misc/k2tf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
641 B
Nix
Raw Normal View History

2021-02-25 12:43:45 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "k2tf";
2022-07-28 17:33:44 +00:00
version = "0.7.0";
2021-02-25 12:43:45 +00:00
src = fetchFromGitHub {
owner = "sl1pm4t";
repo = pname;
rev = "v${version}";
2022-07-28 17:33:44 +00:00
sha256 = "sha256-zkkRzCTZCvbwBj4oIhTo5d3PvqLMJPzT3zV9jU3PEJs=";
2021-02-25 12:43:45 +00:00
};
2022-07-28 17:33:44 +00:00
vendorSha256 = "sha256-iCRiBCppqCZrCUQipoVgc4jUnLkX6QVFjxI6sv6n7tU=";
2021-02-25 12:43:45 +00:00
2021-08-26 06:45:51 +00:00
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=v${version}" ];
2021-02-25 12:43:45 +00:00
meta = with lib; {
description = "Kubernetes YAML to Terraform HCL converter";
homepage = "https://github.com/sl1pm4t/k2tf";
license = licenses.mpl20;
maintainers = [ maintainers.flokli ];
};
}