nixVersions.nix_2_13: init at 2.13.1

https://github.com/NixOS/nix/releases/tag/2.13.0
https://github.com/NixOS/nix/releases/tag/2.13.1

zowoq 3cec8c7f 2b175a1e

+9
+4
pkgs/tools/package-management/nix/common.nix
··· 11 11 atLeast25 = lib.versionAtLeast version "2.5pre"; 12 12 atLeast27 = lib.versionAtLeast version "2.7pre"; 13 13 atLeast210 = lib.versionAtLeast version "2.10pre"; 14 + atLeast213 = lib.versionAtLeast version "2.13pre"; 14 15 in 15 16 { stdenv 16 17 , autoconf-archive ··· 37 38 , libsodium 38 39 , lowdown 39 40 , mdbook 41 + , mdbook-linkcheck 40 42 , nlohmann_json 41 43 , openssl 42 44 , perl ··· 83 85 ] ++ lib.optionals (atLeast24 && enableDocumentation) [ 84 86 (lib.getBin lowdown) 85 87 mdbook 88 + ] ++ lib.optionals (atLeast213 && enableDocumentation) [ 89 + mdbook-linkcheck 86 90 ] ++ lib.optionals stdenv.isLinux [ 87 91 util-linuxMinimal 88 92 ];
+5
pkgs/tools/package-management/nix/default.nix
··· 106 106 ]; 107 107 }; 108 108 109 + nix_2_13 = common { 110 + version = "2.13.1"; 111 + sha256 = "sha256-uXh4+xjJUHQSCg+LHh6+SSYtMdjKQiTXMZ4uZFwzdq4="; 112 + }; 113 + 109 114 stable = self.nix_2_12; 110 115 111 116 unstable = self.stable;