about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorBerk D. Demir <bdd@mindcast.org>2022-06-07 00:57:47 +0000
committerBerk D. Demir <bdd@mindcast.org>2022-06-07 00:57:47 +0000
commit1f9c7f33930a657c0c7b0500a097f8c38d474832 (patch)
treeea42b6236323f473e253baf97487eb3a39e5ce4e /pkgs/tools
parent064a605987c0ff66db54b3caa185542c1115dee2 (diff)
runitor: 0.10.0 -> 0.10.1
- New release fixing a nil dereference
- Remove patches that are already part of the new rel
- Rollback ldflags change from #175973
  The -s flag implies -w on every platform but Darwin.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/runitor/default.nix14
1 files changed, 3 insertions, 11 deletions
diff --git a/pkgs/tools/system/runitor/default.nix b/pkgs/tools/system/runitor/default.nix
index 965813f6e3718..1108362010caa 100644
--- a/pkgs/tools/system/runitor/default.nix
+++ b/pkgs/tools/system/runitor/default.nix
@@ -2,26 +2,18 @@
 
 buildGoModule rec {
   pname = "runitor";
-  version = "0.10.0";
+  version = "0.10.1";
   vendorSha256 = null;
 
   src = fetchFromGitHub {
     owner = "bdd";
     repo = "runitor";
     rev = "v${version}";
-    sha256 = "sha256-96WKMeRkkG6en9JXaZjjnqeZOcLSII3knx8cdjTBAKw=";
+    sha256 = "sha256-qqfaA1WAHkuiyzyQbrSvnmwuRXElArErJ6PtLPOxzsg=";
   };
 
   ldflags = [
-    "-s" "-X main.Version=v${version}"
-  ];
-
-  patches = [
-    (fetchpatch {
-      name = "backport_TestPostRetries-timeout-fix.patch";
-      url = "https://github.com/bdd/runitor/commit/418142585a8387224825637cca3fe275d3c3d147.patch";
-      sha256 = "sha256-cl+KYoiHm2ioFuJVKokZkglIzL/NaEd5JNUuj4g8MUg=";
-    })
+    "-s" "-w" "-X main.Version=v${version}"
   ];
 
   passthru.tests.version = testers.testVersion {