about summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-10-04 23:20:34 +0000
committersterni <sternenseemann@systemli.org>2021-10-05 14:21:51 +0200
commitfc24bb88c3550ca9a362727cf14350201b5e2533 (patch)
treebd0d82683f79efc5522b31e56e26600399689953 /pkgs/tools/system
parente143b6b572d7ce2c791a3737e1a1b0353c9cc2c7 (diff)
s6-rc: fix source hash
The tarball appears to have been re-uploaded, because both
Profpatsch[1] and r-rmcgibbo[2] got the previous hash, but by the time
it got to Hydra, the hash had changed[3].

By getting Profpatsch to send me his cached tarball, and comparing
each to the s6-rc git repo, I've determined that the difference
between them is a fast-forward of 7cadbf1..3d1af07 (summarised below).

So I think we're fine to bump the hash — it looks like some commits
were just mistakenly excluded the first time round.

Laurent Bercot (2):
      Add lock-fd support
      version: 0.5.2.3

 NEWS                                   | 1 +
 src/libs6rc/s6rc_servicedir_internal.c | 1 +
 src/s6-rc/s6-rc-compile.c              | 9 +++++++++
 3 files changed, 11 insertions(+)

[1]: https://github.com/NixOS/nixpkgs/pull/139544
[2]: https://github.com/NixOS/nixpkgs/pull/139544#issuecomment-927332319
[3]: https://hydra.nixos.org/build/154845872
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/s6-rc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/system/s6-rc/default.nix b/pkgs/tools/system/s6-rc/default.nix
index 9404dd26a979a..ab4ea78049421 100644
--- a/pkgs/tools/system/s6-rc/default.nix
+++ b/pkgs/tools/system/s6-rc/default.nix
@@ -5,7 +5,7 @@ with skawarePackages;
 buildPackage {
   pname = "s6-rc";
   version = "0.5.2.3";
-  sha256 = "1f92dxw1n8r8avamixi9k0gqbnkpm0r3fmwzz7jd82g6bb2vsg5z";
+  sha256 = "1xyaplwzvqnb53mg59a7jklakzwsiqivp6qggsry3sbaw4hf3d5j";
 
   description = "A service manager for s6-based systems";
   platforms = lib.platforms.unix;