···95 result with the specified separator interspersed between
96 elements.
9798- Type: concatMapStringsSep :: string -> (string -> string) -> [string] -> string
99100 Example:
101 concatMapStringsSep "-" (x: toUpper x) ["foo" "bar" "baz"]
···112 /* Same as `concatMapStringsSep`, but the mapping function
113 additionally receives the position of its argument.
114115- Type: concatIMapStringsSep :: string -> (int -> string -> string) -> [string] -> string
116117 Example:
118 concatImapStringsSep "-" (pos: x: toString (x / pos)) [ 6 6 6 ]
···95 result with the specified separator interspersed between
96 elements.
9798+ Type: concatMapStringsSep :: string -> (a -> string) -> [a] -> string
99100 Example:
101 concatMapStringsSep "-" (x: toUpper x) ["foo" "bar" "baz"]
···112 /* Same as `concatMapStringsSep`, but the mapping function
113 additionally receives the position of its argument.
114115+ Type: concatIMapStringsSep :: string -> (int -> a -> string) -> [a] -> string
116117 Example:
118 concatImapStringsSep "-" (pos: x: toString (x / pos)) [ 6 6 6 ]
+2-2
nixos/doc/manual/installation/installing.xml
···446 password for the <literal>root</literal> user, e.g.
447<screen>
448setting root password...
449-Enter new UNIX password: ***
450-Retype new UNIX password: ***</screen>
451 <note>
452 <para>
453 For unattended installations, it is possible to use
···446 password for the <literal>root</literal> user, e.g.
447<screen>
448setting root password...
449+New password: ***
450+Retype new password: ***</screen>
451 <note>
452 <para>
453 For unattended installations, it is possible to use
···3839 # Various tests try to access credential files which are not included with the source distribution
40 disabledTests = [
41- "test_iam" "test_cwd" "test_configure_service" "test_get_authenticator"
42- "test_read_external_sources_2" "test_files_duplicate_parts" "test_files_list"
43- "test_files_dict" "test_retry_config_external" "test_gzip_compression_external"
0000000044 ];
4546 meta = with lib; {
···3839 # Various tests try to access credential files which are not included with the source distribution
40 disabledTests = [
41+ "test_configure_service"
42+ "test_cp4d_authenticator"
43+ "test_cwd"
44+ "test_files_dict"
45+ "test_files_duplicate_parts"
46+ "test_files_list"
47+ "test_get_authenticator"
48+ "test_gzip_compression_external"
49+ "test_iam"
50+ "test_read_external_sources_2"
51+ "test_retry_config_external"
52 ];
5354 meta = with lib; {
···23rustPlatform.buildRustPackage rec {
4 pname = "cargo-bloat";
5- version = "0.10.0";
67 src = fetchFromGitHub {
8 owner = "RazrFalcon";
9 repo = pname;
10 rev = "v${version}";
11- sha256 = "0bqzzh8vfqm7dpnb0fv4calnhsg9p3c5j06ycvg621p4zp4fydh2";
12 };
1314- cargoSha256 = "0f7hmwrs99qdvhn4lvs8cqva68w2y04fy3ca1xlhk7ncdmclcc4g";
1516 meta = with lib; {
17 description = "A tool and Cargo subcommand that helps you find out what takes most of the space in your executable";
···23rustPlatform.buildRustPackage rec {
4 pname = "cargo-bloat";
5+ version = "0.10.1";
67 src = fetchFromGitHub {
8 owner = "RazrFalcon";
9 repo = pname;
10 rev = "v${version}";
11+ sha256 = "sha256-VcdZ/dKqFFQs8ItNEj407z1pWJqpHwwIsuNnsQ8KU/8=";
12 };
1314+ cargoSha256 = "sha256-1TIGv0yVhkhThqZiQW9JrvFd0eouTlr8kgN/g7b4vDM=";
1516 meta = with lib; {
17 description = "A tool and Cargo subcommand that helps you find out what takes most of the space in your executable";