Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
09eedfc7 feb86eb7

+1500 -792
+64
doc/builders/testers.chapter.md
··· 35 35 }; 36 36 ``` 37 37 38 + ## `testBuildFailure` {#tester-testBuildFailure} 39 + 40 + Make sure that a build does not succeed. This is useful for testing testers. 41 + 42 + This returns a derivation with an override on the builder, with the following effects: 43 + 44 + - Fail the build when the original builder succeeds 45 + - Move `$out` to `$out/result`, if it exists (assuming `out` is the default output) 46 + - Save the build log to `$out/testBuildFailure.log` (same) 47 + 48 + Example: 49 + 50 + ```nix 51 + runCommand "example" { 52 + failed = testers.testBuildFailure (runCommand "fail" {} '' 53 + echo ok-ish >$out 54 + echo failing though 55 + exit 3 56 + ''); 57 + } '' 58 + grep -F 'ok-ish' $failed/result 59 + grep -F 'failing though' $failed/testBuildFailure.log 60 + [[ 3 = $(cat $failed/testBuildFailure.exit) ]] 61 + touch $out 62 + ''; 63 + ``` 64 + 65 + While `testBuildFailure` is designed to keep changes to the original builder's 66 + environment to a minimum, some small changes are inevitable. 67 + 68 + - The file `$TMPDIR/testBuildFailure.log` is present. It should not be deleted. 69 + - `stdout` and `stderr` are a pipe instead of a tty. This could be improved. 70 + - One or two extra processes are present in the sandbox during the original 71 + builder's execution. 72 + - The derivation and output hashes are different, but not unusual. 73 + - The derivation includes a dependency on `buildPackages.bash` and 74 + `expect-failure.sh`, which is built to include a transitive dependency on 75 + `buildPackages.coreutils` and possibly more. These are not added to `PATH` 76 + or any other environment variable, so they should be hard to observe. 77 + 78 + ## `testEqualContents` {#tester-equalContents} 79 + 80 + Check that two paths have the same contents. 81 + 82 + Example: 83 + 84 + ```nix 85 + testers.testEqualContents { 86 + assertion = "sed -e performs replacement"; 87 + expected = writeText "expected" '' 88 + foo baz baz 89 + ''; 90 + actual = runCommand "actual" { 91 + # not really necessary for a package that's in stdenv 92 + nativeBuildInputs = [ gnused ]; 93 + base = writeText "base" '' 94 + foo bar baz 95 + ''; 96 + } '' 97 + sed -e 's/bar/baz/g' $base >$out 98 + ''; 99 + } 100 + ``` 101 + 38 102 ## `testEqualDerivation` {#tester-testEqualDerivation} 39 103 40 104 Checks that two packages produce the exact same build instructions.
+7
maintainers/maintainer-list.nix
··· 4949 4949 githubId = 37017396; 4950 4950 name = "gbtb"; 4951 4951 }; 4952 + gdamjan = { 4953 + email = "gdamjan@gmail.com"; 4954 + matrix = "@gdamjan:spodeli.org"; 4955 + github = "gdamjan"; 4956 + githubId = 81654; 4957 + name = "Damjan Georgievski"; 4958 + }; 4952 4959 gdinh = { 4953 4960 email = "nix@contact.dinh.ai"; 4954 4961 github = "gdinh";
+32 -40
nixos/modules/services/system/dbus.nix
··· 1 1 # D-Bus configuration and system bus daemon. 2 2 3 - { config, lib, options, pkgs, ... }: 4 - 5 - with lib; 3 + { config, lib, pkgs, ... }: 6 4 7 5 let 8 6 ··· 16 14 serviceDirectories = cfg.packages; 17 15 }; 18 16 17 + inherit (lib) mkOption types; 18 + 19 19 in 20 20 21 21 { 22 - ###### interface 23 - 24 22 options = { 25 23 26 24 services.dbus = { ··· 65 63 ''; 66 64 default = "disabled"; 67 65 }; 68 - 69 - socketActivated = mkOption { 70 - type = types.nullOr types.bool; 71 - default = null; 72 - visible = false; 73 - description = lib.mdDoc '' 74 - Removed option, do not use. 75 - ''; 76 - }; 77 66 }; 78 67 }; 79 68 80 - ###### implementation 81 - 82 - config = mkIf cfg.enable { 83 - warnings = optional (cfg.socketActivated != null) ( 84 - let 85 - files = showFiles options.services.dbus.socketActivated.files; 86 - in 87 - "The option 'services.dbus.socketActivated' in ${files} no longer has" 88 - + " any effect and can be safely removed: the user D-Bus session is" 89 - + " now always socket activated." 90 - ); 91 - 92 - environment.systemPackages = [ pkgs.dbus.daemon pkgs.dbus ]; 69 + config = lib.mkIf cfg.enable { 70 + environment.systemPackages = [ 71 + pkgs.dbus 72 + ]; 93 73 94 74 environment.etc."dbus-1".source = configDir; 95 75 ··· 102 82 103 83 users.groups.messagebus.gid = config.ids.gids.messagebus; 104 84 105 - systemd.packages = [ pkgs.dbus.daemon ]; 85 + systemd.packages = [ 86 + pkgs.dbus 87 + ]; 106 88 107 89 security.wrappers.dbus-daemon-launch-helper = { 108 - source = "${pkgs.dbus.daemon}/libexec/dbus-daemon-launch-helper"; 90 + source = "${pkgs.dbus}/libexec/dbus-daemon-launch-helper"; 109 91 owner = "root"; 110 92 group = "messagebus"; 111 93 setuid = true; ··· 114 96 }; 115 97 116 98 services.dbus.packages = [ 117 - pkgs.dbus.out 99 + pkgs.dbus 118 100 config.system.path 119 101 ]; 120 102 121 103 systemd.services.dbus = { 122 104 # Don't restart dbus-daemon. Bad things tend to happen if we do. 123 105 reloadIfChanged = true; 124 - restartTriggers = [ configDir ]; 125 - environment = { LD_LIBRARY_PATH = config.system.nssModules.path; }; 106 + restartTriggers = [ 107 + configDir 108 + ]; 109 + environment = { 110 + LD_LIBRARY_PATH = config.system.nssModules.path; 111 + }; 126 112 }; 127 113 128 - systemd.user = { 129 - services.dbus = { 130 - # Don't restart dbus-daemon. Bad things tend to happen if we do. 131 - reloadIfChanged = true; 132 - restartTriggers = [ configDir ]; 133 - }; 134 - sockets.dbus.wantedBy = [ "sockets.target" ]; 114 + systemd.user.services.dbus = { 115 + # Don't restart dbus-daemon. Bad things tend to happen if we do. 116 + reloadIfChanged = true; 117 + restartTriggers = [ 118 + configDir 119 + ]; 135 120 }; 136 121 137 - environment.pathsToLink = [ "/etc/dbus-1" "/share/dbus-1" ]; 122 + systemd.user.sockets.dbus.wantedBy = [ 123 + "sockets.target" 124 + ]; 125 + 126 + environment.pathsToLink = [ 127 + "/etc/dbus-1" 128 + "/share/dbus-1" 129 + ]; 138 130 }; 139 131 }
+23 -5
pkgs/applications/editors/notepadqq/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, pkg-config, which, qtbase, qtsvg, qttools, qtwebkit }: 1 + { mkDerivation 2 + , lib 3 + , fetchFromGitHub 4 + , pkg-config 5 + , which 6 + , libuchardet 7 + , qtbase 8 + , qtsvg 9 + , qttools 10 + , qtwebengine 11 + , qtwebsockets 12 + }: 2 13 3 14 mkDerivation rec { 4 15 pname = "notepadqq"; 5 - version = "1.4.8"; 16 + # shipping a beta build as there's no proper release which supports qtwebengine 17 + version = "2.0.0-beta"; 6 18 7 19 src = fetchFromGitHub { 8 20 owner = "notepadqq"; 9 21 repo = "notepadqq"; 10 22 rev = "v${version}"; 11 - sha256 = "0lbv4s7ng31dkznzbkmp2cvkqglmfj6lv4mbg3r410fif2nrva7k"; 23 + sha256 = "sha256-XA9Ay9kJApY+bDeOf0iPv+BWYFuTmIuqsLEPgRTCZCE="; 12 24 }; 13 25 14 26 nativeBuildInputs = [ 15 - pkg-config which qttools 27 + pkg-config 28 + which 29 + qttools 16 30 ]; 17 31 18 32 buildInputs = [ 19 - qtbase qtsvg qtwebkit 33 + libuchardet 34 + qtbase 35 + qtsvg 36 + qtwebengine 37 + qtwebsockets 20 38 ]; 21 39 22 40 preConfigure = ''
+3 -3
pkgs/applications/misc/lscolors/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "lscolors"; 5 - version = "0.12.0"; 5 + version = "0.13.0"; 6 6 7 7 src = fetchCrate { 8 8 inherit version pname; 9 - sha256 = "sha256-1tLI+M2hpXWsiO/x27ncs8zn8dBDx18AgsSbN/YE2Ic="; 9 + sha256 = "sha256-rs/qv6zmSHy2FFiPSgGzxAV/r0SqK9vnfwnLj45WY4I="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-4bFzFztaD9jV3GXpZwCowAhvszedM5ion5/h3D26EY8="; 12 + cargoSha256 = "sha256-WDvflAb56l+UkrxeQQZrloxlaK/mZavT9sA+VOWDW5Q="; 13 13 14 14 # setid is not allowed in the sandbox 15 15 checkFlags = [ "--skip=tests::style_for_setid" ];
+2 -2
pkgs/applications/networking/cluster/werf/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "werf"; 13 - version = "1.2.188"; 13 + version = "1.2.190"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "werf"; 17 17 repo = "werf"; 18 18 rev = "v${version}"; 19 - hash = "sha256-C8y86q+uf+8EZ9kBAZehld7PpGByJLjhYQOrc3YKH1A="; 19 + hash = "sha256-xjZVBLdDLLlfnXX87lwgIeQ6ySI9cNoE5nrRJVBS/l0="; 20 20 }; 21 21 22 22 vendorHash = "sha256-GjcmpHyjhjCWE5gQR/oTHfhHYg5WRu8uhgAuWhdxlYk=";
+57
pkgs/applications/video/go2tv/default.nix
··· 1 + { lib 2 + , stdenv 3 + , buildGoModule 4 + , fetchFromGitHub 5 + , Carbon 6 + , Cocoa 7 + , Kernel 8 + , UserNotifications 9 + , xorg 10 + , libglvnd 11 + , pkg-config 12 + , withGui ? true 13 + }: 14 + 15 + buildGoModule rec { 16 + pname = "go2tv" + lib.optionalString (!withGui) "-lite"; 17 + version = "1.13.0"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "alexballas"; 21 + repo = "go2tv"; 22 + rev = "v${version}"; 23 + sha256 = "sha256-ZHKfBKOX3/kVR6Nc+jSmLgfmpihc6QMb6NvTFlsBr5E="; 24 + }; 25 + 26 + vendorSha256 = "sha256-msXfXFWXyZeT6zrRPZkBV7PEyPqYkx+JlpTWUwgFavI="; 27 + 28 + nativeBuildInputs = [ pkg-config ]; 29 + 30 + buildInputs = [ 31 + xorg.libX11 32 + xorg.libXcursor 33 + xorg.libXrandr 34 + xorg.libXinerama 35 + xorg.libXi 36 + xorg.libXext 37 + xorg.libXxf86vm 38 + libglvnd 39 + ] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa Kernel UserNotifications ]; 40 + 41 + ldflags = [ 42 + "-s" "-w" 43 + "-linkmode=external" 44 + ]; 45 + 46 + # conditionally build with GUI or not (go2tv or go2tv-lite sub-packages) 47 + subPackages = [ "cmd/${pname}" ]; 48 + 49 + doCheck = false; 50 + 51 + meta = with lib; { 52 + description = "Cast media files to UPnP/DLNA Media Renderers and Smart TVs"; 53 + homepage = "https://github.com/alexballas/go2tv"; 54 + license = licenses.mit; 55 + maintainers = with maintainers; [ gdamjan ]; 56 + }; 57 + }
+53 -1
pkgs/build-support/testers/default.nix
··· 1 - { pkgs, lib, callPackage, runCommand, stdenv }: 1 + { pkgs, buildPackages, lib, callPackage, runCommand, stdenv, substituteAll, }: 2 2 # Documentation is in doc/builders/testers.chapter.md 3 3 { 4 + # See https://nixos.org/manual/nixpkgs/unstable/#tester-testBuildFailure 5 + # or doc/builders/testers.chapter.md 6 + testBuildFailure = drv: drv.overrideAttrs (orig: { 7 + builder = buildPackages.bash; 8 + args = [ 9 + (substituteAll { coreutils = buildPackages.coreutils; src = ./expect-failure.sh; }) 10 + orig.realBuilder or stdenv.shell 11 + ] ++ orig.args or ["-e" (orig.builder or ../../stdenv/generic/default-builder.sh)]; 12 + }); 13 + 14 + # See https://nixos.org/manual/nixpkgs/unstable/#tester-testEqualDerivation 15 + # or doc/builders/testers.chapter.md 4 16 testEqualDerivation = callPackage ./test-equal-derivation.nix { }; 5 17 18 + # See https://nixos.org/manual/nixpkgs/unstable/#tester-testEqualContents 19 + # or doc/builders/testers.chapter.md 20 + testEqualContents = { 21 + assertion, 22 + actual, 23 + expected, 24 + }: runCommand "equal-contents-${lib.strings.toLower assertion}" { 25 + inherit assertion actual expected; 26 + } '' 27 + echo "Checking:" 28 + echo "$assertion" 29 + if ! diff -U5 -r "$actual" "$expected" --color=always 30 + then 31 + echo 32 + echo 'Contents must be equal, but were not!' 33 + echo 34 + echo "+: expected, at $expected" 35 + echo "-: unexpected, at $actual" 36 + exit 1 37 + else 38 + find "$expected" -type f -executable > expected-executables | sort 39 + find "$actual" -type f -executable > actual-executables | sort 40 + if ! diff -U0 actual-executables expected-executables --color=always 41 + then 42 + echo 43 + echo "Contents must be equal, but some files' executable bits don't match" 44 + echo 45 + echo "+: make this file executable in the actual contents" 46 + echo "-: make this file non-executable in the actual contents" 47 + exit 1 48 + else 49 + echo "expected $expected and actual $actual match." 50 + echo 'OK' 51 + touch $out 52 + fi 53 + fi 54 + ''; 55 + 56 + # See https://nixos.org/manual/nixpkgs/unstable/#tester-testVersion 57 + # or doc/builders/testers.chapter.md 6 58 testVersion = 7 59 { package, 8 60 command ? "${package.meta.mainProgram or package.pname or package.name} --version",
+62
pkgs/build-support/testers/expect-failure.sh
··· 1 + # Run a builder, flip exit code, save log and fix outputs 2 + # 3 + # Sub-goals: 4 + # - Delegate to another original builder passed via args 5 + # - Save the build log to output for further checks 6 + # - Make the derivation succeed if the original builder fails 7 + # - Make the derivation fail if the original builder returns exit code 0 8 + # 9 + # Requirements: 10 + # This runs before, without and after stdenv. Do not modify the environment; 11 + # especially not before invoking the original builder. For example, use 12 + # "@" substitutions instead of PATH. 13 + # Do not export any variables. 14 + 15 + # Stricter bash 16 + set -eu 17 + 18 + # ------------------------ 19 + # Run the original builder 20 + 21 + echo "testBuildFailure: Expecting non-zero exit from builder and args: ${*@Q}" 22 + 23 + ("$@" 2>&1) | @coreutils@/bin/tee $TMPDIR/testBuildFailure.log \ 24 + | while read ln; do 25 + echo "original builder: $ln" 26 + done 27 + 28 + r=${PIPESTATUS[0]} 29 + if [[ $r = 0 ]]; then 30 + echo "testBuildFailure: The builder did not fail, but a failure was expected!" 31 + exit 1 32 + fi 33 + echo "testBuildFailure: Original builder produced exit code: $r" 34 + 35 + # ----------------------------------------- 36 + # Write the build log to the default output 37 + 38 + outs=( $outputs ) 39 + defOut=${outs[0]} 40 + defOutPath=${!defOut} 41 + 42 + if [[ ! -d $defOutPath ]]; then 43 + if [[ -e $defOutPath ]]; then 44 + @coreutils@/bin/mv $defOutPath $TMPDIR/out-node 45 + @coreutils@/bin/mkdir $defOutPath 46 + @coreutils@/bin/mv $TMPDIR/out-node $defOutPath/result 47 + fi 48 + fi 49 + 50 + @coreutils@/bin/mkdir -p $defOutPath 51 + @coreutils@/bin/mv $TMPDIR/testBuildFailure.log $defOutPath/testBuildFailure.log 52 + echo $r >$defOutPath/testBuildFailure.exit 53 + 54 + # ------------------------------------------------------ 55 + # Put empty directories in place for any missing outputs 56 + 57 + for outputName in ${outputs:-out}; do 58 + outputPath="${!outputName}" 59 + if [[ ! -e "${outputPath}" ]]; then 60 + @coreutils@/bin/mkdir "${outputPath}"; 61 + fi 62 + done
+164 -1
pkgs/build-support/testers/test/default.nix
··· 1 - { testers, lib, pkgs, ... }: 1 + { testers, lib, pkgs, hello, runCommand, ... }: 2 2 let 3 3 pkgs-with-overlay = pkgs.extend(final: prev: { 4 4 proof-of-overlay-hello = prev.hello; ··· 24 24 machine.succeed("hello | figlet >/dev/console") 25 25 ''; 26 26 }); 27 + 28 + testBuildFailure = lib.recurseIntoAttrs { 29 + happy = runCommand "testBuildFailure-happy" { 30 + failed = testers.testBuildFailure (runCommand "fail" {} '' 31 + echo ok-ish >$out 32 + echo failing though 33 + echo also stderr 1>&2 34 + exit 3 35 + ''); 36 + } '' 37 + grep -F 'failing though' $failed/testBuildFailure.log 38 + grep -F 'also stderr' $failed/testBuildFailure.log 39 + grep -F 'ok-ish' $failed/result 40 + [[ 3 = $(cat $failed/testBuildFailure.exit) ]] 41 + touch $out 42 + ''; 43 + 44 + helloDoesNotFail = runCommand "testBuildFailure-helloDoesNotFail" { 45 + failed = testers.testBuildFailure (testers.testBuildFailure hello); 46 + 47 + # Add hello itself as a prerequisite, so we don't try to run this test if 48 + # there's an actual failure in hello. 49 + inherit hello; 50 + } '' 51 + echo "Checking $failed/testBuildFailure.log" 52 + grep -F 'testBuildFailure: The builder did not fail, but a failure was expected' $failed/testBuildFailure.log 53 + [[ 1 = $(cat $failed/testBuildFailure.exit) ]] 54 + touch $out 55 + ''; 56 + 57 + multiOutput = runCommand "testBuildFailure-multiOutput" { 58 + failed = testers.testBuildFailure (runCommand "fail" { 59 + # dev will be the default output 60 + outputs = ["dev" "doc" "out"]; 61 + } '' 62 + echo i am failing 63 + exit 1 64 + ''); 65 + } '' 66 + grep -F 'i am failing' $failed/testBuildFailure.log >/dev/null 67 + [[ 1 = $(cat $failed/testBuildFailure.exit) ]] 68 + 69 + # Checking our note that dev is the default output 70 + echo $failed/_ | grep -- '-dev/_' >/dev/null 71 + echo 'All good.' 72 + touch $out 73 + ''; 74 + }; 75 + 76 + testEqualContents = lib.recurseIntoAttrs { 77 + happy = testers.testEqualContents { 78 + assertion = "The same directory contents at different paths are recognized as equal"; 79 + expected = runCommand "expected" {} '' 80 + mkdir -p $out/c 81 + echo a >$out/a 82 + echo b >$out/b 83 + echo d >$out/c/d 84 + ''; 85 + actual = runCommand "actual" {} '' 86 + mkdir -p $out/c 87 + echo a >$out/a 88 + echo b >$out/b 89 + echo d >$out/c/d 90 + ''; 91 + }; 92 + 93 + unequalExe = 94 + runCommand "testEqualContents-unequalExe" { 95 + log = testers.testBuildFailure (testers.testEqualContents { 96 + assertion = "The same directory contents at different paths are recognized as equal"; 97 + expected = runCommand "expected" {} '' 98 + mkdir -p $out/c 99 + echo a >$out/a 100 + chmod a+x $out/a 101 + echo b >$out/b 102 + echo d >$out/c/d 103 + ''; 104 + actual = runCommand "actual" {} '' 105 + mkdir -p $out/c 106 + echo a >$out/a 107 + echo b >$out/b 108 + chmod a+x $out/b 109 + echo d >$out/c/d 110 + ''; 111 + }); 112 + } '' 113 + ( 114 + set -x 115 + grep -F -- "executable bits don't match" $log/testBuildFailure.log 116 + grep -E -- '+.*-actual/a' $log/testBuildFailure.log 117 + grep -E -- '-.*-actual/b' $log/testBuildFailure.log 118 + grep -F -- "--- actual-executables" $log/testBuildFailure.log 119 + grep -F -- "+++ expected-executables" $log/testBuildFailure.log 120 + ) || { 121 + echo "Test failed: could not find pattern in build log $log" 122 + exit 1 123 + } 124 + echo 'All good.' 125 + touch $out 126 + ''; 127 + 128 + fileDiff = 129 + runCommand "testEqualContents-fileDiff" { 130 + log = testers.testBuildFailure (testers.testEqualContents { 131 + assertion = "The same directory contents at different paths are recognized as equal"; 132 + expected = runCommand "expected" {} '' 133 + mkdir -p $out/c 134 + echo a >$out/a 135 + echo b >$out/b 136 + echo d >$out/c/d 137 + ''; 138 + actual = runCommand "actual" {} '' 139 + mkdir -p $out/c 140 + echo a >$out/a 141 + echo B >$out/b 142 + echo d >$out/c/d 143 + ''; 144 + }); 145 + } '' 146 + ( 147 + set -x 148 + grep -F -- "Contents must be equal but were not" $log/testBuildFailure.log 149 + grep -E -- '+++ .*-actual/b' $log/testBuildFailure.log 150 + grep -E -- '--- .*-actual/b' $log/testBuildFailure.log 151 + grep -F -- "-B" $log/testBuildFailure.log 152 + grep -F -- "+b" $log/testBuildFailure.log 153 + ) || { 154 + echo "Test failed: could not find pattern in build log $log" 155 + exit 1 156 + } 157 + echo 'All good.' 158 + touch $out 159 + ''; 160 + 161 + fileMissing = 162 + runCommand "testEqualContents-fileMissing" { 163 + log = testers.testBuildFailure (testers.testEqualContents { 164 + assertion = "The same directory contents at different paths are recognized as equal"; 165 + expected = runCommand "expected" {} '' 166 + mkdir -p $out/c 167 + echo a >$out/a 168 + echo b >$out/b 169 + echo d >$out/c/d 170 + ''; 171 + actual = runCommand "actual" {} '' 172 + mkdir -p $out/c 173 + echo a >$out/a 174 + echo d >$out/c/d 175 + ''; 176 + }); 177 + } '' 178 + ( 179 + set -x 180 + grep -F -- "Contents must be equal but were not" $log/testBuildFailure.log 181 + grep -E -- 'Only in .*-expected: b' $log/testBuildFailure.log 182 + ) || { 183 + echo "Test failed: could not find pattern in build log $log" 184 + exit 1 185 + } 186 + echo 'All good.' 187 + touch $out 188 + ''; 189 + }; 27 190 }
+14 -9
pkgs/data/fonts/b612/default.nix
··· 1 1 { lib, fetchFromGitHub }: 2 2 3 - let 4 - version = "1.008"; 3 + fetchFromGitHub rec { 5 4 pname = "b612"; 6 - in fetchFromGitHub { 7 - name = "${pname}-font-${version}"; 5 + version = "1.008"; 6 + 8 7 owner = "polarsys"; 9 8 repo = "b612"; 10 9 rev = version; 10 + 11 11 postFetch = '' 12 - tar xf $downloadedFile --strip=1 13 - mkdir -p $out/share/fonts/truetype/${pname} 14 - cp fonts/ttf/*.ttf $out/share/fonts/truetype/${pname} 12 + mkdir -p $out/share/fonts/truetype 13 + 14 + mv $out/fonts/ttf/*.ttf $out/share/fonts/truetype 15 + 16 + shopt -s extglob dotglob 17 + rm -rf $out/!(share) 18 + shopt -u extglob dotglob 15 19 ''; 16 - sha256 = "0r3lana1q9w3siv8czb3p9rrb5d9svp628yfbvvmnj7qvjrmfsiq"; 20 + 21 + hash = "sha256-aJ3XzWQauPsWwEDAHT2rD9a8RvLv1kqU3krFXprmypk="; 17 22 18 23 meta = with lib; { 19 - homepage = "http://b612-font.com/"; 24 + homepage = "https://b612-font.com/"; 20 25 description = "Highly legible font family for use on aircraft cockpit screens"; 21 26 longDescription = '' 22 27 B612 is the result of a research project initiated by Airbus. The font
+12 -8
pkgs/data/fonts/montserrat/default.nix
··· 1 1 { lib, fetchFromGitHub }: 2 2 3 - let 3 + fetchFromGitHub rec { 4 4 pname = "montserrat"; 5 5 version = "7.222"; 6 - in fetchFromGitHub { 7 - name = "${pname}-${version}"; 6 + 8 7 owner = "JulietaUla"; 9 8 repo = pname; 10 9 rev = "v${version}"; 11 10 sha256 = "sha256-MeNnc1e5X5f0JyaLY6fX22rytHkvL++eM2ygsdlGMv0="; 12 11 13 12 postFetch = '' 14 - tar xf $downloadedFile --strip 1 15 - install -Dm 444 fonts/otf/*.otf -t $out/share/fonts/otf 16 - install -Dm 444 fonts/ttf/*.ttf -t $out/share/fonts/ttf 17 - install -Dm 444 fonts/webfonts/*.woff -t $out/share/fonts/woff 18 - install -Dm 444 fonts/webfonts/*.woff2 -t $out/share/fonts/woff2 13 + mkdir -p $out/share/fonts/{otf,ttf,woff,woff2} 14 + 15 + mv $out/fonts/otf/*.otf $out/share/fonts/otf 16 + mv $out/fonts/ttf/*.ttf $out/share/fonts/ttf 17 + mv $out/fonts/webfonts/*.woff $out/share/fonts/woff 18 + mv $out/fonts/webfonts/*.woff2 $out/share/fonts/woff2 19 + 20 + shopt -s extglob dotglob 21 + rm -rf $out/!(share) 22 + shopt -u extglob dotglob 19 23 ''; 20 24 21 25 meta = with lib; {
+7 -7
pkgs/development/embedded/teensy-loader-cli/default.nix
··· 6 6 , libusb-compat-0_1 7 7 }: 8 8 9 - stdenv.mkDerivation rec { 9 + stdenv.mkDerivation (finalAttrs: { 10 10 pname = "teensy-loader-cli"; 11 - version = "2.1+unstable=2021-04-10"; 11 + version = "2.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "PaulStoffregen"; 15 15 repo = "teensy_loader_cli"; 16 - rev = "9dbbfa3b367b6c37e91e8a42dae3c6edfceccc4d"; 17 - sha256 = "lQ1XtaWPr6nvE8NArD1980QVOH6NggO3FlfsntUjY7s="; 16 + rev = finalAttrs.version; 17 + sha256 = "sha256-C9Qhd6LhAES7X0sh4rofjAM+gxwuosahVQHeR76LyIo="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ ··· 30 30 runHook preInstall 31 31 32 32 install -Dm555 teensy_loader_cli $out/bin/teensy-loader-cli 33 - install -Dm444 -t $out/share/doc/${pname} *.md *.txt 34 - go-md2man -in README.md -out ${pname}.1 33 + install -Dm444 -t $out/share/doc/teensy-loader-cli *.md *.txt 34 + go-md2man -in README.md -out teensy-loader-cli.1 35 35 installManPage *.1 36 36 37 37 runHook postInstall ··· 43 43 license = licenses.gpl3Only; 44 44 platforms = platforms.unix; 45 45 }; 46 - } 46 + })
+22
pkgs/development/libraries/intel-media-driver/32bit.patch
··· 1 + diff --git a/media_softlet/linux/common/ddi/media_libva_util_next.cpp b/media_softlet/linux/common/ddi/media_libva_util_next.cpp 2 + index 66fab63de..a2cdf79d7 100644 3 + --- a/media_softlet/linux/common/ddi/media_libva_util_next.cpp 4 + +++ b/media_softlet/linux/common/ddi/media_libva_util_next.cpp 5 + @@ -2195,8 +2195,8 @@ void MediaLibvaUtilNext::MediaPrintFps() 6 + 7 + int64_t diff = (tv2.tv_sec - m_tv1.tv_sec)*1000000 + tv2.tv_usec - m_tv1.tv_usec; 8 + float fps = m_frameCountFps / (diff / 1000000.0); 9 + - DDI_NORMALMESSAGE("FPS:%6.4f, Interval:%11lu.", fps,((uint64_t)tv2.tv_sec)*1000 + (tv2.tv_usec/1000)); 10 + - sprintf(temp,"FPS:%6.4f, Interval:%11lu\n", fps,((uint64_t)tv2.tv_sec)*1000 + (tv2.tv_usec/1000)); 11 + + DDI_NORMALMESSAGE("FPS:%6.4f, Interval:%11llu.", fps,((uint64_t)tv2.tv_sec)*1000 + (tv2.tv_usec/1000)); 12 + + sprintf(temp,"FPS:%6.4f, Interval:%11llu\n", fps,((uint64_t)tv2.tv_sec)*1000 + (tv2.tv_usec/1000)); 13 + 14 + MOS_ZeroMemory(fpsFileName,LENGTH_OF_FPS_FILE_NAME); 15 + sprintf(fpsFileName, FPS_FILE_NAME); 16 + @@ -2213,4 +2213,4 @@ void MediaLibvaUtilNext::MediaPrintFps() 17 + pthread_mutex_unlock(&m_fpsMutex); 18 + return; 19 + } 20 + -#endif 21 + \ No newline at end of file 22 + +#endif
+6 -8
pkgs/development/libraries/intel-media-driver/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "intel-media-driver"; 19 - version = "22.5.3.1"; 19 + version = "22.6.3"; 20 20 21 21 outputs = [ "out" "dev" ]; 22 22 ··· 24 24 owner = "intel"; 25 25 repo = "media-driver"; 26 26 rev = "intel-media-${version}"; 27 - sha256 = "sha256-3l8mfw1h1se0+w4VtfMr0xuPW8G3JA6hbvkyCaEGTek="; 27 + sha256 = "sha256-lQg+L64DW2ZIBeJRimNkba7EL+SM4jSnX9PWIx4j2AY="; 28 28 }; 29 29 30 30 patches = [ ··· 33 33 url = "https://salsa.debian.org/multimedia-team/intel-media-driver-non-free/-/raw/master/debian/patches/0002-Remove-settings-based-on-ARCH.patch"; 34 34 sha256 = "sha256-f4M0CPtAVf5l2ZwfgTaoPw7sPuAP/Uxhm5JSHEGhKT0="; 35 35 }) 36 - # fix compilation on i686-linux 37 - (fetchpatch { 38 - url = "https://github.com/intel/media-driver/commit/5ee502b84eb70f0d677a3b49d624c356b3f0c2b1.patch"; 39 - revert = true; 40 - sha256 = "sha256-yRS10BKD5IkW8U0PxmyB7ryQiLwrqeetm0NivnoM224="; 41 - }) 36 + ] ++ lib.optional stdenv.is32bit [ 37 + # fix compilation on i686-linux but also breaks x86_64 38 + # a similar issue got fixed in https://github.com/intel/media-driver/pull/1493 but thats to much C magic for me 39 + ./32bit.patch 42 40 ]; 43 41 44 42 cmakeFlags = [
+4 -4
pkgs/development/libraries/liblxi/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 - , pkg-config, autoreconfHook 2 + , meson, ninja, pkg-config, cmake 3 3 , libtirpc, rpcsvc-proto, avahi, libxml2 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "liblxi"; 8 - version = "1.13"; 8 + version = "1.18"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "lxi-tools"; 12 12 repo = "liblxi"; 13 13 rev = "v${version}"; 14 - sha256 = "129m0k2wrlgs25qkskynljddqspasla1x8iq51vmg38nhnilpqf6"; 14 + sha256 = "sha256-2tZWIN58J6zNHG3dahNfg5eNiS8ykWFQyRSyikuzdjE="; 15 15 }; 16 16 17 - nativeBuildInputs = [ autoreconfHook pkg-config rpcsvc-proto ]; 17 + nativeBuildInputs = [ meson ninja cmake pkg-config rpcsvc-proto ]; 18 18 19 19 buildInputs = [ libtirpc avahi libxml2 ]; 20 20
+5
pkgs/development/libraries/libva/default.nix
··· 3 3 , minimal ? false, libva-minimal 4 4 , libX11, libXext, libXfixes, wayland, libffi, libGL 5 5 , mesa 6 + , intel-media-driver 6 7 }: 7 8 8 9 stdenv.mkDerivation rec { ··· 28 29 # Add FHS and Debian paths for non-NixOS applications 29 30 "-Ddriverdir=${mesa.drivers.driverLink}/lib/dri:/usr/lib/dri:/usr/lib32/dri:/usr/lib/x86_64-linux-gnu/dri:/usr/lib/i386-linux-gnu/dri" 30 31 ]; 32 + 33 + passthru.tests = { 34 + inherit intel-media-driver; 35 + }; 31 36 32 37 meta = with lib; { 33 38 description = "An implementation for VA-API (Video Acceleration API)";
+1 -1
pkgs/development/libraries/qt-6/fetch.sh
··· 1 - WGET_ARGS=( https://download.qt.io/official_releases/qt/6.4/6.4.0/submodules/ -A '*.tar.xz' ) 1 + WGET_ARGS=( https://download.qt.io/official_releases/qt/6.4/6.4.1/submodules/ -A '*.tar.xz' )
-6
pkgs/development/libraries/qt-6/modules/qtwebengine.nix
··· 94 94 # which cannot be set at the same time as -Wformat-security 95 95 hardeningDisable = [ "format" ]; 96 96 97 - patches = [ 98 - # fixes consistent crashing in github on 6.4.0, can probably remove when there is a patch release 99 - # https://codereview.qt-project.org/c/qt/qtwebengine/+/436316 100 - ../patches/qtwebengine-fix.patch 101 - ]; 102 - 103 97 postPatch = '' 104 98 # Patch Chromium build tools 105 99 (
-28
pkgs/development/libraries/qt-6/patches/qtwebengine-fix.patch
··· 1 - From 81bf140583f7b7bf13cc8dd522e1ca2aba873fc4 Mon Sep 17 00:00:00 2001 2 - From: Martin Negyokru <negyokru@inf.u-szeged.hu> 3 - Date: Mon, 03 Oct 2022 12:20:00 +0200 4 - Subject: [PATCH] Do not intercept websocket connection when there is no associated frame 5 - 6 - This fix is based on chrome's implementation. 7 - 8 - Fixes: QTBUG-107144 9 - Change-Id: If042e4156b8a4bdb27a210c4db94e3a6198aed7d 10 - Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io> 11 - (cherry picked from commit 64b7da9dab82713fdcb2e03d8a2715421eae5685) 12 - Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> 13 - --- 14 - 15 - diff --git a/src/core/content_browser_client_qt.cpp b/src/core/content_browser_client_qt.cpp 16 - index 020ae91..99a3aa3 100644 17 - --- a/src/core/content_browser_client_qt.cpp 18 - +++ b/src/core/content_browser_client_qt.cpp 19 - @@ -1237,8 +1237,7 @@ 20 - 21 - bool ContentBrowserClientQt::WillInterceptWebSocket(content::RenderFrameHost *frame) 22 - { 23 - - Q_UNUSED(frame); 24 - - return true; // It is probably not worth it to only intercept when interceptors are installed 25 - + return frame != nullptr; 26 - } 27 - 28 - QWebEngineUrlRequestInterceptor *getProfileInterceptorFromFrame(content::RenderFrameHost *frame)
+140 -140
pkgs/development/libraries/qt-6/srcs.nix
··· 4 4 5 5 { 6 6 qt3d = { 7 - version = "6.4.0"; 7 + version = "6.4.1"; 8 8 src = fetchurl { 9 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qt3d-everywhere-src-6.4.0.tar.xz"; 10 - sha256 = "1sxxxa6gaiy573j7x2k06dr4jsxbr9r1brcjfkn0zjgl46sbbgba"; 11 - name = "qt3d-everywhere-src-6.4.0.tar.xz"; 9 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qt3d-everywhere-src-6.4.1.tar.xz"; 10 + sha256 = "1654hx04k6vdifjp5kr4sj6jm8qy8m8vna7yalmb3l55pr1k5dg4"; 11 + name = "qt3d-everywhere-src-6.4.1.tar.xz"; 12 12 }; 13 13 }; 14 14 qt5compat = { 15 - version = "6.4.0"; 15 + version = "6.4.1"; 16 16 src = fetchurl { 17 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qt5compat-everywhere-src-6.4.0.tar.xz"; 18 - sha256 = "1h54jiqkiipbb3i3sjznrinc67y76ld237qr17ald0pp6w45sivk"; 19 - name = "qt5compat-everywhere-src-6.4.0.tar.xz"; 17 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qt5compat-everywhere-src-6.4.1.tar.xz"; 18 + sha256 = "0cfh5z0kw75k2p3sca9d5gdfxvh93719prh2njg1nd6n8pp379fl"; 19 + name = "qt5compat-everywhere-src-6.4.1.tar.xz"; 20 20 }; 21 21 }; 22 22 qtactiveqt = { 23 - version = "6.4.0"; 23 + version = "6.4.1"; 24 24 src = fetchurl { 25 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtactiveqt-everywhere-src-6.4.0.tar.xz"; 26 - sha256 = "1pdam1ggxanrxr0pz8rap2ya59zyd4j56b9kfqbxm5kpkps345ar"; 27 - name = "qtactiveqt-everywhere-src-6.4.0.tar.xz"; 25 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtactiveqt-everywhere-src-6.4.1.tar.xz"; 26 + sha256 = "118ivyzh6xk92ak2qf0294n1fzziy2mxp2xgkblh801d3nbg7kql"; 27 + name = "qtactiveqt-everywhere-src-6.4.1.tar.xz"; 28 28 }; 29 29 }; 30 30 qtbase = { 31 - version = "6.4.0"; 31 + version = "6.4.1"; 32 32 src = fetchurl { 33 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtbase-everywhere-src-6.4.0.tar.xz"; 34 - sha256 = "0zdkv7m98axjfpdmbv8v2xqndvhnanh75c7vgygw8rw5pnh7ar6b"; 35 - name = "qtbase-everywhere-src-6.4.0.tar.xz"; 33 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtbase-everywhere-src-6.4.1.tar.xz"; 34 + sha256 = "1bjgy9x75y82702xkv3bhxh3q9i37ny4fv3njb5zgj7rq0fdfajk"; 35 + name = "qtbase-everywhere-src-6.4.1.tar.xz"; 36 36 }; 37 37 }; 38 38 qtcharts = { 39 - version = "6.4.0"; 39 + version = "6.4.1"; 40 40 src = fetchurl { 41 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtcharts-everywhere-src-6.4.0.tar.xz"; 42 - sha256 = "1ls077dhvkb4v7g2wwnb6v0rgg5fh4i2fx11fvzdlnsi4k7cmhr8"; 43 - name = "qtcharts-everywhere-src-6.4.0.tar.xz"; 41 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtcharts-everywhere-src-6.4.1.tar.xz"; 42 + sha256 = "0rwglk5g0k1x0vjb8j5r4fqaa7m31aykh42f18svkjpz3kbbrs6y"; 43 + name = "qtcharts-everywhere-src-6.4.1.tar.xz"; 44 44 }; 45 45 }; 46 46 qtconnectivity = { 47 - version = "6.4.0"; 47 + version = "6.4.1"; 48 48 src = fetchurl { 49 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtconnectivity-everywhere-src-6.4.0.tar.xz"; 50 - sha256 = "0kn52xibbp7a0021x6jznp9jxlf57fk85zba0z3lqqzanmyigp2s"; 51 - name = "qtconnectivity-everywhere-src-6.4.0.tar.xz"; 49 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtconnectivity-everywhere-src-6.4.1.tar.xz"; 50 + sha256 = "1qxvixv95wkb7h6ch1q39pxs7cidph6kyddz91qgxr2gznz5s3wv"; 51 + name = "qtconnectivity-everywhere-src-6.4.1.tar.xz"; 52 52 }; 53 53 }; 54 54 qtdatavis3d = { 55 - version = "6.4.0"; 55 + version = "6.4.1"; 56 56 src = fetchurl { 57 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtdatavis3d-everywhere-src-6.4.0.tar.xz"; 58 - sha256 = "038591l0s9mkzxxxxm3knvyrk1vdimbp0gi5m26n79bx8lw01d0d"; 59 - name = "qtdatavis3d-everywhere-src-6.4.0.tar.xz"; 57 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtdatavis3d-everywhere-src-6.4.1.tar.xz"; 58 + sha256 = "00ddsv4inbsqbgc7lc163j8fqx9r156xzsrilh9papidfm7yvrm9"; 59 + name = "qtdatavis3d-everywhere-src-6.4.1.tar.xz"; 60 60 }; 61 61 }; 62 62 qtdeclarative = { 63 - version = "6.4.0"; 63 + version = "6.4.1"; 64 64 src = fetchurl { 65 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtdeclarative-everywhere-src-6.4.0.tar.xz"; 66 - sha256 = "10s35iivmafprw2spca6fw3gamf10lyp54376af9437srhpyfd1l"; 67 - name = "qtdeclarative-everywhere-src-6.4.0.tar.xz"; 65 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtdeclarative-everywhere-src-6.4.1.tar.xz"; 66 + sha256 = "1zjdd2ndaywl7wgl9q94a1qwin5p45l2838lqhkdm3ckvdgli35g"; 67 + name = "qtdeclarative-everywhere-src-6.4.1.tar.xz"; 68 68 }; 69 69 }; 70 70 qtdoc = { 71 - version = "6.4.0"; 71 + version = "6.4.1"; 72 72 src = fetchurl { 73 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtdoc-everywhere-src-6.4.0.tar.xz"; 74 - sha256 = "11j2vp2k3liz7388702ccy7fjb5ickhxnsc0iyiyirdmll187zgf"; 75 - name = "qtdoc-everywhere-src-6.4.0.tar.xz"; 73 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtdoc-everywhere-src-6.4.1.tar.xz"; 74 + sha256 = "198gl45c6m1gxn13aic65xgy94in1b1hy255jq6pi44m36brspbn"; 75 + name = "qtdoc-everywhere-src-6.4.1.tar.xz"; 76 76 }; 77 77 }; 78 78 qthttpserver = { 79 - version = "6.4.0"; 79 + version = "6.4.1"; 80 80 src = fetchurl { 81 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qthttpserver-everywhere-src-6.4.0.tar.xz"; 82 - sha256 = "10rlmpcj36qfr4465prpb515imrcfa6b2kiz16qyr8m4c86wb51i"; 83 - name = "qthttpserver-everywhere-src-6.4.0.tar.xz"; 81 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qthttpserver-everywhere-src-6.4.1.tar.xz"; 82 + sha256 = "1xib6q8ji64kq2r5y6qqig0090irjwi25vzpy8528wv5a3i0yxah"; 83 + name = "qthttpserver-everywhere-src-6.4.1.tar.xz"; 84 84 }; 85 85 }; 86 86 qtimageformats = { 87 - version = "6.4.0"; 87 + version = "6.4.1"; 88 88 src = fetchurl { 89 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtimageformats-everywhere-src-6.4.0.tar.xz"; 90 - sha256 = "0g2zjipayhzh0lwn6xgxw5mx6f5dpak75xszm2cg1h83bnvsf68l"; 91 - name = "qtimageformats-everywhere-src-6.4.0.tar.xz"; 89 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtimageformats-everywhere-src-6.4.1.tar.xz"; 90 + sha256 = "1rjd8mi8z864gqaa849kc4xppbjjr2yddcgahx16z3psn8zfg1ay"; 91 + name = "qtimageformats-everywhere-src-6.4.1.tar.xz"; 92 92 }; 93 93 }; 94 94 qtlanguageserver = { 95 - version = "6.4.0"; 95 + version = "6.4.1"; 96 96 src = fetchurl { 97 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtlanguageserver-everywhere-src-6.4.0.tar.xz"; 98 - sha256 = "09bhg3cm27d8imih1s7rk00zqwf863183znbzhhr3nkl6mqscy0q"; 99 - name = "qtlanguageserver-everywhere-src-6.4.0.tar.xz"; 97 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtlanguageserver-everywhere-src-6.4.1.tar.xz"; 98 + sha256 = "1j2xd4r9ngdi5nq35bycxx9jc7bngjlrxa0cs8cjgl7zkj3wsmg3"; 99 + name = "qtlanguageserver-everywhere-src-6.4.1.tar.xz"; 100 100 }; 101 101 }; 102 102 qtlottie = { 103 - version = "6.4.0"; 103 + version = "6.4.1"; 104 104 src = fetchurl { 105 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtlottie-everywhere-src-6.4.0.tar.xz"; 106 - sha256 = "1d66fr2my8wcbalikppiykqwisflxahcl86zgqqy2s2wkv5bzz0w"; 107 - name = "qtlottie-everywhere-src-6.4.0.tar.xz"; 105 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtlottie-everywhere-src-6.4.1.tar.xz"; 106 + sha256 = "0b59xd5nx4c2mhdl79fzbyz25n8bkdbh8h43l8lp3an15y08bdya"; 107 + name = "qtlottie-everywhere-src-6.4.1.tar.xz"; 108 108 }; 109 109 }; 110 110 qtmultimedia = { 111 - version = "6.4.0"; 111 + version = "6.4.1"; 112 112 src = fetchurl { 113 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtmultimedia-everywhere-src-6.4.0.tar.xz"; 114 - sha256 = "0vvrgqcvvr6ch5vnmq3j3lx1xci21b8vc1fv24d9aamfgj28wbp8"; 115 - name = "qtmultimedia-everywhere-src-6.4.0.tar.xz"; 113 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtmultimedia-everywhere-src-6.4.1.tar.xz"; 114 + sha256 = "1bxs1n22yplds2f60h2j25aw9ibhhgprg9np3ybr0q3f08xd91n0"; 115 + name = "qtmultimedia-everywhere-src-6.4.1.tar.xz"; 116 116 }; 117 117 }; 118 118 qtnetworkauth = { 119 - version = "6.4.0"; 119 + version = "6.4.1"; 120 120 src = fetchurl { 121 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtnetworkauth-everywhere-src-6.4.0.tar.xz"; 122 - sha256 = "1cqp1z73d1kgnz5l5vvgxa58mfx61kdsr9xg1wgwrwbpzpw7g6v0"; 123 - name = "qtnetworkauth-everywhere-src-6.4.0.tar.xz"; 121 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtnetworkauth-everywhere-src-6.4.1.tar.xz"; 122 + sha256 = "08kmkpjm34bkbiz54zm4p9mjr9fjzx2kjf0fkhay0lz3iljp0sl3"; 123 + name = "qtnetworkauth-everywhere-src-6.4.1.tar.xz"; 124 124 }; 125 125 }; 126 126 qtpositioning = { 127 - version = "6.4.0"; 127 + version = "6.4.1"; 128 128 src = fetchurl { 129 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtpositioning-everywhere-src-6.4.0.tar.xz"; 130 - sha256 = "0d58zgjzdmi2fv8wbn0iz941mlpsxclcldzadwwhh0dbdmgmq6rd"; 131 - name = "qtpositioning-everywhere-src-6.4.0.tar.xz"; 129 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtpositioning-everywhere-src-6.4.1.tar.xz"; 130 + sha256 = "12yip3awqwcx3fqr8jl64bvp3scvi9pbzyjzk0pm2f6r3kl14qbh"; 131 + name = "qtpositioning-everywhere-src-6.4.1.tar.xz"; 132 132 }; 133 133 }; 134 134 qtquick3d = { 135 - version = "6.4.0"; 135 + version = "6.4.1"; 136 136 src = fetchurl { 137 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtquick3d-everywhere-src-6.4.0.tar.xz"; 138 - sha256 = "1v0py2njivqbj0562pmwpfkqz1ylwkffsn7j943ky46lsih1c2pi"; 139 - name = "qtquick3d-everywhere-src-6.4.0.tar.xz"; 137 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtquick3d-everywhere-src-6.4.1.tar.xz"; 138 + sha256 = "11881pfia0nwjxsgy2789s01qcvi9x4rhfcckxfzl4819pxw1nx6"; 139 + name = "qtquick3d-everywhere-src-6.4.1.tar.xz"; 140 140 }; 141 141 }; 142 142 qtquick3dphysics = { 143 - version = "6.4.0"; 143 + version = "6.4.1"; 144 144 src = fetchurl { 145 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtquick3dphysics-everywhere-src-6.4.0.tar.xz"; 146 - sha256 = "01zx50f5gmvwg2mb853hsr2hgrciyg62h365ryq5y9fi6hs48nfw"; 147 - name = "qtquick3dphysics-everywhere-src-6.4.0.tar.xz"; 145 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtquick3dphysics-everywhere-src-6.4.1.tar.xz"; 146 + sha256 = "1fxd3d8x0sgwqsvwv61m0kg4pd9gz99gqkgqd3schdhlcwgaim0x"; 147 + name = "qtquick3dphysics-everywhere-src-6.4.1.tar.xz"; 148 148 }; 149 149 }; 150 150 qtquicktimeline = { 151 - version = "6.4.0"; 151 + version = "6.4.1"; 152 152 src = fetchurl { 153 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtquicktimeline-everywhere-src-6.4.0.tar.xz"; 154 - sha256 = "0msg0l75m0slwar9p3vpx99cyf3j3mfbajfra26jmi0haf5s5s3h"; 155 - name = "qtquicktimeline-everywhere-src-6.4.0.tar.xz"; 153 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtquicktimeline-everywhere-src-6.4.1.tar.xz"; 154 + sha256 = "0p6yb3qg9i7774kvwcj8i56ab9vkifi5d92y2w8v9s25g31pspzk"; 155 + name = "qtquicktimeline-everywhere-src-6.4.1.tar.xz"; 156 156 }; 157 157 }; 158 158 qtremoteobjects = { 159 - version = "6.4.0"; 159 + version = "6.4.1"; 160 160 src = fetchurl { 161 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtremoteobjects-everywhere-src-6.4.0.tar.xz"; 162 - sha256 = "1kp1as4ih021dz37z53nv7s2byb4w04cxpj4qkxqdvvgxvmps6pm"; 163 - name = "qtremoteobjects-everywhere-src-6.4.0.tar.xz"; 161 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtremoteobjects-everywhere-src-6.4.1.tar.xz"; 162 + sha256 = "1jvsvfj8bdqxfc0vhihgmvglck0zk5nl487kbbjyhkgia1v37m98"; 163 + name = "qtremoteobjects-everywhere-src-6.4.1.tar.xz"; 164 164 }; 165 165 }; 166 166 qtscxml = { 167 - version = "6.4.0"; 167 + version = "6.4.1"; 168 168 src = fetchurl { 169 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtscxml-everywhere-src-6.4.0.tar.xz"; 170 - sha256 = "0r3nv4bbdab8hsvzz0d03qq977smlfmp7k4wm6n2jj2rwsjp61yl"; 171 - name = "qtscxml-everywhere-src-6.4.0.tar.xz"; 169 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtscxml-everywhere-src-6.4.1.tar.xz"; 170 + sha256 = "13mvih36shrjhpp1z3kqlyzgyh35gkx3a12rzh0yff4gmp5y9w6j"; 171 + name = "qtscxml-everywhere-src-6.4.1.tar.xz"; 172 172 }; 173 173 }; 174 174 qtsensors = { 175 - version = "6.4.0"; 175 + version = "6.4.1"; 176 176 src = fetchurl { 177 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtsensors-everywhere-src-6.4.0.tar.xz"; 178 - sha256 = "1njhrbhknbil8dllknc8p3q16k65rmqdx1gkhlcn6qlzbcphg37k"; 179 - name = "qtsensors-everywhere-src-6.4.0.tar.xz"; 177 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtsensors-everywhere-src-6.4.1.tar.xz"; 178 + sha256 = "1qpr6g424dpy2xccfyrkf5v2rszczq5p73lzk79s8g95fl33yzk6"; 179 + name = "qtsensors-everywhere-src-6.4.1.tar.xz"; 180 180 }; 181 181 }; 182 182 qtserialbus = { 183 - version = "6.4.0"; 183 + version = "6.4.1"; 184 184 src = fetchurl { 185 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtserialbus-everywhere-src-6.4.0.tar.xz"; 186 - sha256 = "14ga962x9h5rkgybf63b4b4fn8i96c0z9q60ns2ml20jgikmbjpg"; 187 - name = "qtserialbus-everywhere-src-6.4.0.tar.xz"; 185 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtserialbus-everywhere-src-6.4.1.tar.xz"; 186 + sha256 = "12y4pd87k1y044rfppnmv0zdfmqx42ng0hixhzblr8fbvvwh494g"; 187 + name = "qtserialbus-everywhere-src-6.4.1.tar.xz"; 188 188 }; 189 189 }; 190 190 qtserialport = { 191 - version = "6.4.0"; 191 + version = "6.4.1"; 192 192 src = fetchurl { 193 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtserialport-everywhere-src-6.4.0.tar.xz"; 194 - sha256 = "10s4997n3b0vp51slrjcdkkfqf8kabcn8ypz5gl2h8nfhygcqj7i"; 195 - name = "qtserialport-everywhere-src-6.4.0.tar.xz"; 193 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtserialport-everywhere-src-6.4.1.tar.xz"; 194 + sha256 = "1yl25cv0ajfjswg8jgkf4jwwsasr5g7sgsc3fb3zsaz6cd8cw2hx"; 195 + name = "qtserialport-everywhere-src-6.4.1.tar.xz"; 196 196 }; 197 197 }; 198 198 qtshadertools = { 199 - version = "6.4.0"; 199 + version = "6.4.1"; 200 200 src = fetchurl { 201 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtshadertools-everywhere-src-6.4.0.tar.xz"; 202 - sha256 = "141vmracfa9r71l0mqilgllfb3c1ygpc913yx8pwsy411vqabmnv"; 203 - name = "qtshadertools-everywhere-src-6.4.0.tar.xz"; 201 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtshadertools-everywhere-src-6.4.1.tar.xz"; 202 + sha256 = "012525kfnnkprgzgncqkzmif3z9k1qa6hfpscbsqg3084s1p9hbb"; 203 + name = "qtshadertools-everywhere-src-6.4.1.tar.xz"; 204 204 }; 205 205 }; 206 206 qtspeech = { 207 - version = "6.4.0"; 207 + version = "6.4.1"; 208 208 src = fetchurl { 209 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtspeech-everywhere-src-6.4.0.tar.xz"; 210 - sha256 = "1xrx323vyvrgrphxvf3nxy8s7ps26pgxaj71rlgipl58jqhc4fw7"; 211 - name = "qtspeech-everywhere-src-6.4.0.tar.xz"; 209 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtspeech-everywhere-src-6.4.1.tar.xz"; 210 + sha256 = "0jbv6r953r884wfnxrrcvf44xpvc7d8kzjd3lqv4y234748hsrih"; 211 + name = "qtspeech-everywhere-src-6.4.1.tar.xz"; 212 212 }; 213 213 }; 214 214 qtsvg = { 215 - version = "6.4.0"; 215 + version = "6.4.1"; 216 216 src = fetchurl { 217 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtsvg-everywhere-src-6.4.0.tar.xz"; 218 - sha256 = "09av5ky5zlsz4smf3xwvk07ylkz1wz3g5hbx73xdqx6h6yaaxz83"; 219 - name = "qtsvg-everywhere-src-6.4.0.tar.xz"; 217 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtsvg-everywhere-src-6.4.1.tar.xz"; 218 + sha256 = "1rcwrsdq9412qq9ilfs54yjz7ih8a6r8mbwx7y4dnrqmjk2lalsy"; 219 + name = "qtsvg-everywhere-src-6.4.1.tar.xz"; 220 220 }; 221 221 }; 222 222 qttools = { 223 - version = "6.4.0"; 223 + version = "6.4.1"; 224 224 src = fetchurl { 225 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qttools-everywhere-src-6.4.0.tar.xz"; 226 - sha256 = "18pv3b0y9ycbn5v98rjir8wsvsy40vy8xc5pyylfg2s5ikwdbwwp"; 227 - name = "qttools-everywhere-src-6.4.0.tar.xz"; 225 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qttools-everywhere-src-6.4.1.tar.xz"; 226 + sha256 = "0cq99c79p90yv3vlb3xbzamgx7qn4s9fb2gdnjyizhh4dcn5c84y"; 227 + name = "qttools-everywhere-src-6.4.1.tar.xz"; 228 228 }; 229 229 }; 230 230 qttranslations = { 231 - version = "6.4.0"; 231 + version = "6.4.1"; 232 232 src = fetchurl { 233 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qttranslations-everywhere-src-6.4.0.tar.xz"; 234 - sha256 = "0pwjfsi4b4fr2hw9mx76fiix0mz0wss3ic4pmd9yngk91f9kmfbs"; 235 - name = "qttranslations-everywhere-src-6.4.0.tar.xz"; 233 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qttranslations-everywhere-src-6.4.1.tar.xz"; 234 + sha256 = "04kal5b3bplylf33kjc8f7kc4x801qj5qrpsjs609ljnsbqwdns4"; 235 + name = "qttranslations-everywhere-src-6.4.1.tar.xz"; 236 236 }; 237 237 }; 238 238 qtvirtualkeyboard = { 239 - version = "6.4.0"; 239 + version = "6.4.1"; 240 240 src = fetchurl { 241 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtvirtualkeyboard-everywhere-src-6.4.0.tar.xz"; 242 - sha256 = "087xlc7ljkbmm85n42qx0cz8rvyhfkw1dzypxp5h3c5glamhkar5"; 243 - name = "qtvirtualkeyboard-everywhere-src-6.4.0.tar.xz"; 241 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtvirtualkeyboard-everywhere-src-6.4.1.tar.xz"; 242 + sha256 = "089v5nxfvrglp9ilaayxls8mhdbrq80z38m2agmw147m8d8dspy2"; 243 + name = "qtvirtualkeyboard-everywhere-src-6.4.1.tar.xz"; 244 244 }; 245 245 }; 246 246 qtwayland = { 247 - version = "6.4.0"; 247 + version = "6.4.1"; 248 248 src = fetchurl { 249 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtwayland-everywhere-src-6.4.0.tar.xz"; 250 - sha256 = "1z32bdgcril9ijqsn4d60znm610mm72rgn1a6dblvhxy9zhsi2zh"; 251 - name = "qtwayland-everywhere-src-6.4.0.tar.xz"; 249 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtwayland-everywhere-src-6.4.1.tar.xz"; 250 + sha256 = "1mgjd6qbz0m2kq9bcdn6mnypfjycwdfyna6z7dhj1m61s52id5lw"; 251 + name = "qtwayland-everywhere-src-6.4.1.tar.xz"; 252 252 }; 253 253 }; 254 254 qtwebchannel = { 255 - version = "6.4.0"; 255 + version = "6.4.1"; 256 256 src = fetchurl { 257 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtwebchannel-everywhere-src-6.4.0.tar.xz"; 258 - sha256 = "0nk92cbdph5ri91pnh54i3bdpx1pn9pbgyysmpg59265gj1nv3sj"; 259 - name = "qtwebchannel-everywhere-src-6.4.0.tar.xz"; 257 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtwebchannel-everywhere-src-6.4.1.tar.xz"; 258 + sha256 = "1abw58yccjhgwjrry56mih0vnxlg69dc10vfyi8grqy543qikgid"; 259 + name = "qtwebchannel-everywhere-src-6.4.1.tar.xz"; 260 260 }; 261 261 }; 262 262 qtwebengine = { 263 - version = "6.4.0"; 263 + version = "6.4.1"; 264 264 src = fetchurl { 265 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtwebengine-everywhere-src-6.4.0.tar.xz"; 266 - sha256 = "00skwxlin6za8wsh6ddhy7nmpabzjzj1lxf2w81fj04vb7nfjak6"; 267 - name = "qtwebengine-everywhere-src-6.4.0.tar.xz"; 265 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtwebengine-everywhere-src-6.4.1.tar.xz"; 266 + sha256 = "10m763yq39jn6k02bqax6mhgbc0bpnmfmxj4wkw5b67ks48w0n9c"; 267 + name = "qtwebengine-everywhere-src-6.4.1.tar.xz"; 268 268 }; 269 269 }; 270 270 qtwebsockets = { 271 - version = "6.4.0"; 271 + version = "6.4.1"; 272 272 src = fetchurl { 273 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtwebsockets-everywhere-src-6.4.0.tar.xz"; 274 - sha256 = "1jlvxidjaj44hky1cwm0y8gj6zynrnd70hf44dhjcdv5rllncg7z"; 275 - name = "qtwebsockets-everywhere-src-6.4.0.tar.xz"; 273 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtwebsockets-everywhere-src-6.4.1.tar.xz"; 274 + sha256 = "093ssssws3w1cjacjzp9j80n7b9y7i87yp8ibshshgj0avm8jxsk"; 275 + name = "qtwebsockets-everywhere-src-6.4.1.tar.xz"; 276 276 }; 277 277 }; 278 278 qtwebview = { 279 - version = "6.4.0"; 279 + version = "6.4.1"; 280 280 src = fetchurl { 281 - url = "${mirror}/official_releases/qt/6.4/6.4.0/submodules/qtwebview-everywhere-src-6.4.0.tar.xz"; 282 - sha256 = "19z5d1gs6jm2776si9i3dxn4j70y3s8yh3m299gvb2b8fby8xfwl"; 283 - name = "qtwebview-everywhere-src-6.4.0.tar.xz"; 281 + url = "${mirror}/official_releases/qt/6.4/6.4.1/submodules/qtwebview-everywhere-src-6.4.1.tar.xz"; 282 + sha256 = "15rqka6pyvi33cmizdjfhc2k5ldd1pykmc4nfx826drar6y32a27"; 283 + name = "qtwebview-everywhere-src-6.4.1.tar.xz"; 284 284 }; 285 285 }; 286 286 }
+4
pkgs/development/ocaml-modules/labltk/default.nix
··· 46 46 version = "8.06.12"; 47 47 sha256 = "sha256:17fmb13l18isgwr38hg9r5a0nayf2hhw6acj5153cy1sygsdg3b5"; 48 48 }; 49 + "5.0" = mkNewParam { 50 + version = "8.06.13"; 51 + sha256 = "sha256-Vpf13g3DEWlUI5aypiowGp2fkQPK0cOGv2XiRUY/Ip4="; 52 + }; 49 53 }; 50 54 param = params . ${lib.versions.majorMinor ocaml.version} 51 55 or (throw "labltk is not available for OCaml ${ocaml.version}");
+2 -2
pkgs/development/python-modules/ansible-compat/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "ansible-compat"; 15 - version = "2.2.3"; 15 + version = "2.2.5"; 16 16 format = "pyproject"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "sha256-H06GH6OwhDaIrdMsWHOyCEjr75bvcV0dgI0mWDViBCg="; 20 + sha256 = "sha256-KMfFRf1g75wwWc+y/v0n+S2wkf9rWGj4PxIc614f4bU="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/ansible-lint/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "ansible-lint"; 25 - version = "6.8.5"; 25 + version = "6.8.6"; 26 26 format = "pyproject"; 27 27 disabled = pythonOlder "3.8"; 28 28 29 29 src = fetchPypi { 30 30 inherit pname version; 31 - sha256 = "sha256-r+lWJWLp5tGxehhltUDU9xZb8Bz+8q0DA9HK1q05f4g="; 31 + sha256 = "sha256-Fx/o2tYgeLmBm1x01g61r6ow6py5ybqHBhSeVsVam24="; 32 32 }; 33 33 34 34 postPatch = ''
+4 -2
pkgs/development/python-modules/ansible-runner/default.nix
··· 3 3 , ansible-core 4 4 , buildPythonPackage 5 5 , fetchPypi 6 + , glibcLocales 6 7 , mock 7 8 , openssh 8 9 , pbr ··· 20 21 21 22 buildPythonPackage rec { 22 23 pname = "ansible-runner"; 23 - version = "2.3.0"; 24 + version = "2.3.1"; 24 25 format = "setuptools"; 25 26 26 27 disabled = pythonOlder "3.7"; 27 28 28 29 src = fetchPypi { 29 30 inherit pname version; 30 - hash = "sha256-mcTfu+reRGOXvRqeC/BQhz2KBrWSbVXSQIWyld2/Ecs="; 31 + hash = "sha256-HS8C06Ylc/OOaKI3kBGLeYF5HCvtK18i96NqIhwoh1Y="; 31 32 }; 32 33 33 34 nativeBuildInputs = [ ··· 45 46 46 47 checkInputs = [ 47 48 ansible-core # required to place ansible CLI onto the PATH in tests 49 + glibcLocales 48 50 pytestCheckHook 49 51 pytest-mock 50 52 pytest-timeout
+2 -2
pkgs/development/python-modules/ansible/core.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "ansible-core"; 27 - version = "2.13.5"; 27 + version = "2.14.0"; 28 28 29 29 src = fetchPypi { 30 30 inherit pname version; 31 - sha256 = "sha256-JtzZIY1VRMwVFE9gu1tjTyJ25HbIn0gbP2GcT53vFYg="; 31 + hash = "sha256-+ki0gctiO/ebuQPyIwl2gaDBPhtOx+eOfdfYWNNqNLI="; 32 32 }; 33 33 34 34 # ansible_connection is already wrapped, so don't pass it through
+2 -2
pkgs/development/python-modules/ansible/default.nix
··· 20 20 21 21 let 22 22 pname = "ansible"; 23 - version = "6.5.0"; 23 + version = "6.6.0"; 24 24 in 25 25 buildPythonPackage { 26 26 inherit pname version; ··· 30 30 31 31 src = fetchPypi { 32 32 inherit pname version; 33 - sha256 = "sha256-fAzc0RIaXxKrLaS90uFMLBU+ASFL/GprwVa2G9dAHFs="; 33 + sha256 = "sha256-4blAqNT0EhI+3jwUsly5nDyKTVNf0ECqv45Pt7Dk8JI="; 34 34 }; 35 35 36 36 postPatch = ''
+2 -2
pkgs/development/python-modules/bleak-retry-connector/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "bleak-retry-connector"; 15 - version = "2.8.4"; 15 + version = "2.8.5"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "Bluetooth-Devices"; 22 22 repo = pname; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-eXHgxjSmr+BH+kI3qLbjq+z+YGRbyrvYvDgx6xwt2os="; 24 + hash = "sha256-Uct040yI4tJkdQNBAJhr/aOjMRcGkTOAnm4pzmeHNZM="; 25 25 }; 26 26 27 27 postPatch = ''
+668 -406
pkgs/development/python-modules/johnnycanencrypt/Cargo.lock.patch
··· 1 1 diff --git a/Cargo.lock b/Cargo.lock 2 2 new file mode 100644 3 - index 0000000..84c37bc 3 + index 0000000..ae65889 4 4 --- /dev/null 5 5 +++ b/Cargo.lock 6 - @@ -0,0 +1,1188 @@ 6 + @@ -0,0 +1,1450 @@ 7 7 +# This file is automatically @generated by Cargo. 8 8 +# It is not intended for manual editing. 9 - +[[package]] 10 - +name = "addr2line" 11 - +version = "0.14.1" 12 - +source = "registry+https://github.com/rust-lang/crates.io-index" 13 - +checksum = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7" 14 - +dependencies = [ 15 - + "gimli", 16 - +] 9 + +version = 3 17 10 + 18 11 +[[package]] 19 12 +name = "adler" 20 - +version = "0.2.3" 13 + +version = "1.0.2" 21 14 +source = "registry+https://github.com/rust-lang/crates.io-index" 22 - +checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e" 15 + +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 23 16 + 24 17 +[[package]] 25 - +name = "aead" 26 - +version = "0.3.2" 18 + +name = "aho-corasick" 19 + +version = "0.7.19" 27 20 +source = "registry+https://github.com/rust-lang/crates.io-index" 28 - +checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331" 21 + +checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" 29 22 +dependencies = [ 30 - + "generic-array", 23 + + "memchr", 31 24 +] 32 25 + 33 26 +[[package]] 34 - +name = "aho-corasick" 35 - +version = "0.7.15" 27 + +name = "android_system_properties" 28 + +version = "0.1.5" 36 29 +source = "registry+https://github.com/rust-lang/crates.io-index" 37 - +checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5" 30 + +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 38 31 +dependencies = [ 39 - + "memchr", 32 + + "libc", 40 33 +] 41 34 + 42 35 +[[package]] 43 36 +name = "anyhow" 44 - +version = "1.0.37" 37 + +version = "1.0.66" 45 38 +source = "registry+https://github.com/rust-lang/crates.io-index" 46 - +checksum = "ee67c11feeac938fae061b232e38e0b6d94f97a9df10e6271319325ac4c56a86" 47 - + 48 - +[[package]] 49 - +name = "arrayref" 50 - +version = "0.3.6" 51 - +source = "registry+https://github.com/rust-lang/crates.io-index" 52 - +checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 53 - + 54 - +[[package]] 55 - +name = "arrayvec" 56 - +version = "0.5.2" 57 - +source = "registry+https://github.com/rust-lang/crates.io-index" 58 - +checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 39 + +checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" 59 40 + 60 41 +[[package]] 61 42 +name = "ascii-canvas" 62 - +version = "2.0.0" 43 + +version = "3.0.0" 63 44 +source = "registry+https://github.com/rust-lang/crates.io-index" 64 - +checksum = "ff8eb72df928aafb99fe5d37b383f2fe25bd2a765e3e5f7c365916b6f2463a29" 45 + +checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6" 65 46 +dependencies = [ 66 47 + "term", 67 48 +] ··· 79 60 + 80 61 +[[package]] 81 62 +name = "autocfg" 82 - +version = "1.0.1" 63 + +version = "1.1.0" 83 64 +source = "registry+https://github.com/rust-lang/crates.io-index" 84 - +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 65 + +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 85 66 + 86 67 +[[package]] 87 - +name = "backtrace" 88 - +version = "0.3.55" 68 + +name = "base64" 69 + +version = "0.12.3" 89 70 +source = "registry+https://github.com/rust-lang/crates.io-index" 90 - +checksum = "ef5140344c85b01f9bbb4d4b7288a8aa4b3287ccef913a14bcc78a1063623598" 91 - +dependencies = [ 92 - + "addr2line", 93 - + "cfg-if 1.0.0", 94 - + "libc", 95 - + "miniz_oxide", 96 - + "object", 97 - + "rustc-demangle", 98 - +] 71 + +checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" 99 72 + 100 73 +[[package]] 101 74 +name = "base64" 102 - +version = "0.13.0" 75 + +version = "0.13.1" 103 76 +source = "registry+https://github.com/rust-lang/crates.io-index" 104 - +checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 77 + +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 105 78 + 106 79 +[[package]] 107 80 +name = "bindgen" 108 - +version = "0.51.1" 81 + +version = "0.57.0" 109 82 +source = "registry+https://github.com/rust-lang/crates.io-index" 110 - +checksum = "ebd71393f1ec0509b553aa012b9b58e81dadbdff7130bd3b8cba576e69b32f75" 83 + +checksum = "fd4865004a46a0aafb2a0a5eb19d3c9fc46ee5f063a6cfc605c69ac9ecf5263d" 111 84 +dependencies = [ 112 85 + "bitflags", 113 86 + "cexpr", 114 - + "cfg-if 0.1.10", 115 87 + "clang-sys", 116 88 + "lazy_static", 89 + + "lazycell", 117 90 + "peeking_take_while", 118 91 + "proc-macro2", 119 92 + "quote", ··· 124 97 + 125 98 +[[package]] 126 99 +name = "bit-set" 127 - +version = "0.5.2" 100 + +version = "0.5.3" 128 101 +source = "registry+https://github.com/rust-lang/crates.io-index" 129 - +checksum = "6e11e16035ea35e4e5997b393eacbf6f63983188f7a2ad25bfb13465f5ad59de" 102 + +checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 130 103 +dependencies = [ 131 104 + "bit-vec", 132 105 +] ··· 139 112 + 140 113 +[[package]] 141 114 +name = "bitflags" 142 - +version = "1.2.1" 115 + +version = "1.3.2" 116 + +source = "registry+https://github.com/rust-lang/crates.io-index" 117 + +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 118 + + 119 + +[[package]] 120 + +name = "block-buffer" 121 + +version = "0.7.3" 143 122 +source = "registry+https://github.com/rust-lang/crates.io-index" 144 - +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 123 + +checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" 124 + +dependencies = [ 125 + + "block-padding", 126 + + "byte-tools", 127 + + "byteorder", 128 + + "generic-array 0.12.4", 129 + +] 145 130 + 146 131 +[[package]] 147 - +name = "blake2b_simd" 148 - +version = "0.5.11" 132 + +name = "block-padding" 133 + +version = "0.1.5" 149 134 +source = "registry+https://github.com/rust-lang/crates.io-index" 150 - +checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587" 135 + +checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" 151 136 +dependencies = [ 152 - + "arrayref", 153 - + "arrayvec", 154 - + "constant_time_eq", 137 + + "byte-tools", 155 138 +] 156 139 + 157 140 +[[package]] 158 141 +name = "buffered-reader" 159 - +version = "1.0.0" 142 + +version = "1.1.3" 160 143 +source = "registry+https://github.com/rust-lang/crates.io-index" 161 - +checksum = "f5711ccfa79a8167779ad2176d3334078f03b1579ddf8f42aa556196eba60a42" 144 + +checksum = "e9f82920285502602088677aeb65df0909b39c347b38565e553ba0363c242f65" 162 145 +dependencies = [ 163 146 + "bzip2", 164 147 + "flate2", ··· 166 149 +] 167 150 + 168 151 +[[package]] 152 + +name = "bumpalo" 153 + +version = "3.11.1" 154 + +source = "registry+https://github.com/rust-lang/crates.io-index" 155 + +checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" 156 + + 157 + +[[package]] 158 + +name = "byte-tools" 159 + +version = "0.3.1" 160 + +source = "registry+https://github.com/rust-lang/crates.io-index" 161 + +checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" 162 + + 163 + +[[package]] 169 164 +name = "byteorder" 170 - +version = "1.3.4" 165 + +version = "1.4.3" 171 166 +source = "registry+https://github.com/rust-lang/crates.io-index" 172 - +checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" 167 + +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 173 168 + 174 169 +[[package]] 175 170 +name = "bzip2" 176 - +version = "0.4.1" 171 + +version = "0.4.3" 177 172 +source = "registry+https://github.com/rust-lang/crates.io-index" 178 - +checksum = "275d84fe348b838dc49477d39770682839b3e73e21a3eadc07b12924f1a9fcbe" 173 + +checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0" 179 174 +dependencies = [ 180 175 + "bzip2-sys", 181 176 + "libc", ··· 183 178 + 184 179 +[[package]] 185 180 +name = "bzip2-sys" 186 - +version = "0.1.9+1.0.8" 181 + +version = "0.1.11+1.0.8" 187 182 +source = "registry+https://github.com/rust-lang/crates.io-index" 188 - +checksum = "ad3b39a260062fca31f7b0b12f207e8f2590a67d32ec7d59c20484b07ea7285e" 183 + +checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 189 184 +dependencies = [ 190 185 + "cc", 191 186 + "libc", ··· 194 189 + 195 190 +[[package]] 196 191 +name = "cc" 197 - +version = "1.0.66" 192 + +version = "1.0.76" 198 193 +source = "registry+https://github.com/rust-lang/crates.io-index" 199 - +checksum = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48" 194 + +checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f" 200 195 + 201 196 +[[package]] 202 197 +name = "cexpr" 203 - +version = "0.3.6" 198 + +version = "0.4.0" 204 199 +source = "registry+https://github.com/rust-lang/crates.io-index" 205 - +checksum = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d" 200 + +checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27" 206 201 +dependencies = [ 207 202 + "nom", 208 203 +] 209 204 + 210 205 +[[package]] 211 206 +name = "cfg-if" 212 - +version = "0.1.10" 213 - +source = "registry+https://github.com/rust-lang/crates.io-index" 214 - +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 215 - + 216 - +[[package]] 217 - +name = "cfg-if" 218 207 +version = "1.0.0" 219 208 +source = "registry+https://github.com/rust-lang/crates.io-index" 220 209 +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 221 210 + 222 211 +[[package]] 223 212 +name = "chrono" 224 - +version = "0.4.19" 213 + +version = "0.4.23" 225 214 +source = "registry+https://github.com/rust-lang/crates.io-index" 226 - +checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" 215 + +checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" 227 216 +dependencies = [ 228 - + "libc", 217 + + "iana-time-zone", 218 + + "js-sys", 229 219 + "num-integer", 230 220 + "num-traits", 231 221 + "time", 222 + + "wasm-bindgen", 232 223 + "winapi", 233 224 +] 234 225 + 235 226 +[[package]] 236 - +name = "cipher" 237 - +version = "0.2.5" 238 - +source = "registry+https://github.com/rust-lang/crates.io-index" 239 - +checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" 240 - +dependencies = [ 241 - + "generic-array", 242 - +] 243 - + 244 - +[[package]] 245 227 +name = "clang-sys" 246 - +version = "0.28.1" 228 + +version = "1.4.0" 247 229 +source = "registry+https://github.com/rust-lang/crates.io-index" 248 - +checksum = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853" 230 + +checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" 249 231 +dependencies = [ 250 232 + "glob", 251 233 + "libc", ··· 253 235 +] 254 236 + 255 237 +[[package]] 256 - +name = "cmac" 257 - +version = "0.5.1" 238 + +name = "codespan-reporting" 239 + +version = "0.11.1" 258 240 +source = "registry+https://github.com/rust-lang/crates.io-index" 259 - +checksum = "73d4de4f7724e5fe70addfb2bd37c2abd2f95084a429d7773b0b9645499b4272" 241 + +checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 260 242 +dependencies = [ 261 - + "crypto-mac", 262 - + "dbl", 243 + + "termcolor", 244 + + "unicode-width", 263 245 +] 264 246 + 265 247 +[[package]] 266 - +name = "constant_time_eq" 267 - +version = "0.1.5" 248 + +name = "core-foundation-sys" 249 + +version = "0.8.3" 268 250 +source = "registry+https://github.com/rust-lang/crates.io-index" 269 - +checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 251 + +checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 270 252 + 271 253 +[[package]] 272 254 +name = "crc32fast" 273 - +version = "1.2.1" 274 - +source = "registry+https://github.com/rust-lang/crates.io-index" 275 - +checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" 276 - +dependencies = [ 277 - + "cfg-if 1.0.0", 278 - +] 279 - + 280 - +[[package]] 281 - +name = "crossbeam-utils" 282 - +version = "0.8.1" 255 + +version = "1.3.2" 283 256 +source = "registry+https://github.com/rust-lang/crates.io-index" 284 - +checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d" 257 + +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 285 258 +dependencies = [ 286 - + "autocfg", 287 - + "cfg-if 1.0.0", 288 - + "lazy_static", 259 + + "cfg-if", 289 260 +] 290 261 + 291 262 +[[package]] ··· 295 266 +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 296 267 + 297 268 +[[package]] 298 - +name = "crypto-mac" 299 - +version = "0.10.0" 269 + +name = "cxx" 270 + +version = "1.0.82" 300 271 +source = "registry+https://github.com/rust-lang/crates.io-index" 301 - +checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6" 272 + +checksum = "d4a41a86530d0fe7f5d9ea779916b7cadd2d4f9add748b99c2c029cbbdfaf453" 302 273 +dependencies = [ 303 - + "cipher", 304 - + "generic-array", 305 - + "subtle", 274 + + "cc", 275 + + "cxxbridge-flags", 276 + + "cxxbridge-macro", 277 + + "link-cplusplus", 306 278 +] 307 279 + 308 280 +[[package]] 309 - +name = "ctor" 310 - +version = "0.1.17" 281 + +name = "cxx-build" 282 + +version = "1.0.82" 311 283 +source = "registry+https://github.com/rust-lang/crates.io-index" 312 - +checksum = "373c88d9506e2e9230f6107701b7d8425f4cb3f6df108ec3042a26e936666da5" 284 + +checksum = "06416d667ff3e3ad2df1cd8cd8afae5da26cf9cec4d0825040f88b5ca659a2f0" 313 285 +dependencies = [ 286 + + "cc", 287 + + "codespan-reporting", 288 + + "once_cell", 289 + + "proc-macro2", 314 290 + "quote", 291 + + "scratch", 315 292 + "syn", 316 293 +] 317 294 + 318 295 +[[package]] 319 - +name = "ctr" 320 - +version = "0.6.0" 296 + +name = "cxxbridge-flags" 297 + +version = "1.0.82" 321 298 +source = "registry+https://github.com/rust-lang/crates.io-index" 322 - +checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f" 323 - +dependencies = [ 324 - + "cipher", 325 - +] 299 + +checksum = "820a9a2af1669deeef27cb271f476ffd196a2c4b6731336011e0ba63e2c7cf71" 326 300 + 327 301 +[[package]] 328 - +name = "dbl" 329 - +version = "0.3.0" 302 + +name = "cxxbridge-macro" 303 + +version = "1.0.82" 330 304 +source = "registry+https://github.com/rust-lang/crates.io-index" 331 - +checksum = "2735145c3b9ba15f2d7a3ae8cdafcbc8c98a7bef7f62afe9d08bd99fbf7130de" 305 + +checksum = "a08a6e2fcc370a089ad3b4aaf54db3b1b4cee38ddabce5896b33eb693275f470" 332 306 +dependencies = [ 333 - + "generic-array", 307 + + "proc-macro2", 308 + + "quote", 309 + + "syn", 334 310 +] 335 311 + 336 312 +[[package]] 337 313 +name = "diff" 338 - +version = "0.1.12" 314 + +version = "0.1.13" 315 + +source = "registry+https://github.com/rust-lang/crates.io-index" 316 + +checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 317 + + 318 + +[[package]] 319 + +name = "digest" 320 + +version = "0.8.1" 339 321 +source = "registry+https://github.com/rust-lang/crates.io-index" 340 - +checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499" 322 + +checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" 323 + +dependencies = [ 324 + + "generic-array 0.12.4", 325 + +] 341 326 + 342 327 +[[package]] 343 328 +name = "digest" ··· 345 330 +source = "registry+https://github.com/rust-lang/crates.io-index" 346 331 +checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 347 332 +dependencies = [ 348 - + "generic-array", 333 + + "generic-array 0.14.6", 334 + +] 335 + + 336 + +[[package]] 337 + +name = "dirs-next" 338 + +version = "2.0.0" 339 + +source = "registry+https://github.com/rust-lang/crates.io-index" 340 + +checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 341 + +dependencies = [ 342 + + "cfg-if", 343 + + "dirs-sys-next", 349 344 +] 350 345 + 351 346 +[[package]] 352 - +name = "dirs" 353 - +version = "1.0.5" 347 + +name = "dirs-sys-next" 348 + +version = "0.1.2" 354 349 +source = "registry+https://github.com/rust-lang/crates.io-index" 355 - +checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901" 350 + +checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 356 351 +dependencies = [ 357 352 + "libc", 358 353 + "redox_users", ··· 361 356 + 362 357 +[[package]] 363 358 +name = "dyn-clone" 364 - +version = "1.0.4" 359 + +version = "1.0.9" 365 360 +source = "registry+https://github.com/rust-lang/crates.io-index" 366 - +checksum = "ee2626afccd7561a06cf1367e2950c4718ea04565e20fb5029b6c7d8ad09abcf" 361 + +checksum = "4f94fa09c2aeea5b8839e414b7b841bf429fd25b9c522116ac97ee87856d88b2" 367 362 + 368 363 +[[package]] 369 - +name = "eax" 370 - +version = "0.3.0" 364 + +name = "either" 365 + +version = "1.8.0" 366 + +source = "registry+https://github.com/rust-lang/crates.io-index" 367 + +checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" 368 + + 369 + +[[package]] 370 + +name = "ena" 371 + +version = "0.14.0" 371 372 +source = "registry+https://github.com/rust-lang/crates.io-index" 372 - +checksum = "e1f76e7a5e594b299a0fa9a99de627530725e341df41376aa342aecb2c5eb76e" 373 + +checksum = "d7402b94a93c24e742487327a7cd839dc9d36fec9de9fb25b09f2dae459f36c3" 373 374 +dependencies = [ 374 - + "aead", 375 - + "cipher", 376 - + "cmac", 377 - + "ctr", 378 - + "subtle", 375 + + "log", 379 376 +] 380 377 + 381 378 +[[package]] 382 - +name = "either" 383 - +version = "1.6.1" 379 + +name = "fake-simd" 380 + +version = "0.1.2" 384 381 +source = "registry+https://github.com/rust-lang/crates.io-index" 385 - +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 382 + +checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 386 383 + 387 384 +[[package]] 388 - +name = "ena" 389 - +version = "0.14.0" 385 + +name = "fastrand" 386 + +version = "1.8.0" 390 387 +source = "registry+https://github.com/rust-lang/crates.io-index" 391 - +checksum = "d7402b94a93c24e742487327a7cd839dc9d36fec9de9fb25b09f2dae459f36c3" 388 + +checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 392 389 +dependencies = [ 393 - + "log", 390 + + "instant", 394 391 +] 395 392 + 396 393 +[[package]] 397 394 +name = "fixedbitset" 398 - +version = "0.2.0" 395 + +version = "0.4.2" 399 396 +source = "registry+https://github.com/rust-lang/crates.io-index" 400 - +checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d" 397 + +checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 401 398 + 402 399 +[[package]] 403 400 +name = "flate2" 404 - +version = "1.0.19" 401 + +version = "1.0.24" 405 402 +source = "registry+https://github.com/rust-lang/crates.io-index" 406 - +checksum = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129" 403 + +checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 407 404 +dependencies = [ 408 - + "cfg-if 1.0.0", 409 405 + "crc32fast", 410 - + "libc", 411 406 + "miniz_oxide", 412 407 +] 413 408 + 414 409 +[[package]] 415 410 +name = "generic-array" 416 - +version = "0.14.4" 411 + +version = "0.12.4" 417 412 +source = "registry+https://github.com/rust-lang/crates.io-index" 418 - +checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" 413 + +checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" 419 414 +dependencies = [ 420 415 + "typenum", 421 - + "version_check 0.9.2", 416 + +] 417 + + 418 + +[[package]] 419 + +name = "generic-array" 420 + +version = "0.14.6" 421 + +source = "registry+https://github.com/rust-lang/crates.io-index" 422 + +checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 423 + +dependencies = [ 424 + + "typenum", 425 + + "version_check", 422 426 +] 423 427 + 424 428 +[[package]] ··· 427 431 +source = "registry+https://github.com/rust-lang/crates.io-index" 428 432 +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 429 433 +dependencies = [ 430 - + "cfg-if 1.0.0", 434 + + "cfg-if", 435 + + "js-sys", 431 436 + "libc", 432 437 + "wasi 0.9.0+wasi-snapshot-preview1", 438 + + "wasm-bindgen", 433 439 +] 434 440 + 435 441 +[[package]] 436 - +name = "ghost" 437 - +version = "0.1.2" 442 + +name = "getrandom" 443 + +version = "0.2.8" 438 444 +source = "registry+https://github.com/rust-lang/crates.io-index" 439 - +checksum = "1a5bcf1bbeab73aa4cf2fde60a846858dc036163c7c33bec309f8d17de785479" 445 + +checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 440 446 +dependencies = [ 441 - + "proc-macro2", 442 - + "quote", 443 - + "syn", 447 + + "cfg-if", 448 + + "js-sys", 449 + + "libc", 450 + + "wasi 0.11.0+wasi-snapshot-preview1", 451 + + "wasm-bindgen", 444 452 +] 445 453 + 446 454 +[[package]] 447 - +name = "gimli" 448 - +version = "0.23.0" 449 - +source = "registry+https://github.com/rust-lang/crates.io-index" 450 - +checksum = "f6503fe142514ca4799d4c26297c4248239fe8838d827db6bd6065c6ed29a6ce" 451 - + 452 - +[[package]] 453 455 +name = "glob" 454 456 +version = "0.3.0" 455 457 +source = "registry+https://github.com/rust-lang/crates.io-index" ··· 457 459 + 458 460 +[[package]] 459 461 +name = "hashbrown" 460 - +version = "0.9.1" 462 + +version = "0.12.3" 461 463 +source = "registry+https://github.com/rust-lang/crates.io-index" 462 - +checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" 464 + +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 463 465 + 464 466 +[[package]] 465 467 +name = "hermit-abi" 466 - +version = "0.1.17" 468 + +version = "0.1.19" 467 469 +source = "registry+https://github.com/rust-lang/crates.io-index" 468 - +checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8" 470 + +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 469 471 +dependencies = [ 470 472 + "libc", 471 473 +] 472 474 + 473 475 +[[package]] 474 - +name = "idna" 475 - +version = "0.2.0" 476 + +name = "iana-time-zone" 477 + +version = "0.1.53" 476 478 +source = "registry+https://github.com/rust-lang/crates.io-index" 477 - +checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" 479 + +checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 478 480 +dependencies = [ 479 - + "matches", 480 - + "unicode-bidi", 481 - + "unicode-normalization", 481 + + "android_system_properties", 482 + + "core-foundation-sys", 483 + + "iana-time-zone-haiku", 484 + + "js-sys", 485 + + "wasm-bindgen", 486 + + "winapi", 482 487 +] 483 488 + 484 489 +[[package]] 485 - +name = "indexmap" 486 - +version = "1.6.1" 490 + +name = "iana-time-zone-haiku" 491 + +version = "0.1.1" 487 492 +source = "registry+https://github.com/rust-lang/crates.io-index" 488 - +checksum = "4fb1fa934250de4de8aef298d81c729a7d33d8c239daa3a7575e6b92bfc7313b" 493 + +checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 489 494 +dependencies = [ 490 - + "autocfg", 491 - + "hashbrown", 495 + + "cxx", 496 + + "cxx-build", 492 497 +] 493 498 + 494 499 +[[package]] 495 - +name = "indoc" 496 - +version = "1.0.3" 500 + +name = "idna" 501 + +version = "0.3.0" 497 502 +source = "registry+https://github.com/rust-lang/crates.io-index" 498 - +checksum = "e5a75aeaaef0ce18b58056d306c27b07436fbb34b8816c53094b76dd81803136" 503 + +checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 499 504 +dependencies = [ 500 - + "unindent", 505 + + "unicode-bidi", 506 + + "unicode-normalization", 501 507 +] 502 508 + 503 509 +[[package]] 504 - +name = "instant" 505 - +version = "0.1.9" 510 + +name = "indexmap" 511 + +version = "1.9.2" 506 512 +source = "registry+https://github.com/rust-lang/crates.io-index" 507 - +checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" 513 + +checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 508 514 +dependencies = [ 509 - + "cfg-if 1.0.0", 515 + + "autocfg", 516 + + "hashbrown", 510 517 +] 511 518 + 512 519 +[[package]] 513 - +name = "inventory" 514 - +version = "0.1.10" 520 + +name = "indoc" 521 + +version = "1.0.7" 515 522 +source = "registry+https://github.com/rust-lang/crates.io-index" 516 - +checksum = "0f0f7efb804ec95e33db9ad49e4252f049e37e8b0a4652e3cd61f7999f2eff7f" 517 - +dependencies = [ 518 - + "ctor", 519 - + "ghost", 520 - + "inventory-impl", 521 - +] 523 + +checksum = "adab1eaa3408fb7f0c777a73e7465fd5656136fc93b670eb6df3c88c2c1344e3" 522 524 + 523 525 +[[package]] 524 - +name = "inventory-impl" 525 - +version = "0.1.10" 526 + +name = "instant" 527 + +version = "0.1.12" 526 528 +source = "registry+https://github.com/rust-lang/crates.io-index" 527 - +checksum = "75c094e94816723ab936484666968f5b58060492e880f3c8d00489a1e244fa51" 529 + +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 528 530 +dependencies = [ 529 - + "proc-macro2", 530 - + "quote", 531 - + "syn", 531 + + "cfg-if", 532 532 +] 533 533 + 534 534 +[[package]] 535 535 +name = "itertools" 536 - +version = "0.9.0" 536 + +version = "0.10.5" 537 537 +source = "registry+https://github.com/rust-lang/crates.io-index" 538 - +checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" 538 + +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 539 539 +dependencies = [ 540 540 + "either", 541 541 +] 542 542 + 543 543 +[[package]] 544 544 +name = "johnnycanencrypt" 545 - +version = "0.5.0" 545 + +version = "0.11.0" 546 546 +dependencies = [ 547 547 + "anyhow", 548 548 + "chrono", 549 549 + "pyo3", 550 550 + "sequoia-openpgp", 551 + + "sshkeys", 551 552 + "talktosc", 553 + + "tempfile", 554 + +] 555 + + 556 + +[[package]] 557 + +name = "js-sys" 558 + +version = "0.3.60" 559 + +source = "registry+https://github.com/rust-lang/crates.io-index" 560 + +checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 561 + +dependencies = [ 562 + + "wasm-bindgen", 552 563 +] 553 564 + 554 565 +[[package]] 555 566 +name = "lalrpop" 556 - +version = "0.19.3" 567 + +version = "0.19.8" 557 568 +source = "registry+https://github.com/rust-lang/crates.io-index" 558 - +checksum = "5c64e04d8ea9c95c2135dfc4298088eafaf956bc90ba372eb1bea4f715634587" 569 + +checksum = "b30455341b0e18f276fa64540aff54deafb54c589de6aca68659c63dd2d5d823" 559 570 +dependencies = [ 560 571 + "ascii-canvas", 561 572 + "atty", ··· 565 576 + "itertools", 566 577 + "lalrpop-util", 567 578 + "petgraph", 568 - + "pico-args", 569 579 + "regex", 570 580 + "regex-syntax", 571 581 + "string_cache", ··· 576 586 + 577 587 +[[package]] 578 588 +name = "lalrpop-util" 579 - +version = "0.19.3" 589 + +version = "0.19.8" 580 590 +source = "registry+https://github.com/rust-lang/crates.io-index" 581 - +checksum = "f9de203e2fa3e883364fcc778a1293ab4d936f6cff400433013c20105df178c5" 582 - +dependencies = [ 583 - + "regex", 584 - +] 591 + +checksum = "bcf796c978e9b4d983414f4caedc9273aa33ee214c5b887bd55fde84c85d2dc4" 585 592 + 586 593 +[[package]] 587 594 +name = "lazy_static" ··· 590 597 +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 591 598 + 592 599 +[[package]] 600 + +name = "lazycell" 601 + +version = "1.3.0" 602 + +source = "registry+https://github.com/rust-lang/crates.io-index" 603 + +checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 604 + + 605 + +[[package]] 593 606 +name = "libc" 594 - +version = "0.2.81" 607 + +version = "0.2.137" 595 608 +source = "registry+https://github.com/rust-lang/crates.io-index" 596 - +checksum = "1482821306169ec4d07f6aca392a4681f66c75c9918aa49641a2595db64053cb" 609 + +checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" 597 610 + 598 611 +[[package]] 599 612 +name = "libloading" 600 - +version = "0.5.2" 613 + +version = "0.7.4" 601 614 +source = "registry+https://github.com/rust-lang/crates.io-index" 602 - +checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" 615 + +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 603 616 +dependencies = [ 604 - + "cc", 617 + + "cfg-if", 605 618 + "winapi", 606 619 +] 607 620 + 608 621 +[[package]] 622 + +name = "link-cplusplus" 623 + +version = "1.0.7" 624 + +source = "registry+https://github.com/rust-lang/crates.io-index" 625 + +checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" 626 + +dependencies = [ 627 + + "cc", 628 + +] 629 + + 630 + +[[package]] 609 631 +name = "lock_api" 610 - +version = "0.4.2" 632 + +version = "0.4.9" 611 633 +source = "registry+https://github.com/rust-lang/crates.io-index" 612 - +checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312" 634 + +checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 613 635 +dependencies = [ 636 + + "autocfg", 614 637 + "scopeguard", 615 638 +] 616 639 + 617 640 +[[package]] 618 641 +name = "log" 619 - +version = "0.4.11" 642 + +version = "0.4.17" 620 643 +source = "registry+https://github.com/rust-lang/crates.io-index" 621 - +checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b" 644 + +checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 622 645 +dependencies = [ 623 - + "cfg-if 0.1.10", 646 + + "cfg-if", 624 647 +] 625 648 + 626 649 +[[package]] 627 - +name = "matches" 628 - +version = "0.1.8" 650 + +name = "memchr" 651 + +version = "2.5.0" 629 652 +source = "registry+https://github.com/rust-lang/crates.io-index" 630 - +checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" 653 + +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 631 654 + 632 655 +[[package]] 633 - +name = "memchr" 634 - +version = "2.3.4" 656 + +name = "memoffset" 657 + +version = "0.6.5" 635 658 +source = "registry+https://github.com/rust-lang/crates.io-index" 636 - +checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" 659 + +checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 660 + +dependencies = [ 661 + + "autocfg", 662 + +] 637 663 + 638 664 +[[package]] 639 665 +name = "memsec" 640 - +version = "0.6.0" 666 + +version = "0.6.2" 641 667 +source = "registry+https://github.com/rust-lang/crates.io-index" 642 - +checksum = "2af4f95d8737f4ffafbd1fb3c703cdc898868a244a59786793cba0520ebdcbdd" 668 + +checksum = "9ac78937f19a0c7807e45a931eac41f766f210173ec664ec046d58e6d388a5cb" 643 669 + 644 670 +[[package]] 645 671 +name = "miniz_oxide" 646 - +version = "0.4.3" 672 + +version = "0.5.4" 647 673 +source = "registry+https://github.com/rust-lang/crates.io-index" 648 - +checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d" 674 + +checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" 649 675 +dependencies = [ 650 676 + "adler", 651 - + "autocfg", 652 677 +] 653 678 + 654 679 +[[package]] 655 680 +name = "nettle" 656 - +version = "7.0.0" 681 + +version = "7.2.0" 657 682 +source = "registry+https://github.com/rust-lang/crates.io-index" 658 - +checksum = "b1afae85450b829ad720f2827e3b07d78e06b5521cfe5ed72808a9f593e7cdd8" 683 + +checksum = "f5d193a809310369c5d16e45bc0a88cb27935edd5d3375bcfc2371b167694035" 659 684 +dependencies = [ 660 - + "getrandom", 685 + + "getrandom 0.2.8", 661 686 + "libc", 662 687 + "nettle-sys", 663 688 + "thiserror", ··· 665 690 + 666 691 +[[package]] 667 692 +name = "nettle-sys" 668 - +version = "2.0.4" 693 + +version = "2.1.0" 669 694 +source = "registry+https://github.com/rust-lang/crates.io-index" 670 - +checksum = "b8629333ff5f3b74d251dae253e383cda9242410fac4244a4fe855469be101fb" 695 + +checksum = "b13b685c7883e3a32196ccf3ce594947ec37ace43d74e157de7ca03d3fe62d17" 671 696 +dependencies = [ 672 697 + "bindgen", 698 + + "cc", 699 + + "libc", 673 700 + "pkg-config", 701 + + "tempfile", 702 + + "vcpkg", 674 703 +] 675 704 + 676 705 +[[package]] ··· 681 710 + 682 711 +[[package]] 683 712 +name = "nom" 684 - +version = "4.2.3" 713 + +version = "5.1.2" 685 714 +source = "registry+https://github.com/rust-lang/crates.io-index" 686 - +checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" 715 + +checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af" 687 716 +dependencies = [ 688 717 + "memchr", 689 - + "version_check 0.1.5", 718 + + "version_check", 690 719 +] 691 720 + 692 721 +[[package]] 693 722 +name = "num-integer" 694 - +version = "0.1.44" 723 + +version = "0.1.45" 695 724 +source = "registry+https://github.com/rust-lang/crates.io-index" 696 - +checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" 725 + +checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 697 726 +dependencies = [ 698 727 + "autocfg", 699 728 + "num-traits", ··· 701 730 + 702 731 +[[package]] 703 732 +name = "num-traits" 704 - +version = "0.2.14" 733 + +version = "0.2.15" 705 734 +source = "registry+https://github.com/rust-lang/crates.io-index" 706 - +checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" 735 + +checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 707 736 +dependencies = [ 708 737 + "autocfg", 709 738 +] 710 739 + 711 740 +[[package]] 712 - +name = "object" 713 - +version = "0.22.0" 741 + +name = "once_cell" 742 + +version = "1.16.0" 743 + +source = "registry+https://github.com/rust-lang/crates.io-index" 744 + +checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" 745 + + 746 + +[[package]] 747 + +name = "opaque-debug" 748 + +version = "0.2.3" 714 749 +source = "registry+https://github.com/rust-lang/crates.io-index" 715 - +checksum = "8d3b63360ec3cb337817c2dbd47ab4a0f170d285d8e5a2064600f3def1402397" 750 + +checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" 716 751 + 717 752 +[[package]] 718 753 +name = "parking_lot" 719 - +version = "0.11.1" 754 + +version = "0.12.1" 720 755 +source = "registry+https://github.com/rust-lang/crates.io-index" 721 - +checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb" 756 + +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 722 757 +dependencies = [ 723 - + "instant", 724 758 + "lock_api", 725 759 + "parking_lot_core", 726 760 +] 727 761 + 728 762 +[[package]] 729 763 +name = "parking_lot_core" 730 - +version = "0.8.2" 764 + +version = "0.9.4" 731 765 +source = "registry+https://github.com/rust-lang/crates.io-index" 732 - +checksum = "9ccb628cad4f84851442432c60ad8e1f607e29752d0bf072cbd0baf28aa34272" 766 + +checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0" 733 767 +dependencies = [ 734 - + "cfg-if 1.0.0", 735 - + "instant", 768 + + "cfg-if", 736 769 + "libc", 737 770 + "redox_syscall", 738 771 + "smallvec", 739 - + "winapi", 772 + + "windows-sys", 740 773 +] 741 774 + 742 775 +[[package]] 743 - +name = "paste" 744 - +version = "1.0.4" 745 - +source = "registry+https://github.com/rust-lang/crates.io-index" 746 - +checksum = "c5d65c4d95931acda4498f675e332fcbdc9a06705cd07086c510e9b6009cd1c1" 747 - + 748 - +[[package]] 749 776 +name = "pcsc" 750 - +version = "2.4.0" 777 + +version = "2.7.0" 751 778 +source = "registry+https://github.com/rust-lang/crates.io-index" 752 - +checksum = "88e09a8d8705a2c9b1ffe1f9dd9580efe3f8e80c19fc9f99038fe99b7bb56c83" 779 + +checksum = "7e29e4de78a433aeecd06fb5bd55a0f9fde11dc85a14c22d482972c7edc4fdc4" 753 780 +dependencies = [ 754 781 + "bitflags", 755 782 + "pcsc-sys", ··· 772 799 + 773 800 +[[package]] 774 801 +name = "petgraph" 775 - +version = "0.5.1" 802 + +version = "0.6.2" 776 803 +source = "registry+https://github.com/rust-lang/crates.io-index" 777 - +checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7" 804 + +checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143" 778 805 +dependencies = [ 779 806 + "fixedbitset", 780 807 + "indexmap", ··· 782 809 + 783 810 +[[package]] 784 811 +name = "phf_shared" 785 - +version = "0.8.0" 812 + +version = "0.10.0" 786 813 +source = "registry+https://github.com/rust-lang/crates.io-index" 787 - +checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 814 + +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 788 815 +dependencies = [ 789 816 + "siphasher", 790 817 +] 791 818 + 792 819 +[[package]] 793 - +name = "pico-args" 794 - +version = "0.3.4" 820 + +name = "pkg-config" 821 + +version = "0.3.26" 795 822 +source = "registry+https://github.com/rust-lang/crates.io-index" 796 - +checksum = "28b9b4df73455c861d7cbf8be42f01d3b373ed7f02e378d55fa84eafc6f638b1" 823 + +checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 797 824 + 798 825 +[[package]] 799 - +name = "pkg-config" 800 - +version = "0.3.19" 826 + +name = "ppv-lite86" 827 + +version = "0.2.17" 801 828 +source = "registry+https://github.com/rust-lang/crates.io-index" 802 - +checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c" 829 + +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 803 830 + 804 831 +[[package]] 805 832 +name = "precomputed-hash" ··· 809 836 + 810 837 +[[package]] 811 838 +name = "proc-macro2" 812 - +version = "1.0.24" 839 + +version = "1.0.47" 813 840 +source = "registry+https://github.com/rust-lang/crates.io-index" 814 - +checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" 841 + +checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" 815 842 +dependencies = [ 816 - + "unicode-xid", 843 + + "unicode-ident", 817 844 +] 818 845 + 819 846 +[[package]] 820 847 +name = "pyo3" 821 - +version = "0.13.0" 848 + +version = "0.17.3" 822 849 +source = "registry+https://github.com/rust-lang/crates.io-index" 823 - +checksum = "5cdd01a4c2719dd1f3ceab0875fa1a2c2cd3c619477349d78f43cd716b345436" 850 + +checksum = "268be0c73583c183f2b14052337465768c07726936a260f480f0857cb95ba543" 824 851 +dependencies = [ 825 - + "cfg-if 1.0.0", 826 - + "ctor", 852 + + "cfg-if", 827 853 + "indoc", 828 - + "inventory", 829 854 + "libc", 855 + + "memoffset", 830 856 + "parking_lot", 831 - + "paste", 857 + + "pyo3-build-config", 858 + + "pyo3-ffi", 832 859 + "pyo3-macros", 833 860 + "unindent", 834 861 +] 835 862 + 836 863 +[[package]] 864 + +name = "pyo3-build-config" 865 + +version = "0.17.3" 866 + +source = "registry+https://github.com/rust-lang/crates.io-index" 867 + +checksum = "28fcd1e73f06ec85bf3280c48c67e731d8290ad3d730f8be9dc07946923005c8" 868 + +dependencies = [ 869 + + "once_cell", 870 + + "target-lexicon", 871 + +] 872 + + 873 + +[[package]] 874 + +name = "pyo3-ffi" 875 + +version = "0.17.3" 876 + +source = "registry+https://github.com/rust-lang/crates.io-index" 877 + +checksum = "0f6cb136e222e49115b3c51c32792886defbfb0adead26a688142b346a0b9ffc" 878 + +dependencies = [ 879 + + "libc", 880 + + "pyo3-build-config", 881 + +] 882 + + 883 + +[[package]] 837 884 +name = "pyo3-macros" 838 - +version = "0.13.0" 885 + +version = "0.17.3" 839 886 +source = "registry+https://github.com/rust-lang/crates.io-index" 840 - +checksum = "7f8218769d13e354f841d559a19b0cf22cfd55959c7046ef594e5f34dbe46d16" 887 + +checksum = "94144a1266e236b1c932682136dc35a9dee8d3589728f68130c7c3861ef96b28" 841 888 +dependencies = [ 889 + + "proc-macro2", 842 890 + "pyo3-macros-backend", 843 891 + "quote", 844 892 + "syn", ··· 846 894 + 847 895 +[[package]] 848 896 +name = "pyo3-macros-backend" 849 - +version = "0.13.0" 897 + +version = "0.17.3" 850 898 +source = "registry+https://github.com/rust-lang/crates.io-index" 851 - +checksum = "fc4da0bfdf76f0a5971c698f2cb6b3f832a6f80f16dedeeb3f123eb0431ecce2" 899 + +checksum = "c8df9be978a2d2f0cdebabb03206ed73b11314701a5bfe71b0d753b81997777f" 852 900 +dependencies = [ 853 901 + "proc-macro2", 854 902 + "quote", ··· 857 905 + 858 906 +[[package]] 859 907 +name = "quote" 860 - +version = "1.0.8" 908 + +version = "1.0.21" 861 909 +source = "registry+https://github.com/rust-lang/crates.io-index" 862 - +checksum = "991431c3519a3f36861882da93630ce66b52918dcf1b8e2fd66b397fc96f28df" 910 + +checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 863 911 +dependencies = [ 864 912 + "proc-macro2", 865 913 +] 866 914 + 867 915 +[[package]] 916 + +name = "rand" 917 + +version = "0.7.3" 918 + +source = "registry+https://github.com/rust-lang/crates.io-index" 919 + +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 920 + +dependencies = [ 921 + + "getrandom 0.1.16", 922 + + "libc", 923 + + "rand_chacha", 924 + + "rand_core", 925 + + "rand_hc", 926 + +] 927 + + 928 + +[[package]] 929 + +name = "rand_chacha" 930 + +version = "0.2.2" 931 + +source = "registry+https://github.com/rust-lang/crates.io-index" 932 + +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 933 + +dependencies = [ 934 + + "ppv-lite86", 935 + + "rand_core", 936 + +] 937 + + 938 + +[[package]] 939 + +name = "rand_core" 940 + +version = "0.5.1" 941 + +source = "registry+https://github.com/rust-lang/crates.io-index" 942 + +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 943 + +dependencies = [ 944 + + "getrandom 0.1.16", 945 + +] 946 + + 947 + +[[package]] 948 + +name = "rand_hc" 949 + +version = "0.2.0" 950 + +source = "registry+https://github.com/rust-lang/crates.io-index" 951 + +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 952 + +dependencies = [ 953 + + "rand_core", 954 + +] 955 + + 956 + +[[package]] 868 957 +name = "redox_syscall" 869 - +version = "0.1.57" 958 + +version = "0.2.16" 870 959 +source = "registry+https://github.com/rust-lang/crates.io-index" 871 - +checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 960 + +checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 961 + +dependencies = [ 962 + + "bitflags", 963 + +] 872 964 + 873 965 +[[package]] 874 966 +name = "redox_users" 875 - +version = "0.3.5" 967 + +version = "0.4.3" 876 968 +source = "registry+https://github.com/rust-lang/crates.io-index" 877 - +checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d" 969 + +checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 878 970 +dependencies = [ 879 - + "getrandom", 971 + + "getrandom 0.2.8", 880 972 + "redox_syscall", 881 - + "rust-argon2", 973 + + "thiserror", 882 974 +] 883 975 + 884 976 +[[package]] 885 977 +name = "regex" 886 - +version = "1.4.2" 978 + +version = "1.7.0" 887 979 +source = "registry+https://github.com/rust-lang/crates.io-index" 888 - +checksum = "38cf2c13ed4745de91a5eb834e11c00bcc3709e773173b2ce4c56c9fbde04b9c" 980 + +checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" 889 981 +dependencies = [ 890 982 + "aho-corasick", 891 983 + "memchr", 892 984 + "regex-syntax", 893 - + "thread_local", 894 985 +] 895 986 + 896 987 +[[package]] 897 988 +name = "regex-syntax" 898 - +version = "0.6.21" 989 + +version = "0.6.28" 899 990 +source = "registry+https://github.com/rust-lang/crates.io-index" 900 - +checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189" 991 + +checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 901 992 + 902 993 +[[package]] 903 - +name = "rpassword" 904 - +version = "5.0.0" 994 + +name = "remove_dir_all" 995 + +version = "0.5.3" 905 996 +source = "registry+https://github.com/rust-lang/crates.io-index" 906 - +checksum = "d755237fc0f99d98641540e66abac8bc46a0652f19148ac9e21de2da06b326c9" 997 + +checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 907 998 +dependencies = [ 908 - + "libc", 909 999 + "winapi", 910 1000 +] 911 1001 + 912 1002 +[[package]] 913 - +name = "rust-argon2" 914 - +version = "0.8.3" 1003 + +name = "rustc-hash" 1004 + +version = "1.1.0" 915 1005 +source = "registry+https://github.com/rust-lang/crates.io-index" 916 - +checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb" 917 - +dependencies = [ 918 - + "base64", 919 - + "blake2b_simd", 920 - + "constant_time_eq", 921 - + "crossbeam-utils", 922 - +] 1006 + +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 923 1007 + 924 1008 +[[package]] 925 - +name = "rustc-demangle" 926 - +version = "0.1.18" 1009 + +name = "rustversion" 1010 + +version = "1.0.9" 927 1011 +source = "registry+https://github.com/rust-lang/crates.io-index" 928 - +checksum = "6e3bad0ee36814ca07d7968269dd4b7ec89ec2da10c4bb613928d3077083c232" 1012 + +checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" 929 1013 + 930 1014 +[[package]] 931 - +name = "rustc-hash" 1015 + +name = "scopeguard" 932 1016 +version = "1.1.0" 933 1017 +source = "registry+https://github.com/rust-lang/crates.io-index" 934 - +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1018 + +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 935 1019 + 936 1020 +[[package]] 937 - +name = "scopeguard" 938 - +version = "1.1.0" 1021 + +name = "scratch" 1022 + +version = "1.0.2" 939 1023 +source = "registry+https://github.com/rust-lang/crates.io-index" 940 - +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1024 + +checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" 941 1025 + 942 1026 +[[package]] 943 1027 +name = "sequoia-openpgp" 944 - +version = "1.0.0" 1028 + +version = "1.11.0" 945 1029 +source = "registry+https://github.com/rust-lang/crates.io-index" 946 - +checksum = "664de0a9388e38d0f350547056f18fcc03f78d85e5a49fa4fa8927ca6aea1424" 1030 + +checksum = "50d9033c24b1d41fdfab2bbde66005d324625b4abee2af2aea6135bdd9543ff7" 947 1031 +dependencies = [ 948 1032 + "anyhow", 949 - + "backtrace", 950 - + "base64", 1033 + + "base64 0.13.1", 951 1034 + "buffered-reader", 952 1035 + "bzip2", 953 1036 + "chrono", 954 1037 + "dyn-clone", 955 - + "eax", 956 1038 + "flate2", 1039 + + "getrandom 0.2.8", 957 1040 + "idna", 958 1041 + "lalrpop", 959 1042 + "lalrpop-util", ··· 961 1044 + "libc", 962 1045 + "memsec", 963 1046 + "nettle", 1047 + + "rand", 964 1048 + "regex", 1049 + + "regex-syntax", 965 1050 + "sha1collisiondetection", 966 1051 + "thiserror", 967 - + "unicode-normalization", 1052 + + "xxhash-rust", 968 1053 +] 969 1054 + 970 1055 +[[package]] 971 1056 +name = "sha1collisiondetection" 972 - +version = "0.2.3" 1057 + +version = "0.2.6" 1058 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1059 + +checksum = "c66558a774ef5044cb4a834db5f5c7f95e139d2341d7f502fe6034afa7082461" 1060 + +dependencies = [ 1061 + + "digest 0.9.0", 1062 + + "generic-array 0.14.6", 1063 + +] 1064 + + 1065 + +[[package]] 1066 + +name = "sha2" 1067 + +version = "0.8.2" 973 1068 +source = "registry+https://github.com/rust-lang/crates.io-index" 974 - +checksum = "d7a6cf187c4059b3e63de2358b7e2f9a2261b6f3fd8ef4e7342308d0863ed082" 1069 + +checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69" 975 1070 +dependencies = [ 976 - + "digest", 977 - + "generic-array", 978 - + "libc", 1071 + + "block-buffer", 1072 + + "digest 0.8.1", 1073 + + "fake-simd", 1074 + + "opaque-debug", 979 1075 +] 980 1076 + 981 1077 +[[package]] ··· 986 1082 + 987 1083 +[[package]] 988 1084 +name = "siphasher" 989 - +version = "0.3.3" 1085 + +version = "0.3.10" 990 1086 +source = "registry+https://github.com/rust-lang/crates.io-index" 991 - +checksum = "fa8f3741c7372e75519bd9346068370c9cdaabcc1f9599cbcf2a2719352286b7" 1087 + +checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 992 1088 + 993 1089 +[[package]] 994 1090 +name = "smallvec" 995 - +version = "1.6.0" 1091 + +version = "1.10.0" 1092 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1093 + +checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 1094 + + 1095 + +[[package]] 1096 + +name = "sshkeys" 1097 + +version = "0.3.2" 996 1098 +source = "registry+https://github.com/rust-lang/crates.io-index" 997 - +checksum = "1a55ca5f3b68e41c979bf8c46a6f1da892ca4db8f94023ce0bd32407573b1ac0" 1099 + +checksum = "c926cb006a77964474a13a86aa0135ea82c9fd43e6793a1151cc54143db6637c" 1100 + +dependencies = [ 1101 + + "base64 0.12.3", 1102 + + "byteorder", 1103 + + "sha2", 1104 + +] 998 1105 + 999 1106 +[[package]] 1000 1107 +name = "string_cache" 1001 - +version = "0.8.1" 1108 + +version = "0.8.4" 1002 1109 +source = "registry+https://github.com/rust-lang/crates.io-index" 1003 - +checksum = "8ddb1139b5353f96e429e1a5e19fbaf663bddedaa06d1dbd49f82e352601209a" 1110 + +checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 1004 1111 +dependencies = [ 1005 - + "lazy_static", 1006 1112 + "new_debug_unreachable", 1113 + + "once_cell", 1114 + + "parking_lot", 1007 1115 + "phf_shared", 1008 1116 + "precomputed-hash", 1009 1117 +] 1010 1118 + 1011 1119 +[[package]] 1012 - +name = "subtle" 1013 - +version = "2.4.0" 1014 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1015 - +checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2" 1016 - + 1017 - +[[package]] 1018 1120 +name = "syn" 1019 - +version = "1.0.57" 1121 + +version = "1.0.103" 1020 1122 +source = "registry+https://github.com/rust-lang/crates.io-index" 1021 - +checksum = "4211ce9909eb971f111059df92c45640aad50a619cf55cd76476be803c4c68e6" 1123 + +checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" 1022 1124 +dependencies = [ 1023 1125 + "proc-macro2", 1024 1126 + "quote", 1025 - + "unicode-xid", 1127 + + "unicode-ident", 1026 1128 +] 1027 1129 + 1028 1130 +[[package]] 1029 1131 +name = "talktosc" 1030 - +version = "0.1.1" 1132 + +version = "0.1.3" 1031 1133 +source = "registry+https://github.com/rust-lang/crates.io-index" 1032 - +checksum = "eda5fee425f91e5a4083946f4468948f59cc16412cdcd659554e474c647a5645" 1134 + +checksum = "d165e1d4852d6a986a400f085b39c2786f9647aa7af53aabe168caa11629c28f" 1033 1135 +dependencies = [ 1034 1136 + "pcsc", 1035 - + "rpassword", 1036 1137 + "thiserror", 1037 1138 +] 1038 1139 + 1039 1140 +[[package]] 1141 + +name = "target-lexicon" 1142 + +version = "0.12.5" 1143 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1144 + +checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d" 1145 + + 1146 + +[[package]] 1147 + +name = "tempfile" 1148 + +version = "3.3.0" 1149 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1150 + +checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 1151 + +dependencies = [ 1152 + + "cfg-if", 1153 + + "fastrand", 1154 + + "libc", 1155 + + "redox_syscall", 1156 + + "remove_dir_all", 1157 + + "winapi", 1158 + +] 1159 + + 1160 + +[[package]] 1040 1161 +name = "term" 1041 - +version = "0.5.2" 1162 + +version = "0.7.0" 1042 1163 +source = "registry+https://github.com/rust-lang/crates.io-index" 1043 - +checksum = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42" 1164 + +checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" 1044 1165 +dependencies = [ 1045 - + "byteorder", 1046 - + "dirs", 1166 + + "dirs-next", 1167 + + "rustversion", 1047 1168 + "winapi", 1048 1169 +] 1049 1170 + 1050 1171 +[[package]] 1172 + +name = "termcolor" 1173 + +version = "1.1.3" 1174 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1175 + +checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 1176 + +dependencies = [ 1177 + + "winapi-util", 1178 + +] 1179 + + 1180 + +[[package]] 1051 1181 +name = "thiserror" 1052 - +version = "1.0.23" 1182 + +version = "1.0.37" 1053 1183 +source = "registry+https://github.com/rust-lang/crates.io-index" 1054 - +checksum = "76cc616c6abf8c8928e2fdcc0dbfab37175edd8fb49a4641066ad1364fdab146" 1184 + +checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" 1055 1185 +dependencies = [ 1056 1186 + "thiserror-impl", 1057 1187 +] 1058 1188 + 1059 1189 +[[package]] 1060 1190 +name = "thiserror-impl" 1061 - +version = "1.0.23" 1191 + +version = "1.0.37" 1062 1192 +source = "registry+https://github.com/rust-lang/crates.io-index" 1063 - +checksum = "9be73a2caec27583d0046ef3796c3794f868a5bc813db689eed00c7631275cd1" 1193 + +checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" 1064 1194 +dependencies = [ 1065 1195 + "proc-macro2", 1066 1196 + "quote", ··· 1068 1198 +] 1069 1199 + 1070 1200 +[[package]] 1071 - +name = "thread_local" 1072 - +version = "1.0.1" 1073 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1074 - +checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" 1075 - +dependencies = [ 1076 - + "lazy_static", 1077 - +] 1078 - + 1079 - +[[package]] 1080 1201 +name = "time" 1081 1202 +version = "0.1.44" 1082 1203 +source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1098 1219 + 1099 1220 +[[package]] 1100 1221 +name = "tinyvec" 1101 - +version = "1.1.0" 1222 + +version = "1.6.0" 1102 1223 +source = "registry+https://github.com/rust-lang/crates.io-index" 1103 - +checksum = "ccf8dbc19eb42fba10e8feaaec282fb50e2c14b2726d6301dbfeed0f73306a6f" 1224 + +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1104 1225 +dependencies = [ 1105 1226 + "tinyvec_macros", 1106 1227 +] ··· 1113 1234 + 1114 1235 +[[package]] 1115 1236 +name = "typenum" 1116 - +version = "1.12.0" 1237 + +version = "1.15.0" 1117 1238 +source = "registry+https://github.com/rust-lang/crates.io-index" 1118 - +checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33" 1239 + +checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 1119 1240 + 1120 1241 +[[package]] 1121 1242 +name = "unicode-bidi" 1122 - +version = "0.3.4" 1243 + +version = "0.3.8" 1244 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1245 + +checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 1246 + + 1247 + +[[package]] 1248 + +name = "unicode-ident" 1249 + +version = "1.0.5" 1123 1250 +source = "registry+https://github.com/rust-lang/crates.io-index" 1124 - +checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" 1125 - +dependencies = [ 1126 - + "matches", 1127 - +] 1251 + +checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" 1128 1252 + 1129 1253 +[[package]] 1130 1254 +name = "unicode-normalization" 1131 - +version = "0.1.16" 1255 + +version = "0.1.22" 1132 1256 +source = "registry+https://github.com/rust-lang/crates.io-index" 1133 - +checksum = "a13e63ab62dbe32aeee58d1c5408d35c36c392bba5d9d3142287219721afe606" 1257 + +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 1134 1258 +dependencies = [ 1135 1259 + "tinyvec", 1136 1260 +] 1261 + + 1262 + +[[package]] 1263 + +name = "unicode-width" 1264 + +version = "0.1.10" 1265 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1266 + +checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 1137 1267 + 1138 1268 +[[package]] 1139 1269 +name = "unicode-xid" 1140 - +version = "0.2.1" 1270 + +version = "0.2.4" 1141 1271 +source = "registry+https://github.com/rust-lang/crates.io-index" 1142 - +checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" 1272 + +checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 1143 1273 + 1144 1274 +[[package]] 1145 1275 +name = "unindent" 1146 - +version = "0.1.7" 1276 + +version = "0.1.10" 1147 1277 +source = "registry+https://github.com/rust-lang/crates.io-index" 1148 - +checksum = "f14ee04d9415b52b3aeab06258a3f07093182b88ba0f9b8d203f211a7a7d41c7" 1278 + +checksum = "58ee9362deb4a96cef4d437d1ad49cffc9b9e92d202b6995674e928ce684f112" 1149 1279 + 1150 1280 +[[package]] 1151 - +name = "version_check" 1152 - +version = "0.1.5" 1281 + +name = "vcpkg" 1282 + +version = "0.2.15" 1153 1283 +source = "registry+https://github.com/rust-lang/crates.io-index" 1154 - +checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" 1284 + +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1155 1285 + 1156 1286 +[[package]] 1157 1287 +name = "version_check" 1158 - +version = "0.9.2" 1288 + +version = "0.9.4" 1159 1289 +source = "registry+https://github.com/rust-lang/crates.io-index" 1160 - +checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed" 1290 + +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1161 1291 + 1162 1292 +[[package]] 1163 1293 +name = "wasi" ··· 1172 1302 +checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 1173 1303 + 1174 1304 +[[package]] 1305 + +name = "wasi" 1306 + +version = "0.11.0+wasi-snapshot-preview1" 1307 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1308 + +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1309 + + 1310 + +[[package]] 1311 + +name = "wasm-bindgen" 1312 + +version = "0.2.83" 1313 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1314 + +checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 1315 + +dependencies = [ 1316 + + "cfg-if", 1317 + + "wasm-bindgen-macro", 1318 + +] 1319 + + 1320 + +[[package]] 1321 + +name = "wasm-bindgen-backend" 1322 + +version = "0.2.83" 1323 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1324 + +checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 1325 + +dependencies = [ 1326 + + "bumpalo", 1327 + + "log", 1328 + + "once_cell", 1329 + + "proc-macro2", 1330 + + "quote", 1331 + + "syn", 1332 + + "wasm-bindgen-shared", 1333 + +] 1334 + + 1335 + +[[package]] 1336 + +name = "wasm-bindgen-macro" 1337 + +version = "0.2.83" 1338 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1339 + +checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 1340 + +dependencies = [ 1341 + + "quote", 1342 + + "wasm-bindgen-macro-support", 1343 + +] 1344 + + 1345 + +[[package]] 1346 + +name = "wasm-bindgen-macro-support" 1347 + +version = "0.2.83" 1348 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1349 + +checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 1350 + +dependencies = [ 1351 + + "proc-macro2", 1352 + + "quote", 1353 + + "syn", 1354 + + "wasm-bindgen-backend", 1355 + + "wasm-bindgen-shared", 1356 + +] 1357 + + 1358 + +[[package]] 1359 + +name = "wasm-bindgen-shared" 1360 + +version = "0.2.83" 1361 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1362 + +checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 1363 + + 1364 + +[[package]] 1175 1365 +name = "winapi" 1176 1366 +version = "0.3.9" 1177 1367 +source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1188 1378 +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1189 1379 + 1190 1380 +[[package]] 1381 + +name = "winapi-util" 1382 + +version = "0.1.5" 1383 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1384 + +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1385 + +dependencies = [ 1386 + + "winapi", 1387 + +] 1388 + + 1389 + +[[package]] 1191 1390 +name = "winapi-x86_64-pc-windows-gnu" 1192 1391 +version = "0.4.0" 1193 1392 +source = "registry+https://github.com/rust-lang/crates.io-index" 1194 1393 +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1394 + + 1395 + +[[package]] 1396 + +name = "windows-sys" 1397 + +version = "0.42.0" 1398 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1399 + +checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1400 + +dependencies = [ 1401 + + "windows_aarch64_gnullvm", 1402 + + "windows_aarch64_msvc", 1403 + + "windows_i686_gnu", 1404 + + "windows_i686_msvc", 1405 + + "windows_x86_64_gnu", 1406 + + "windows_x86_64_gnullvm", 1407 + + "windows_x86_64_msvc", 1408 + +] 1409 + + 1410 + +[[package]] 1411 + +name = "windows_aarch64_gnullvm" 1412 + +version = "0.42.0" 1413 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1414 + +checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e" 1415 + + 1416 + +[[package]] 1417 + +name = "windows_aarch64_msvc" 1418 + +version = "0.42.0" 1419 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1420 + +checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4" 1421 + + 1422 + +[[package]] 1423 + +name = "windows_i686_gnu" 1424 + +version = "0.42.0" 1425 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1426 + +checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7" 1427 + + 1428 + +[[package]] 1429 + +name = "windows_i686_msvc" 1430 + +version = "0.42.0" 1431 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1432 + +checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246" 1433 + + 1434 + +[[package]] 1435 + +name = "windows_x86_64_gnu" 1436 + +version = "0.42.0" 1437 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1438 + +checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed" 1439 + + 1440 + +[[package]] 1441 + +name = "windows_x86_64_gnullvm" 1442 + +version = "0.42.0" 1443 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1444 + +checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028" 1445 + + 1446 + +[[package]] 1447 + +name = "windows_x86_64_msvc" 1448 + +version = "0.42.0" 1449 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1450 + +checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5" 1451 + + 1452 + +[[package]] 1453 + +name = "xxhash-rust" 1454 + +version = "0.8.6" 1455 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1456 + +checksum = "735a71d46c4d68d71d4b24d03fdc2b98e38cea81730595801db779c04fe80d70"
+8 -17
pkgs/development/python-modules/johnnycanencrypt/default.nix
··· 7 7 , pkg-config 8 8 , pcsclite 9 9 , nettle 10 - , requests 11 - , vcrpy 10 + , httpx 12 11 , numpy 13 12 , pytestCheckHook 14 13 , pythonOlder ··· 18 17 19 18 buildPythonPackage rec { 20 19 pname = "johnnycanencrypt"; 21 - version = "0.6.0"; 20 + version = "0.11.0"; 22 21 disabled = pythonOlder "3.7"; 23 22 24 23 src = fetchFromGitHub { 25 24 owner = "kushaldas"; 26 25 repo = "johnnycanencrypt"; 27 26 rev = "v${version}"; 28 - sha256 = "0b1yfddf38dicmjgnw9mk5g0iisa5yq6l9cj6kfskhyrznasvz3g"; 27 + hash = "sha256-YhuYejxuKZEv1xQ1fQcXSkt9I80iJOJ6MecG622JJJo="; 29 28 }; 30 29 31 30 cargoDeps = rustPlatform.fetchCargoTarball { 32 31 inherit patches src; 33 32 name = "${pname}-${version}"; 34 - hash = "sha256-1dRFC59GY7M99LvQWy2eXPesmLX5k46rN8l4suLYkQY="; 33 + hash = "sha256-r2NU1e3yeZDLOBy9pndGYM3JoH6BBKQkXMLsJR6PTRs="; 35 34 }; 36 35 37 36 format = "pyproject"; 38 37 38 + # https://github.com/kushaldas/johnnycanencrypt/issues/125 39 39 patches = [ ./Cargo.lock.patch ]; 40 40 41 41 LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib"; 42 42 43 43 propagatedBuildInputs = [ 44 - requests 45 - vcrpy 44 + httpx 46 45 ]; 47 46 48 47 nativeBuildInputs = [ ··· 54 53 ]); 55 54 56 55 buildInputs = [ 56 + nettle 57 + ] ++ lib.optionals stdenv.isLinux [ 57 58 pcsclite 58 - nettle 59 59 ] ++ lib.optionals stdenv.isDarwin [ 60 60 PCSC 61 61 libiconv ··· 70 70 numpy 71 71 ]; 72 72 73 - # Remove with the next release after 0.5.0. This change is required 74 - # for compatibility with maturin 0.9.0. 75 - postPatch = '' 76 - sed '/project-url = /d' -i Cargo.toml 77 - substituteInPlace pyproject.toml \ 78 - --replace 'manylinux = "off"' 'skip-auditwheel = true' 79 - ''; 80 - 81 73 preCheck = '' 82 74 export TESTDIR=$(mktemp -d) 83 75 cp -r tests/ $TESTDIR ··· 91 83 pythonImportsCheck = [ "johnnycanencrypt" ]; 92 84 93 85 meta = with lib; { 94 - broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 95 86 homepage = "https://github.com/kushaldas/johnnycanencrypt"; 96 87 description = "Python module for OpenPGP written in Rust"; 97 88 license = licenses.gpl3Plus;
-30
pkgs/development/python-modules/pychef/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , six 5 - , requests 6 - , mock 7 - , unittest2 8 - }: 9 - 10 - buildPythonPackage rec { 11 - pname = "PyChef"; 12 - version = "0.3.0"; 13 - 14 - src = fetchPypi { 15 - inherit pname version; 16 - sha256 = "0zdz8lw545cd3a34cpib7mdwnad83gr2mrrxyj3v74h4zhwabhmg"; 17 - }; 18 - 19 - propagatedBuildInputs = [ six requests mock unittest2 ]; 20 - 21 - # FIXME 22 - doCheck = false; 23 - 24 - meta = with lib; { 25 - homepage = "https://github.com/coderanger/pychef"; 26 - description = "Python implementation of a Chef API client"; 27 - license = licenses.bsd0; 28 - }; 29 - 30 - }
+24 -5
pkgs/development/python-modules/pywbem/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, libxml2 2 - , m2crypto, ply, pyyaml, six, pbr, pythonOlder, nocasedict, nocaselist, yamlloader, requests-mock 3 - , httpretty, lxml, mock, pytest, requests, decorator, unittest2 4 - , FormEncode, testfixtures, pytz 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , libxml2 5 + , m2crypto 6 + , ply 7 + , pyyaml 8 + , six 9 + , pbr 10 + , pythonOlder 11 + , nocasedict 12 + , nocaselist 13 + , yamlloader 14 + , requests-mock 15 + , httpretty 16 + , lxml 17 + , mock 18 + , pytest 19 + , requests 20 + , decorator 21 + , FormEncode 22 + , testfixtures 23 + , pytz 5 24 }: 6 25 7 26 buildPythonPackage rec { 8 27 pname = "pywbem"; 9 28 version = "1.5.0"; 29 + format = "setuptools"; 10 30 11 31 src = fetchPypi { 12 32 inherit pname version; ··· 35 55 requests 36 56 requests-mock 37 57 testfixtures 38 - unittest2 39 58 ]; 40 59 41 60 meta = with lib; {
+8 -15
pkgs/development/python-modules/pyxl3/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi 4 - , unittest2 5 - , python 3 + , fetchFromGitHub 4 + , pytestCheckHook 6 5 , isPy27 7 6 }: 8 7 ··· 11 10 version = "1.4"; 12 11 disabled = isPy27; 13 12 14 - src = fetchPypi { 15 - inherit pname version; 16 - sha256 = "ad4cc56bf4b35def33783e6d4783882702111fe8f9a781c63228e2114067c065"; 13 + src = fetchFromGitHub { 14 + owner = "gvanrossum"; 15 + repo = pname; 16 + rev = "e6588c12caee49c43faf6aa260f04d7e971f6aa8"; 17 + hash = "sha256-8nKQgwLXPVgPxNRF4CryKJb7+llDsZHis5VctxqpIRo="; 17 18 }; 18 19 19 - checkInputs = [ unittest2 ]; 20 - 21 - checkPhase = '' 22 - ${python.interpreter} tests/test_basic.py 23 - ''; 24 - 25 - # tests require weird codec installation 26 - # which is not necessary for major use of package 27 - doCheck = false; 20 + checkInputs = [ pytestCheckHook ]; 28 21 29 22 meta = with lib; { 30 23 description = "Python 3 port of pyxl for writing structured and reusable inline HTML";
+1 -1
pkgs/development/python-modules/repeated-test/default.nix
··· 40 40 description = "Unittest-compatible framework for repeating a test function over many fixtures"; 41 41 homepage = "https://github.com/epsy/repeated_test"; 42 42 license = licenses.mit; 43 - maintainers = with maintainers; [ ]; 43 + maintainers = with maintainers; [ tjni ]; 44 44 }; 45 45 }
+4 -8
pkgs/development/python-modules/tumpa/default.nix pkgs/applications/misc/tumpa/default.nix
··· 1 1 { lib 2 - , buildPythonPackage 2 + , python3 3 3 , fetchFromGitHub 4 - , setuptools 5 - , pyside2 6 - , johnnycanencrypt 7 - , pythonOlder 8 4 , wrapQtAppsHook 9 5 }: 10 6 11 - buildPythonPackage rec { 7 + python3.pkgs.buildPythonApplication rec { 12 8 pname = "tumpa"; 13 9 version = "0.1.2"; 14 - disabled = pythonOlder "3.7"; 15 10 16 11 src = fetchFromGitHub { 17 12 owner = "kushaldas"; ··· 20 15 sha256 = "17nhdildapgic5l05f3q1wf5jvz3qqdjv543c8gij1x9rdm8hgxi"; 21 16 }; 22 17 23 - propagatedBuildInputs = [ 18 + propagatedBuildInputs = with python3.pkgs; [ 24 19 setuptools 25 20 johnnycanencrypt 26 21 pyside2 ··· 42 37 homepage = "https://github.com/kushaldas/tumpa"; 43 38 license = licenses.gpl3Plus; 44 39 maintainers = with maintainers; [ _0x4A6F ]; 40 + broken = true; 45 41 }; 46 42 }
+2 -2
pkgs/development/python-modules/xknx/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "xknx"; 15 - version = "1.2.0"; 15 + version = "1.2.1"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "XKNX"; 22 22 repo = pname; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-IHZvmVloBSLcK3GZV9urFeqRxOG76O9O/3ZDNTz4wjQ="; 24 + hash = "sha256-5uRPMu9qZ0ofMdgk8d1IpKjHjnEP+zhWs+EDQx9wk6U="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+3 -3
pkgs/development/tools/ruff/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "ruff"; 11 - version = "0.0.131"; 11 + version = "0.0.132"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "charliermarsh"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-botqrFWfW0+hu0oi6UhDcz8jO5TCKWwgN+u6oaWB7pE="; 17 + sha256 = "sha256-0UcZBGD1l2hP8VH0tdNKY/SiXVTPLL0/eZpOwYnUgPs="; 18 18 }; 19 19 20 - cargoSha256 = "sha256-5fDhwcdLOGDqtWcCR9C1BOonb1CIxfwlcMFZ3spvfGU="; 20 + cargoSha256 = "sha256-DlSSzFf2AludfAKrXSsI/V0K2ZjCy/ehZd3ULe3fjK4="; 21 21 22 22 buildInputs = lib.optionals stdenv.isDarwin [ 23 23 CoreServices
+3 -3
pkgs/development/tools/rust/cargo-update/default.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "cargo-update"; 18 - version = "11.0.0"; 18 + version = "11.1.0"; 19 19 20 20 src = fetchCrate { 21 21 inherit pname version; 22 - sha256 = "sha256-bqDbMQXzOlNQBVufEwBeH9XOjS3gpacowzHVTwu8XhA="; 22 + sha256 = "sha256-WQUWAE8PR3FxTmWxoXmi6nsiyfbmLaIzOBJhC/8QYQw="; 23 23 }; 24 24 25 - cargoSha256 = "sha256-oHp4olxnTeVXxhhWqWPBZXRfYZRtzuPfP3rENJAJQMo="; 25 + cargoSha256 = "sha256-GirS6Tu5gkNPVGAKzfFkyi3tTlu3RRzp/PWHhPbmKdI="; 26 26 27 27 nativeBuildInputs = [ cmake installShellFiles pkg-config ronn ]; 28 28
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2022.11.3"; 5 + version = "2022.11.4"; 6 6 components = { 7 7 "3_day_blinds" = ps: with ps; [ 8 8 ];
+2 -2
pkgs/servers/home-assistant/default.nix
··· 258 258 extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs); 259 259 260 260 # Don't forget to run parse-requirements.py after updating 261 - hassVersion = "2022.11.3"; 261 + hassVersion = "2022.11.4"; 262 262 263 263 in python.pkgs.buildPythonApplication rec { 264 264 pname = "homeassistant"; ··· 276 276 owner = "home-assistant"; 277 277 repo = "core"; 278 278 rev = version; 279 - hash = "sha256-9L2GBgM3RTqeOCnW47Kr4OxqVjcbBEvzkiPYZ5qEQAE="; 279 + hash = "sha256-3vNwWPFSR9Ap89rAxZjUOptigBaDlboxvLZysMyUUX0="; 280 280 }; 281 281 282 282 # leave this in, so users don't have to constantly update their downstream patch handling
+1 -1
pkgs/servers/web-apps/outline/default.nix
··· 56 56 runHook preInstall 57 57 58 58 mkdir -p $out/bin $out/share/outline 59 - mv node_modules build $out/share/outline/ 59 + mv public node_modules build $out/share/outline/ 60 60 61 61 node_modules=$out/share/outline/node_modules 62 62 build=$out/share/outline/build
+3 -3
pkgs/tools/misc/mutagen-compose/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "mutagen-compose"; 5 - version = "0.16.1"; 5 + version = "0.16.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mutagen-io"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-tH1aYMjKsSMWls53IgsqtAgMMLUvotb5zGlAmV3dlvQ="; 11 + sha256 = "sha256-x8tgdrb4WtjCaa28A4+fL/lUgMYaN71bEyQ1iDayNHM="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-nRH26ty3JVSz2ZnrZ+owTj2fponnvYkrASQxcJXm8aE="; 14 + vendorSha256 = "sha256-FJEB7rii6DcWyGqrmPEKOZTy27tG+CkZ2xUY+cpKakE="; 15 15 16 16 doCheck = false; 17 17
+26 -6
pkgs/tools/networking/lxi-tools/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 - , autoreconfHook, pkg-config 3 - , liblxi, readline, lua 2 + , meson, ninja, cmake, pkg-config 3 + , liblxi, readline, lua, bash-completion 4 + , wrapGAppsHook 5 + , glib, gtk4, gtksourceview5, libadwaita, json-glib 6 + , desktop-file-utils, appstream-glib 7 + , gsettings-desktop-schemas 8 + , withGui ? false 4 9 }: 5 10 6 11 stdenv.mkDerivation rec { 7 12 pname = "lxi-tools"; 8 - version = "1.21"; 13 + version = "2.3"; 9 14 10 15 src = fetchFromGitHub { 11 16 owner = "lxi-tools"; 12 17 repo = "lxi-tools"; 13 18 rev = "v${version}"; 14 - sha256 = "0rkp6ywsw2zv7hpbr12kba79wkcwqin7xagxxhd968rbfkfdxlwc"; 19 + sha256 = "sha256-c53Jn/9xKsxQDsRWU2LKtNWs28AuG4t5OwYOAMxpcPA="; 15 20 }; 16 21 17 - nativeBuildInputs = [ autoreconfHook pkg-config ]; 22 + nativeBuildInputs = [ 23 + meson ninja cmake pkg-config 24 + ] ++ lib.optional withGui wrapGAppsHook; 18 25 19 - buildInputs = [ liblxi readline lua ]; 26 + buildInputs = [ 27 + liblxi readline lua bash-completion 28 + ] ++ lib.optionals withGui [ 29 + glib gtk4 gtksourceview5 libadwaita json-glib 30 + desktop-file-utils appstream-glib 31 + gsettings-desktop-schemas 32 + ]; 33 + 34 + postUnpack = "sed -i '/meson.add_install.*$/d' source/meson.build"; 35 + 36 + mesonFlags = lib.optional (!withGui) "-Dgui=false"; 37 + 38 + postInstall = lib.optionalString withGui 39 + "glib-compile-schemas $out/share/glib-2.0/schemas"; 20 40 21 41 meta = with lib; { 22 42 description = "Tool for communicating with LXI compatible instruments";
+26 -2
pkgs/tools/package-management/nix/default.nix
··· 81 81 nix_2_9 = common { 82 82 version = "2.9.2"; 83 83 sha256 = "sha256-uZCaBo9rdWRO/AlQMvVVjpAwzYijB2H5KKQqde6eHkg="; 84 + patches = [ 85 + (fetchpatch { 86 + # https://github.com/NixOS/nix/pull/7283 87 + name = "fix-requires-non-existing-output.patch"; 88 + url = "https://github.com/NixOS/nix/commit/3ade5f5d6026b825a80bdcc221058c4f14e10a27.patch"; 89 + sha256 = "sha256-s1ybRFCjQaSGj7LKu0Z5g7UiHqdJGeD+iPoQL0vaiS0="; 90 + }) 91 + ]; 84 92 }; 85 93 86 94 nix_2_10 = common { 87 95 version = "2.10.3"; 88 96 sha256 = "sha256-B9EyDUz/9tlcWwf24lwxCFmkxuPTVW7HFYvp0C4xGbc="; 89 - patches = [ ./patches/flaky-tests.patch ]; 97 + patches = [ 98 + ./patches/flaky-tests.patch 99 + (fetchpatch { 100 + # https://github.com/NixOS/nix/pull/7283 101 + name = "fix-requires-non-existing-output.patch"; 102 + url = "https://github.com/NixOS/nix/commit/3ade5f5d6026b825a80bdcc221058c4f14e10a27.patch"; 103 + sha256 = "sha256-s1ybRFCjQaSGj7LKu0Z5g7UiHqdJGeD+iPoQL0vaiS0="; 104 + }) 105 + ]; 90 106 }; 91 107 92 108 nix_2_11 = common { 93 109 version = "2.11.0"; 94 110 sha256 = "sha256-9+rpYzI+SmxJn+EbYxjGv68Ucp22bdFUSy/4LkHkkDQ="; 95 - patches = [ ./patches/flaky-tests.patch ]; 111 + patches = [ 112 + ./patches/flaky-tests.patch 113 + (fetchpatch { 114 + # https://github.com/NixOS/nix/pull/7283 115 + name = "fix-requires-non-existing-output.patch"; 116 + url = "https://github.com/NixOS/nix/commit/3ade5f5d6026b825a80bdcc221058c4f14e10a27.patch"; 117 + sha256 = "sha256-s1ybRFCjQaSGj7LKu0Z5g7UiHqdJGeD+iPoQL0vaiS0="; 118 + }) 119 + ]; 96 120 }; 97 121 98 122 stable = self.nix_2_11;
+22 -6
pkgs/top-level/all-packages.nix
··· 2704 2704 2705 2705 gmnitohtml = callPackage ../applications/misc/gmnitohtml { }; 2706 2706 2707 + go2tv = darwin.apple_sdk_11_0.callPackage ../applications/video/go2tv { 2708 + inherit (darwin.apple_sdk_11_0.frameworks) Carbon Cocoa Kernel UserNotifications; 2709 + }; 2710 + go2tv-lite = go2tv.override { withGui = false; }; 2711 + 2707 2712 goimapnotify = callPackage ../tools/networking/goimapnotify { }; 2708 2713 2709 2714 gojsontoyaml = callPackage ../development/tools/gojsontoyaml { }; ··· 16254 16259 16255 16260 autoadb = callPackage ../misc/autoadb { }; 16256 16261 16257 - ansible = ansible_2_12; 16258 - ansible_2_13 = python3Packages.toPythonApplication python3Packages.ansible-core; 16262 + ansible = ansible_2_14; 16263 + ansible_2_14 = python3Packages.toPythonApplication python3Packages.ansible-core; 16264 + ansible_2_13 = python3Packages.toPythonApplication (python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec { 16265 + version = "2.13.6"; 16266 + src = oldAttrs.src.override { 16267 + inherit version; 16268 + hash = "sha256-Mf4yK2MpBnSo9zhhEN9QHwBEqkSJC+OrMTpuIluaKc8="; 16269 + }; 16270 + })); 16259 16271 ansible_2_12 = python3Packages.toPythonApplication (python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec { 16260 - version = "2.12.6"; 16272 + version = "2.12.10"; 16261 16273 src = oldAttrs.src.override { 16262 16274 inherit version; 16263 - hash = "sha256-XzZuhRFZ2Pcs5o0yuMDt2lbuU3wB6faOyjgr0VEK9l0="; 16264 - sha256 = ""; 16275 + hash = "sha256-/rHfYXOM/B9eiTtCouwafeMpd9Z+hnB7Retj0MXDwjY="; 16265 16276 }; 16266 16277 meta.changelog = "https://github.com/ansible/ansible/blob/v${version}/changelogs/CHANGELOG-v${lib.versions.majorMinor version}.rst"; 16267 16278 })); ··· 30200 30211 lv2-cpp-tools = callPackage ../applications/audio/lv2-cpp-tools { }; 30201 30212 30202 30213 lxi-tools = callPackage ../tools/networking/lxi-tools { }; 30214 + lxi-tools-gui = callPackage ../tools/networking/lxi-tools { withGui = true; }; 30203 30215 30204 30216 lynx = callPackage ../applications/networking/browsers/lynx { }; 30205 30217 ··· 30972 30984 30973 30985 notepad-next = libsForQt5.callPackage ../applications/editors/notepad-next { }; 30974 30986 30975 - notepadqq = libsForQt514.callPackage ../applications/editors/notepadqq { }; 30987 + notepadqq = libsForQt5.callPackage ../applications/editors/notepadqq { }; 30976 30988 30977 30989 notmuch = callPackage ../applications/networking/mailreaders/notmuch { 30978 30990 gmime = gmime3; ··· 32522 32534 ttyper = callPackage ../applications/misc/ttyper { }; 32523 32535 32524 32536 tudu = callPackage ../applications/office/tudu { }; 32537 + 32538 + tumpa = callPackage ../applications/misc/tumpa { 32539 + inherit (pkgs.libsForQt5) wrapQtAppsHook; 32540 + }; 32525 32541 32526 32542 tuna = python3Packages.callPackage ../os-specific/linux/tuna { }; 32527 32543
+2
pkgs/top-level/python-aliases.nix
··· 137 137 pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01 138 138 pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15 139 139 pycallgraph = throw "pycallgraph has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 140 + pychef = throw "pychef has been removed because it's been archived upstream and abandoned since 2017."; # added 2022-11-14 140 141 pycryptodome-test-vectors = throw "pycryptodome-test-vectors has been removed because it is an internal package to pycryptodome"; # added 2022-05-28 141 142 pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07 142 143 pyialarmxr-homeassistant = throw "The package was removed together with the component support in home-assistant 2022.7.0"; # added 2022-07-07 ··· 206 207 tensorflow-estimator_2 = tensorflow-estimator; # added 2021-11-25 207 208 tensorflow-tensorboard = tensorboard; # added 2022-03-06 208 209 tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25 210 + tumpa = throw "tumpa was promoted to a top-level attribute"; # added 2022-11-19 209 211 tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05 210 212 types-cryptography = throw "types-cryptography has been removed because it is obsolete since cryptography version 3.4.4."; # added 2022-05-30 211 213 types-paramiko = throw "types-paramiko has been removed because it was unused."; # added 2022-05-30
-6
pkgs/top-level/python-packages.nix
··· 7595 7595 7596 7596 pychart = callPackage ../development/python-modules/pychart { }; 7597 7597 7598 - pychef = callPackage ../development/python-modules/pychef { }; 7599 - 7600 7598 pychm = callPackage ../development/python-modules/pychm { }; 7601 7599 7602 7600 PyChromecast = callPackage ../development/python-modules/pychromecast { }; ··· 11331 11329 tunigo = callPackage ../development/python-modules/tunigo { }; 11332 11330 11333 11331 tubeup = callPackage ../development/python-modules/tubeup { }; 11334 - 11335 - tumpa = callPackage ../development/python-modules/tumpa { 11336 - inherit (pkgs.libsForQt5) wrapQtAppsHook; 11337 - }; 11338 11332 11339 11333 turnt = callPackage ../development/python-modules/turnt { }; 11340 11334