about summary refs log tree commit diff
path: root/pkgs/kontemplate.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-03-19T12·43+0100
committerVincent Ambo <tazjin@gmail.com>2018-03-19T12·43+0100
commitfc7b24245fb700dd428d4e2e16820ff3d692c4ea (patch)
treecf8dbbff22e3ea6693dbb63aac393d92bb9e4959 /pkgs/kontemplate.nix
parent779227164a8a8c7c91da79c2c8daa131db4939fa (diff)
refactor(pkgs): Install kontemplate from nixpkgs
Kontemplate has been upstreamed into Nix (yay!).
Diffstat (limited to 'pkgs/kontemplate.nix')
-rw-r--r--pkgs/kontemplate.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/kontemplate.nix b/pkgs/kontemplate.nix
deleted file mode 100644
index d6f686dcb8da..000000000000
--- a/pkgs/kontemplate.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-# Install the latest kontemplate version
-with import <nixpkgs> {};
-
-stdenv.mkDerivation {
-  name = "kontemplate-1.3.0";
-
-  src = fetchzip {
-    url = "https://github.com/tazjin/kontemplate/releases/download/v1.3.0/kontemplate-1.3.0-98daa6b-linux-amd64.tar.gz";
-    sha256 = "0byybdc1xli96rxyg3wf7548b055ca355qavi435riwlkmn9c5da";
-  };
-
-  installPhase = ''
-    mkdir -p $out/bin
-    mv kontemplate $out/bin/kontemplate
-  '';
-
-  meta = with stdenv.lib; {
-    description = "Extremely simple Kubernetes resource templates";
-    homepage = "http://kontemplate.works";
-    license = licenses.mit;
-  };
-}