Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

devspace: 6.3.3 -> 6.3.4

+11 -5
+11 -5
pkgs/development/tools/misc/devspace/default.nix
··· 1 1 { lib 2 2 , buildGoModule 3 3 , fetchFromGitHub 4 + , testers 5 + , devspace 4 6 }: 5 7 6 8 buildGoModule rec { 7 9 pname = "devspace"; 8 - version = "6.3.3"; 10 + version = "6.3.4"; 9 11 10 12 src = fetchFromGitHub { 11 - owner = "loft-sh"; 13 + owner = "devspace-sh"; 12 14 repo = "devspace"; 13 15 rev = "v${version}"; 14 - sha256 = "sha256-xAK06bpl8BGsVUu6O1C2l+tzeiCQoRUMIUtwntUZVvU="; 16 + hash = "sha256-AKEa9LDe1bLJxJH5k4axALoWkTh+bkBviCpof7x7+fY="; 15 17 }; 16 18 17 19 vendorHash = null; ··· 26 28 # TODO: add a nixosTest to be able to perform the package check 27 29 doCheck = false; 28 30 31 + passthru.tests.version = testers.testVersion { 32 + package = devspace; 33 + }; 34 + 29 35 meta = with lib; { 30 - description = "DevSpace is an open-source developer tool for Kubernetes that lets you develop and deploy cloud-native software faster"; 36 + description = "An open-source developer tool for Kubernetes that lets you develop and deploy cloud-native software faster"; 31 37 homepage = "https://devspace.sh/"; 32 - changelog = "https://github.com/loft-sh/devspace/releases/tag/v${version}"; 38 + changelog = "https://github.com/devspace-sh/devspace/releases/tag/v${version}"; 33 39 license = licenses.asl20; 34 40 maintainers = with maintainers; [ darkonion0 ]; 35 41 };