summary refs log tree commit diff
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2019-06-23 22:43:23 +0000
committerGitHub <noreply@github.com>2019-06-23 22:43:23 +0000
commit20b993ef2c9e818a636582ade9597f71a485209d (patch)
tree37f3b3b122ed2fcd623c058683de6e00aca3a127
parent7f7687e79f4237fd405b97641c4d860a7190e46b (diff)
parent9635646148681cf82ffe1363a708a16d806e8635 (diff)
downloadnixpkgs-20b993ef2c9e818a636582ade9597f71a485209d.tar
nixpkgs-20b993ef2c9e818a636582ade9597f71a485209d.tar.gz
nixpkgs-20b993ef2c9e818a636582ade9597f71a485209d.tar.bz2
nixpkgs-20b993ef2c9e818a636582ade9597f71a485209d.tar.lz
nixpkgs-20b993ef2c9e818a636582ade9597f71a485209d.tar.xz
nixpkgs-20b993ef2c9e818a636582ade9597f71a485209d.tar.zst
nixpkgs-20b993ef2c9e818a636582ade9597f71a485209d.zip
ksonnet: remove package (#63702)
The team behind ksonnet was aquired by VMware, and they decided to end
work on ksonnet:

From https://blogs.vmware.com/cloudnative/2019/02/05/welcoming-heptio-open-source-projects-to-vmware:

> Prior to the acquisition, Heptio had been shifting focus and resources
> away from ksonnet; with the acquisition, we felt it was the right time
> to rethink our investment in ksonnet. As a result, work on ksonnet will
> end and the GitHub repositories will be archived. It’s extremely
> difficult to step back from a project we have worked so hard on, but
> we’re excited about our new ideas and vision for changing how developers
> experience the Kubernetes and cloud native ecosystems.
-rw-r--r--pkgs/applications/networking/cluster/ksonnet/default.nix23
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/applications/networking/cluster/ksonnet/default.nix b/pkgs/applications/networking/cluster/ksonnet/default.nix
deleted file mode 100644
index b8bce931523..00000000000
--- a/pkgs/applications/networking/cluster/ksonnet/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ lib, buildGoPackage, fetchFromGitHub, ... }:
-
-buildGoPackage rec {
-  version = "0.11.0";
-  name = "ksonnet-${version}";
-
-  src = fetchFromGitHub {
-    owner = "ksonnet";
-    repo = "ksonnet";
-    rev = "v${version}";
-    sha256 = "0z7gkgcsiclm72bznmzv5jcgx5rblndcsiqc0r2mwhxhmv19bs04";
-  };
-
-  goPackagePath = "github.com/ksonnet/ksonnet";
-
-  meta = {
-    description = "A CLI-supported framework that streamlines writing and deployment of Kubernetes configurations to multiple clusters";
-    homepage = https://github.com/ksonnet/ksonnet;
-    license = lib.licenses.asl20;
-    maintainers = with lib.maintainers; [ flokli ];
-    platforms = lib.platforms.unix;
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index cdb03706fad..4ff4c5c3b89 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -18761,8 +18761,6 @@ in
 
   ktorrent = libsForQt5.callPackage ../applications/networking/p2p/ktorrent { };
 
-  ksonnet = callPackage ../applications/networking/cluster/ksonnet { };
-
   kubecfg = callPackage ../applications/networking/cluster/kubecfg { };
 
   kubeval = callPackage ../applications/networking/cluster/kubeval { };