about summary refs log tree commit diff
path: root/pkgs/applications/editors/micro
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2023-09-07 13:43:25 +0800
committerAaron Jheng <wentworth@outlook.com>2023-09-07 13:43:25 +0800
commit84e0ab64db497118126ee7c3c478d3be65598a77 (patch)
treec93e13e68c29883a28944af8860d29b49df4689d /pkgs/applications/editors/micro
parentb200e0df08f80c32974a6108ce431d8a8a5e6547 (diff)
micro: 2.0.11 -> 2.0.12
Diffstat (limited to 'pkgs/applications/editors/micro')
-rw-r--r--pkgs/applications/editors/micro/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/editors/micro/default.nix b/pkgs/applications/editors/micro/default.nix
index d4dbb4d97cca1..964c81a6c4248 100644
--- a/pkgs/applications/editors/micro/default.nix
+++ b/pkgs/applications/editors/micro/default.nix
@@ -2,21 +2,21 @@
 
 buildGoModule rec {
   pname = "micro";
-  version = "2.0.11";
+  version = "2.0.12";
 
   src = fetchFromGitHub {
     owner = "zyedidia";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-3Rppi8UcAc4zdXOd81Y+sb5Psezx2TQsNw73WdPVMgE=";
+    hash = "sha256-L8yJE3rjNcx+1gawQ8urZcFfoQdO20E67mJQjWaVwVo=";
   };
 
+  vendorHash = "sha256-h00s+xqepj+odKAgf54s35xMnnj3gtx5LWDOYFx5GY0=";
+
   nativeBuildInputs = [ installShellFiles ];
 
   subPackages = [ "cmd/micro" ];
 
-  vendorSha256 = "sha256-/bWIn5joZOTOtuAbljOc0NgBfjrFkbFZih+cPNHnS9w=";
-
   ldflags = let t = "github.com/zyedidia/micro/v2/internal"; in [
     "-s"
     "-w"
@@ -34,7 +34,7 @@ buildGoModule rec {
     install -Dm644 assets/micro-logo-mark.svg $out/share/icons/hicolor/scalable/apps/micro.svg
   '';
 
-  passthru.tests.expect = callPackage ./test-with-expect.nix {};
+  passthru.tests.expect = callPackage ./test-with-expect.nix { };
 
   meta = with lib; {
     homepage = "https://micro-editor.github.io";