commit 3b48b8b22ab2a508ee593a3c5e06bed31fa553cf
parent 366e3a567b7f5b237d3dd40d30bf7322a1202c88
Author: Vincent Demeester <vincent@sbr.pm>
Date: Fri, 14 Oct 2022 12:06:24 +0200
nix/packages: delete ko…
upstream nixpkgs has ko already
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
2 files changed, 0 insertions(+), 26 deletions(-)
diff --git a/nix/packages/default.nix b/nix/packages/default.nix
@@ -28,7 +28,6 @@ rec {
#gogo-protobuf = pkgs.callPackage ./gogo-protobuf {};
gorun = pkgs.callPackage ./gorun { };
govanityurl = pkgs.callPackage ./govanityurl { };
- ko = pkgs.callPackage ./ko { };
kss = pkgs.callPackage ./kss { };
batzconverter = pkgs.callPackage ./batzconverter { };
sugarjazy = pkgs.callPackage ./sugarjazy { };
diff --git a/nix/packages/ko/default.nix b/nix/packages/ko/default.nix
@@ -1,25 +0,0 @@
-{ stdenv, lib, buildGoModule, fetchFromGitHub }:
-
-buildGoModule rec {
- pname = "ko";
- name = "${pname}-${version}";
- version = "0.10.0";
-
- subPackages = [ "cmd/ko" ];
- src = fetchFromGitHub {
- owner = "google";
- repo = "ko";
- rev = "v${version}";
- sha256 = "sha256-Xhe5WNHQ+Oa1m/6VwC3zCwWzXRc1spSfPp4jySsOcuU=";
- };
- vendorSha256 = null;
- # TestGoBuild{,Index} doesn't work because it assumes a .git
- doCheck = false;
-
- meta = with lib; {
- homepage = https://github.com/google/ko;
- description = "Build and deploy Go applications on Kubernetes";
- license = licenses.asl20;
- maintainers = with maintainers; [ vdemeester ];
- };
-}