coder: 0.12.5 -> 0.13.1 (#204244)

Co-authored-by: Colin Arnott <github@urandom.co.uk>
This commit is contained in:
Geoffrey Huntley 2022-12-09 06:47:23 +10:00 committed by GitHub
parent 20d1af6df8
commit 3ec264787f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,19 +5,19 @@
}:
buildGoModule rec {
pname = "coder";
version = "0.12.5";
version = "0.13.1";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
hash = "sha256-tPpWj2MV2LLIOGq+RTpHpLozgqv7gBgYD3jjehRXOvk=";
hash = "sha256-85eH3gKn1khMiksA/kL+fHt1WiaOzVntYCiL1PR/0Cg=";
};
# integration tests require network access
doCheck = false;
vendorHash = "sha256-3SStGCDpo+AS4PM9mbXM0EjsJ/3CVFQyb/NRK9RSZ3A=";
vendorHash = "sha256-tdqqGM2b8un4BFtvRJsmiIGdb1AOKP8XxcgGg2DilXA=";
nativeBuildInputs = [ installShellFiles ];
@ -29,9 +29,9 @@ buildGoModule rec {
'';
meta = with lib; {
description = "Remote development environments on your infrastructure provisioned with Terraform";
description = "Provision software development environments via Terraform on Linux, macOS, Windows, X86, ARM, and of course, Kubernetes";
homepage = "https://coder.com";
license = licenses.agpl3;
maintainers = with maintainers; [ urandom ];
maintainers = with maintainers; [ ghuntley urandom ];
};
}