odo: init at 2.5.0

This commit is contained in:
Stephan Heßelmann 2022-02-23 15:23:38 +01:00
parent 119a68e2df
commit dfdc78785e
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib, buildGoModule, fetchFromGitHub, testVersion, odo }:
buildGoModule rec {
pname = "odo";
version = "2.5.0";
src = fetchFromGitHub {
owner = "redhat-developer";
repo = "odo";
rev = "v${version}";
sha256 = "KYJkCoF80UPsebWwxpc5gIfmT3Aj4OU8r6dDkaWXqbY=";
};
vendorSha256 = null;
buildPhase = ''
make bin
'';
installPhase = ''
mkdir -p $out/bin
cp -a odo $out/bin
'';
passthru.tests.version = testVersion {
package = odo;
command = "odo version";
version = "v${version}";
};
meta = with lib; {
description = "Developer-focused CLI for OpenShift and Kubernetes";
license = licenses.asl20;
homepage = "odo.dev";
maintainers = with maintainers; [ stehessel ];
platforms = platforms.unix;
};
}

View file

@ -27624,6 +27624,8 @@ with pkgs;
ocenaudio = callPackage ../applications/audio/ocenaudio { };
odo = callPackage ../applications/networking/cluster/odo { };
onlyoffice-bin = callPackage ../applications/office/onlyoffice-bin { };
open-policy-agent = callPackage ../development/tools/open-policy-agent { };