devspace 6.3.5 -> 6.3.7 https://repology.org/project/devspace/versions attrpath: devspace Checking auto update branch... No auto update branch exists Old version 6.3.5" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , testers , devspace }: buildGoModule rec { pname = "devspace"; version = "6.3.7"; src = fetchFromGitHub { owner = "devspace-sh"; repo = "devspace"; rev = "v${version}"; hash = "sha256-pvAN1AbyqVw7zgqjZrNFxdfQLn3lYraQ1o7YZUYy6Y8="; }; vendorHash = null; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; # Check are disable since they requiered a working K8S cluster # 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 = "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/devspace-sh/devspace/releases/tag/v${version}"; license = licenses.asl20; maintainers = with maintainers; [ darkonion0 ]; }; }