···1+{ lib, buildGoModule, fetchFromGitHub }:
2+3+buildGoModule rec {
4+ pname = "tfk8s";
5+ version = "0.1.0";
6+7+ src = fetchFromGitHub {
8+ owner = "jrhouston";
9+ repo = "tfk8s";
10+ rev = version;
11+ sha256 = "sha256-JzTWbkICOIfsHgMvpXz4bIWaXKKDAD8INSorMvnXiBw=";
12+ };
13+14+ vendorSha256 = "sha256-r0c3y+nRc/hCTAT31DasQjxZN86BT8jnJmsLM7Ugrq4=";
15+ runVend = true;
16+17+ buildFlagsArray = [
18+ "-ldflags="
19+ "-s"
20+ "-w"
21+ "-X main.toolVersion=${version}"
22+ "-X main.builtBy=nixpkgs"
23+ ];
24+25+ meta = with lib; {
26+ description = "An utility to convert Kubernetes YAML manifests to Terraform's HCL format.";
27+ license = licenses.mit;
28+ longDescription = ''
29+ tfk8s is a tool that makes it easier to work with the Terraform Kubernetes Provider.
30+ If you want to copy examples from the Kubernetes documentation or migrate existing YAML manifests and use them with Terraform without having to convert YAML to HCL by hand, this tool is for you.
31+ Features:
32+ * Convert a YAML file containing multiple manifests.
33+ * Strip out server side fields when piping kubectl get $R -o yaml | tfk8s --strip
34+ '';
35+ homepage = "https://github.com/jrhouston/tfk8s/";
36+ maintainers = with maintainers; [ superherointj ];
37+ };
38+}
···262 google-gflags = gflags; # added 2019-07-25
263 google-music-scripts = throw "google-music-scripts has been removed because Google Play Music was discontinued"; # added 2021-03-07
264 google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # added 2021-03-07
265- google-play-music-desktop-player = throw "google-play-music-desktop-player has been removed because Google Play Music was discontinued"; # added 2021-03-07
266 googleAuthenticator = google-authenticator; # added 2016-10-16
267 grantlee5 = libsForQt5.grantlee; # added 2015-12-19
268 gsettings_desktop_schemas = gsettings-desktop-schemas; # added 2018-02-25
···262 google-gflags = gflags; # added 2019-07-25
263 google-music-scripts = throw "google-music-scripts has been removed because Google Play Music was discontinued"; # added 2021-03-07
264 google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # added 2021-03-07
0265 googleAuthenticator = google-authenticator; # added 2016-10-16
266 grantlee5 = libsForQt5.grantlee; # added 2015-12-19
267 gsettings_desktop_schemas = gsettings-desktop-schemas; # added 2018-02-25