mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
kube-aws: init at 0.8.1
This commit is contained in:
parent
b7b2019e62
commit
274ff94974
2 changed files with 32 additions and 0 deletions
30
pkgs/development/tools/kube-aws/default.nix
Normal file
30
pkgs/development/tools/kube-aws/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, lib, fetchFromGitHub, buildGoPackage }:
|
||||
|
||||
with lib;
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "kube-aws-${version}";
|
||||
version = "0.8.1";
|
||||
|
||||
goPackagePath = "github.com/coreos/coreos-kubernetes";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "coreos";
|
||||
repo = "coreos-kubernetes";
|
||||
rev = "v${version}";
|
||||
sha256 = "067nc525km0f37w5km44fs5pr22a6zz3lkdwwg2akb4hhg6f45c2";
|
||||
};
|
||||
|
||||
preBuild = ''
|
||||
(cd go/src/github.com/coreos/coreos-kubernetes
|
||||
go generate multi-node/aws/pkg/config/config.go)
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Tool for deploying kubernetes on aws using coreos";
|
||||
license = licenses.asl20;
|
||||
homepage = https://github.com/coreos/coreos-kubernetes;
|
||||
maintainers = with maintainers; [offline];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
|
@ -6513,6 +6513,8 @@ in
|
|||
|
||||
kcov = callPackage ../development/tools/analysis/kcov { };
|
||||
|
||||
kube-aws = callPackage ../development/tools/kube-aws { };
|
||||
|
||||
lcov = callPackage ../development/tools/analysis/lcov { };
|
||||
|
||||
leiningen = callPackage ../development/tools/build-managers/leiningen { };
|
||||
|
|
Loading…
Reference in a new issue