lol

Merge pull request #236748 from thoughtpolice/nixpkgs/revert-gvisor-update

gvisor: revert #235852

authored by

Pol Dellaiera and committed by
GitHub
a9fa8f84 76bfd4ef

+4 -15
+4 -15
pkgs/applications/virtualization/gvisor/default.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "gvisor"; 12 - version = "20230529.0"; 12 + version = "20221102.1"; 13 13 14 14 # gvisor provides a synthetic go branch (https://github.com/google/gvisor/tree/go) 15 15 # that can be used to build gvisor without bazel. 16 - # 17 16 # For updates, you should stick to the commits labeled "Merge release-** (automated)" 18 - # Make sure to check that the tagged commit for a release aligns with the version in 19 - # the message for good measure; e.g. the commit 20 - # 21 - # 142d38d770a07291877dc0d50b88b719dbef76dc is "Merge release-20230522.0-11-g919cfd12b (automated)" 22 - # 23 - # on the 'go' branch. But the mentioned commit, 919cfd12b..., is actually tagged as release-20230529.0 24 - # 25 - # https://github.com/google/gvisor/releases/tag/release-202329.0 26 - # 27 - # Presumably this is a result of the release process. Handle with care. 28 17 29 18 src = fetchFromGitHub { 30 19 owner = "google"; 31 20 repo = "gvisor"; 32 - rev = "142d38d770a07291877dc0d50b88b719dbef76dc"; 33 - hash = "sha256-Ukcjlz/6iUmDAUpQpIVfZHKbwK90Mt6fukcFaw64hQI="; 21 + rev = "bf8eeee3a9eb966bc72c773da060a3c8bb73b8ff"; 22 + sha256 = "sha256-rADQsJ+AnBVlfQURGJl1xR6Ad5NyRWSrBSpOFMRld+o="; 34 23 }; 35 24 36 - vendorHash = "sha256-COr47mZ4tsbzMjkv63l+fexo0RL5lrBXeewak9CuZVk="; 25 + vendorSha256 = "sha256-iGLWxx/Kn1QaJTNOZcc+mwoF3ecEDOkaqmA0DH4pdgU="; 37 26 38 27 nativeBuildInputs = [ makeWrapper ]; 39 28