Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
8cebf1dc eb499aa2

+28 -11
+3 -3
nixos/doc/manual/release-notes/rl-2105.xml
··· 731 </para> 732 733 <para> 734 - Aditionally to the much stricter runtime environmet the 735 - <literal>/dev/urandom</literal> mount lines we previously had in the code (that would 736 randomly failed during the stop-phase) have been removed as systemd will take care of those for us. 737 </para> 738 ··· 820 <listitem> 821 <para> 822 Platforms, like <varname>stdenv.hostPlatform</varname>, no longer have a <varname>platform</varname> attribute. 823 - It has been (mostly) flattoned away: 824 </para> 825 <itemizedlist> 826 <listitem><para><varname>platform.gcc</varname> is now <varname>gcc</varname></para></listitem>
··· 731 </para> 732 733 <para> 734 + Additionally to the much stricter runtime environment the 735 + <literal>/dev/urandom</literal> mount lines we previously had in the code (that 736 randomly failed during the stop-phase) have been removed as systemd will take care of those for us. 737 </para> 738 ··· 820 <listitem> 821 <para> 822 Platforms, like <varname>stdenv.hostPlatform</varname>, no longer have a <varname>platform</varname> attribute. 823 + It has been (mostly) flattened away: 824 </para> 825 <itemizedlist> 826 <listitem><para><varname>platform.gcc</varname> is now <varname>gcc</varname></para></listitem>
+2 -2
pkgs/applications/version-management/bumpver/default.nix
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "bumpver"; 5 - version = "2020.1108"; 6 7 src = python3.pkgs.fetchPypi { 8 inherit pname version; 9 - sha256 = "1bhbrq8fk8rsr78vq9xjz8v9lgv571va0nmg86dwmv6qnj6dymzm"; 10 }; 11 12 prePatch = ''
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "bumpver"; 5 + version = "2021.1110"; 6 7 src = python3.pkgs.fetchPypi { 8 inherit pname version; 9 + sha256 = "b6a0ddb78db7e00ae7ffe895bf8ef97f91e6310dfc1c4721896bdfd044b1cb03"; 10 }; 11 12 prePatch = ''
+17
pkgs/development/libraries/zziplib/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , cmake 5 , perl 6 , pkg-config ··· 20 rev = "v${version}"; 21 hash = "sha256-Ht3fBgdrTm4mCi5uhgQPNtpGzADoRVOpSuGPsIS6y0Q="; 22 }; 23 24 nativeBuildInputs = [ 25 cmake
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 + , fetchpatch 5 , cmake 6 , perl 7 , pkg-config ··· 21 rev = "v${version}"; 22 hash = "sha256-Ht3fBgdrTm4mCi5uhgQPNtpGzADoRVOpSuGPsIS6y0Q="; 23 }; 24 + 25 + patches = [ 26 + # apply https://github.com/gdraheim/zziplib/pull/113 27 + (fetchpatch { 28 + url = "https://github.com/gdraheim/zziplib/commit/82a7773cd17828a3b0a4f5f552ae80c1cc8777c7.diff"; 29 + sha256 = "0ifqdzxwb5d19mziy9j6lhl8wj95jpxzm0d2c6y3bgwa931avd3y"; 30 + }) 31 + (fetchpatch { 32 + url = "https://github.com/gdraheim/zziplib/commit/1cd611514c5f9559eb9dfc191d678dfc991f66db.diff"; 33 + sha256 = "11w9qa46xq49l113k266dnv8izzdk1fq4y54yy5w8zps8zd3xfny"; 34 + }) 35 + (fetchpatch { 36 + url = "https://github.com/gdraheim/zziplib/commit/e47b1e1da952a92f917db6fb19485b8a0b1a42f3.diff"; 37 + sha256 = "0d032hkmi3s3db12z2zbppl2swa3gdpbj0c6w13ylv2g2ixglrwg"; 38 + }) 39 + ]; 40 41 nativeBuildInputs = [ 42 cmake
+1 -1
pkgs/development/tools/rubocop/Gemfile.lock
··· 8 rainbow (3.0.0) 9 regexp_parser (2.1.1) 10 rexml (3.2.4) 11 - rubocop (1.11.0) 12 parallel (~> 1.10) 13 parser (>= 3.0.0.0) 14 rainbow (>= 2.2.2, < 4.0)
··· 8 rainbow (3.0.0) 9 regexp_parser (2.1.1) 10 rexml (3.2.4) 11 + rubocop (1.12.0) 12 parallel (~> 1.10) 13 parser (>= 3.0.0.0) 14 rainbow (>= 2.2.2, < 4.0)
+2 -2
pkgs/development/tools/rubocop/gemset.nix
··· 66 platforms = []; 67 source = { 68 remotes = ["https://rubygems.org"]; 69 - sha256 = "0zrzsgx35mcr81c51gyx63s7yngcfgk33dbkx5j0npkaks4fcm7r"; 70 type = "gem"; 71 }; 72 - version = "1.11.0"; 73 }; 74 rubocop-ast = { 75 dependencies = ["parser"];
··· 66 platforms = []; 67 source = { 68 remotes = ["https://rubygems.org"]; 69 + sha256 = "1i3y0h6awywx4rdmjdan908jmnyk589pndbjypxkfbkqvjx514fw"; 70 type = "gem"; 71 }; 72 + version = "1.12.0"; 73 }; 74 rubocop-ast = { 75 dependencies = ["parser"];
+3 -3
pkgs/tools/games/ajour/default.nix
··· 34 35 in rustPlatform.buildRustPackage rec { 36 pname = "Ajour"; 37 - version = "0.7.2"; 38 39 src = fetchFromGitHub { 40 owner = "casperstorm"; 41 repo = "ajour"; 42 rev = version; 43 - sha256 = "052qckag9vzcx6472pyk1324jq4qib0isx33z3m1m4923ydanbcz"; 44 }; 45 46 - cargoSha256 = "1nsvx445jrycggidnynn9glpjjm5sh8nwsvqwyyd54k9xb4rqgj1"; 47 48 nativeBuildInputs = [ 49 autoPatchelfHook
··· 34 35 in rustPlatform.buildRustPackage rec { 36 pname = "Ajour"; 37 + version = "1.0.0"; 38 39 src = fetchFromGitHub { 40 owner = "casperstorm"; 41 repo = "ajour"; 42 rev = version; 43 + sha256 = "sha256-u48U4WGlrSl8T3YF7cjApyjNaUI4YyyHEy0TgJw7r/Y="; 44 }; 45 46 + cargoSha256 = "sha256-Hdid70AB4AKtSsQBsr6K/de4nvI3rvghEWIwM7mpRIA="; 47 48 nativeBuildInputs = [ 49 autoPatchelfHook