about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorGeoffrey Huntley <ghuntley@ghuntley.com>2022-12-09 06:47:23 +1000
committerGitHub <noreply@github.com>2022-12-08 21:47:23 +0100
commit3ec264787f88c556e8d7abe745fd21414b109b22 (patch)
tree59b905bd099666a035ec6f116ee8e011daa195c9 /pkgs
parent20d1af6df85dd75bd96e215995fa09a1b843e770 (diff)
coder: 0.12.5 -> 0.13.1 (#204244)
Co-authored-by: Colin Arnott <github@urandom.co.uk>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/coder/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/tools/coder/default.nix b/pkgs/development/tools/coder/default.nix
index 080e73ab2687a..6cc572b87bc17 100644
--- a/pkgs/development/tools/coder/default.nix
+++ b/pkgs/development/tools/coder/default.nix
@@ -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 ];
   };
 }