Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6ad76ff1ba73
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cec337d50fc2
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 19, 2019

  1. Copy the full SHA
    94c268c View commit details

Commits on Mar 9, 2019

  1. Copy the full SHA
    3c3ccae View commit details
  2. Merge pull request #55403 from xtruder/pkgs/hetzner-kube/0.3.2rc1

    hetzner-kube: 0.3.1 -> 0.3.2rc1
    worldofpeace authored Mar 9, 2019
    Copy the full SHA
    cec337d View commit details
Showing with 262 additions and 6 deletions.
  1. +7 −6 pkgs/applications/networking/cluster/hetzner-kube/default.nix
  2. +255 −0 pkgs/applications/networking/cluster/hetzner-kube/deps.nix
13 changes: 7 additions & 6 deletions pkgs/applications/networking/cluster/hetzner-kube/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{ lib, buildGoPackage, fetchFromGitHub, ... }:

let version = "0.3.1"; in

buildGoPackage {
name = "hetzner-kube-${version}";
buildGoPackage rec {
pname = "hetzner-kube";
version = "0.3.2-rc1";

src = fetchFromGitHub {
owner = "xetys";
repo = "hetzner-kube";
rev = "${version}";
sha256 = "1xldh1ca8ym8cg3w5cxizmhqxwi5kmiin28f320mxdr28fzljc2w";
rev = version;
sha256 = "16pzcpcr98rcrv5k57fa7h9a82wiv4p2ckhkmisynkr7f1xk60mw";
};

goPackagePath = "github.com/xetys/hetzner-kube";
subPackages = ["."];
goDeps = ./deps.nix;

meta = {
description = "A CLI tool for provisioning Kubernetes clusters on Hetzner Cloud";
255 changes: 255 additions & 0 deletions pkgs/applications/networking/cluster/hetzner-kube/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.