Unverified Commit dd4a6a0b authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #265376 from aaronjheng/devspace

devspace: 6.3.3 -> 6.3.4
parents c4c6047b af7d0d24
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
, testers
, devspace
}:

buildGoModule rec {
  pname = "devspace";
  version = "6.3.3";
  version = "6.3.4";

  src = fetchFromGitHub {
    owner = "loft-sh";
    owner = "devspace-sh";
    repo = "devspace";
    rev = "v${version}";
    sha256 = "sha256-xAK06bpl8BGsVUu6O1C2l+tzeiCQoRUMIUtwntUZVvU=";
    hash = "sha256-AKEa9LDe1bLJxJH5k4axALoWkTh+bkBviCpof7x7+fY=";
  };

  vendorHash = null;
@@ -26,10 +28,14 @@ buildGoModule rec {
  # TODO: add a nixosTest to be able to perform the package check
  doCheck = false;

  passthru.tests.version = testers.testVersion {
    package = devspace;
  };

  meta = with lib; {
    description = "DevSpace is an open-source developer tool for Kubernetes that lets you develop and deploy cloud-native software faster";
    description = "An open-source developer tool for Kubernetes that lets you develop and deploy cloud-native software faster";
    homepage = "https://devspace.sh/";
    changelog = "https://github.com/loft-sh/devspace/releases/tag/v${version}";
    changelog = "https://github.com/devspace-sh/devspace/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ darkonion0 ];
  };