lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
6a1cd17d 437247fc

+986 -233
-13
doc/builders/packages/unfree.xml
··· 1 - <section xmlns="http://docbook.org/ns/docbook" 2 - xmlns:xlink="http://www.w3.org/1999/xlink" 3 - xml:id="unfree-software"> 4 - <title>Unfree software</title> 5 - 6 - <para> 7 - All users of Nixpkgs are free software users, and many users (and developers) of Nixpkgs want to limit and tightly control their exposure to unfree software. At the same time, many users need (or want) to run some specific pieces of proprietary software. Nixpkgs includes some expressions for unfree software packages. By default unfree software cannot be installed and doesn’t show up in searches. To allow installing unfree software in a single Nix invocation one can export <literal>NIXPKGS_ALLOW_UNFREE=1</literal>. For a persistent solution, users can set <literal>allowUnfree</literal> in the Nixpkgs configuration. 8 - </para> 9 - 10 - <para> 11 - Fine-grained control is possible by defining <literal>allowUnfreePredicate</literal> function in config; it takes the <literal>mkDerivation</literal> parameter attrset and returns <literal>true</literal> for unfree packages that should be allowed. 12 - </para> 13 - </section>
+5
doc/using/configuration.chapter.md
··· 77 77 78 78 ## Installing unfree packages {#sec-allow-unfree} 79 79 80 + All users of Nixpkgs are free software users, and many users (and developers) of Nixpkgs want to limit and tightly control their exposure to unfree software. 81 + At the same time, many users need (or want) to run some specific pieces of proprietary software. 82 + Nixpkgs includes some expressions for unfree software packages. 83 + By default unfree software cannot be installed and doesn’t show up in searches. 84 + 80 85 There are several ways to tweak how Nix handles a package which has been marked as unfree. 81 86 82 87 - To temporarily allow all unfree packages, you can use an environment variable for a single invocation of the nix tools:
+24 -93
nixos/modules/services/continuous-integration/gitlab-runner.nix
··· 22 22 export CONFIG_FILE=${configPath} 23 23 24 24 mkdir -p $(dirname ${configPath}) 25 + touch ${configPath} 26 + 27 + # update global options 28 + remarshal --if toml --of json ${configPath} \ 29 + | jq -cM 'with_entries(select([.key] | inside(["runners"])))' \ 30 + | jq -scM '.[0] + .[1]' - <(echo ${escapeShellArg (toJSON cfg.settings)}) \ 31 + | remarshal --if json --of toml \ 32 + | sponge ${configPath} 25 33 26 34 # remove no longer existing services 27 35 gitlab-runner verify --delete ··· 91 99 --name "$NAME" && sleep 1 92 100 done 93 101 94 - # update global options 95 - remarshal --if toml --of json ${configPath} \ 96 - | jq -cM ${escapeShellArg (concatStringsSep " | " [ 97 - ".check_interval = ${toJSON cfg.checkInterval}" 98 - ".concurrent = ${toJSON cfg.concurrent}" 99 - ".sentry_dsn = ${toJSON cfg.sentryDSN}" 100 - ".listen_address = ${toJSON cfg.prometheusListenAddress}" 101 - ".session_server.listen_address = ${toJSON cfg.sessionServer.listenAddress}" 102 - ".session_server.advertise_address = ${toJSON cfg.sessionServer.advertiseAddress}" 103 - ".session_server.session_timeout = ${toJSON cfg.sessionServer.sessionTimeout}" 104 - "del(.[] | nulls)" 105 - "del(.session_server[] | nulls)" 106 - ])} \ 107 - | remarshal --if json --of toml \ 108 - | sponge ${configPath} 109 - 110 102 # make config file readable by service 111 103 chown -R --reference=$HOME $(dirname ${configPath}) 112 104 ''); ··· 133 125 for settings not covered by this module. 134 126 ''; 135 127 }; 136 - checkInterval = mkOption { 137 - type = types.int; 138 - default = 0; 139 - example = literalExpression "with lib; (length (attrNames config.services.gitlab-runner.services)) * 3"; 140 - description = '' 141 - Defines the interval length, in seconds, between new jobs check. 142 - The default value is 3; 143 - if set to 0 or lower, the default value will be used. 144 - See <link xlink:href="https://docs.gitlab.com/runner/configuration/advanced-configuration.html#how-check_interval-works">runner documentation</link> for more information. 145 - ''; 146 - }; 147 - concurrent = mkOption { 148 - type = types.int; 149 - default = 1; 150 - example = literalExpression "config.nix.settings.max-jobs"; 151 - description = '' 152 - Limits how many jobs globally can be run concurrently. 153 - The most upper limit of jobs using all defined runners. 154 - 0 does not mean unlimited. 155 - ''; 156 - }; 157 - sentryDSN = mkOption { 158 - type = types.nullOr types.str; 159 - default = null; 160 - example = "https://public:private@host:port/1"; 161 - description = '' 162 - Data Source Name for tracking of all system level errors to Sentry. 163 - ''; 164 - }; 165 - prometheusListenAddress = mkOption { 166 - type = types.nullOr types.str; 167 - default = null; 168 - example = "localhost:8080"; 169 - description = '' 170 - Address (&lt;host&gt;:&lt;port&gt;) on which the Prometheus metrics HTTP server 171 - should be listening. 172 - ''; 173 - }; 174 - sessionServer = mkOption { 128 + settings = mkOption { 175 129 type = types.submodule { 176 - options = { 177 - listenAddress = mkOption { 178 - type = types.nullOr types.str; 179 - default = null; 180 - example = "0.0.0.0:8093"; 181 - description = '' 182 - An internal URL to be used for the session server. 183 - ''; 184 - }; 185 - advertiseAddress = mkOption { 186 - type = types.nullOr types.str; 187 - default = null; 188 - example = "runner-host-name.tld:8093"; 189 - description = '' 190 - The URL that the Runner will expose to GitLab to be used 191 - to access the session server. 192 - Fallbacks to <option>listenAddress</option> if not defined. 193 - ''; 194 - }; 195 - sessionTimeout = mkOption { 196 - type = types.int; 197 - default = 1800; 198 - description = '' 199 - How long in seconds the session can stay active after 200 - the job completes (which will block the job from finishing). 201 - ''; 202 - }; 203 - }; 130 + freeformType = (pkgs.formats.json { }).type; 204 131 }; 205 132 default = { }; 206 - example = literalExpression '' 207 - { 208 - listenAddress = "0.0.0.0:8093"; 209 - } 210 - ''; 211 133 description = '' 212 - The session server allows the user to interact with jobs 213 - that the Runner is responsible for. A good example of this is the 214 - <link xlink:href="https://docs.gitlab.com/ee/ci/interactive_web_terminal/index.html">interactive web terminal</link>. 134 + Global gitlab-runner configuration. See 135 + <link xlink:href="https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-global-section"/> 136 + for supported values. 215 137 ''; 216 138 }; 217 139 gracefulTermination = mkOption { ··· 535 457 config = mkIf cfg.enable { 536 458 warnings = (mapAttrsToList 537 459 (n: v: "services.gitlab-runner.services.${n}.`registrationConfigFile` points to a file in Nix Store. You should use quoted absolute path to prevent this.") 538 - (filterAttrs (n: v: isStorePath v.registrationConfigFile) cfg.services)) 539 - ++ optional (cfg.configFile != null) "services.gitlab-runner.`configFile` is deprecated, please use services.gitlab-runner.`services`."; 460 + (filterAttrs (n: v: isStorePath v.registrationConfigFile) cfg.services)); 461 + 540 462 environment.systemPackages = [ cfg.package ]; 541 463 systemd.services.gitlab-runner = { 542 464 description = "Gitlab Runner"; ··· 584 506 (mkRenamedOptionModule [ "services" "gitlab-runner" "packages" ] [ "services" "gitlab-runner" "extraPackages" ] ) 585 507 (mkRemovedOptionModule [ "services" "gitlab-runner" "configOptions" ] "Use services.gitlab-runner.services option instead" ) 586 508 (mkRemovedOptionModule [ "services" "gitlab-runner" "workDir" ] "You should move contents of workDir (if any) to /var/lib/gitlab-runner" ) 509 + 510 + (mkRenamedOptionModule [ "services" "gitlab-runner" "checkInterval" ] [ "services" "gitlab-runner" "settings" "check_interval" ] ) 511 + (mkRenamedOptionModule [ "services" "gitlab-runner" "concurrent" ] [ "services" "gitlab-runner" "settings" "concurrent" ] ) 512 + (mkRenamedOptionModule [ "services" "gitlab-runner" "sentryDSN" ] [ "services" "gitlab-runner" "settings" "sentry_dsn" ] ) 513 + (mkRenamedOptionModule [ "services" "gitlab-runner" "prometheusListenAddress" ] [ "services" "gitlab-runner" "settings" "listen_address" ] ) 514 + 515 + (mkRenamedOptionModule [ "services" "gitlab-runner" "sessionServer" "listenAddress" ] [ "services" "gitlab-runner" "settings" "session_server" "listen_address" ] ) 516 + (mkRenamedOptionModule [ "services" "gitlab-runner" "sessionServer" "advertiseAddress" ] [ "services" "gitlab-runner" "settings" "session_server" "advertise_address" ] ) 517 + (mkRenamedOptionModule [ "services" "gitlab-runner" "sessionServer" "sessionTimeout" ] [ "services" "gitlab-runner" "settings" "session_server" "session_timeout" ] ) 587 518 ]; 588 519 }
+9 -3
pkgs/applications/blockchains/chia/default.nix
··· 6 6 7 7 let chia = python3Packages.buildPythonApplication rec { 8 8 pname = "chia"; 9 - version = "1.3.1"; 9 + version = "1.5.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Chia-Network"; 13 13 repo = "chia-blockchain"; 14 14 rev = version; 15 15 fetchSubmodules = true; 16 - hash = "sha256-nH6rCzIQu5oWsdEHa+UkvbWeUGjrtpEKVEcLmSoor5k="; 16 + hash = "sha256-OlaAnUy16QBff81XMoYQaZA0wKnsr+/3XEQLBP8IMug="; 17 17 }; 18 + 19 + patches = [ 20 + # chia tries to put lock files in the python modules directory 21 + ./dont_lock_in_store.patch 22 + ]; 18 23 19 24 postPatch = '' 20 25 substituteInPlace setup.py \ ··· 39 44 chiapos 40 45 chiavdf 41 46 chiabip158 47 + chia-rs 42 48 click 43 49 clvm 44 50 clvm-rs 45 51 clvm-tools 52 + clvm-tools-rs 46 53 colorama 47 54 colorlog 48 55 concurrent-log-handler ··· 87 94 meta = with lib; { 88 95 homepage = "https://www.chia.net/"; 89 96 description = "Chia is a modern cryptocurrency built from scratch, designed to be efficient, decentralized, and secure."; 90 - knownVulnerabilities = [ "CVE-2022-36447" ]; 91 97 license = with licenses; [ asl20 ]; 92 98 maintainers = teams.chia.members; 93 99 platforms = platforms.all;
+21
pkgs/applications/blockchains/chia/dont_lock_in_store.patch
··· 1 + --- a/chia/wallet/puzzles/load_clvm.py 2 + +++ b/chia/wallet/puzzles/load_clvm.py 3 + @@ -82,18 +82,6 @@ def load_serialized_clvm(clvm_filename, package_or_requirement=__name__) -> Seri 4 + """ 5 + hex_filename = f"{clvm_filename}.hex" 6 + 7 + - try: 8 + - if pkg_resources.resource_exists(package_or_requirement, clvm_filename): 9 + - # Establish whether the size is zero on entry 10 + - full_path = pathlib.Path(pkg_resources.resource_filename(package_or_requirement, clvm_filename)) 11 + - output = full_path.parent / hex_filename 12 + - compile_clvm(full_path, output, search_paths=[full_path.parent]) 13 + - 14 + - except NotImplementedError: 15 + - # pyinstaller doesn't support `pkg_resources.resource_exists` 16 + - # so we just fall through to loading the hex clvm 17 + - pass 18 + - 19 + clvm_hex = pkg_resources.resource_string(package_or_requirement, hex_filename).decode("utf8") 20 + assert len(clvm_hex.strip()) != 0 21 + clvm_blob = bytes.fromhex(clvm_hex)
+3 -3
pkgs/applications/logging/humioctl/default.nix
··· 1 1 { buildGoModule, fetchFromGitHub, installShellFiles, lib }: 2 2 3 3 let 4 - humioCtlVersion = "0.28.11"; 5 - sha256 = "sha256-CdGeGpOEWYn7yIWJxWpRrSPHcuult+jtqpjYaSjfBLQ="; 6 - vendorSha256 = "sha256-fgRQ2n5tzj5s4rT65VIqh61wDwu+x/fWhpaKwyr8XWA="; 4 + humioCtlVersion = "0.29.1"; 5 + sha256 = "sha256-89rVUzxUf9lM1KE55m1EQidwc26q/QadY0kgu/afj9I="; 6 + vendorSha256 = "sha256-n9gfY6oNxOjU6sGm8Bd8asFlHxm+dzHdVWj4CmfvFpA="; 7 7 in buildGoModule { 8 8 name = "humioctl-${humioCtlVersion}"; 9 9 pname = "humioctl";
+2 -2
pkgs/applications/misc/dasel/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "dasel"; 8 - version = "1.25.0"; 8 + version = "1.26.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "TomWright"; 12 12 repo = "dasel"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-VAakbuAkH7kuAx16m2vo4exikI03inXBW3OEIs5WwSY="; 14 + sha256 = "sha256-edmg3LU3nQ1fWSb2jDE2kaOZ98pchm3exO/PuethTMU="; 15 15 }; 16 16 17 17 vendorSha256 = "sha256-zli9SEBU6n0JusAquqb9+O2W4yPZS7zmC5PCebVSeIA=";
+3 -3
pkgs/applications/misc/gsctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gsctl"; 5 - version = "1.1.5"; 5 + version = "1.1.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "giantswarm"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-P1hJoZ1YSZTCo5ha/Um/nYVVhbYC3dcrQGJYTSnqNu4="; 11 + sha256 = "sha256-eemPsrSFwgUR1Jz7283jjwMkoJR38QiaiilI9G0IQuo="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-NeRABlKUpD2ZHRid/vu34Dh9uHZ+7IXWFPX8jkexUog="; 14 + vendorSha256 = "sha256-6b4H8YAY8d/qIGnnGPYZoXne1LXHLsc0OEq0lCeqivo="; 15 15 16 16 ldflags = [ 17 17 "-s" "-w"
+2 -2
pkgs/applications/networking/cluster/gatekeeper/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "gatekeeper"; 9 - version = "3.8.1"; 9 + version = "3.9.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "open-policy-agent"; 13 13 repo = "gatekeeper"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-zEUH88sjgR738BXK2oSSM6jf5oHZt0VJv61BcxclG1Q="; 15 + sha256 = "sha256-hZ8PBJ+6G0A5tVrJfxy2rODxOxQarQg6mxG3sQCqjfY="; 16 16 }; 17 17 18 18 vendorSha256 = null;
+3 -3
pkgs/applications/networking/cluster/helm-docs/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "helm-docs"; 5 - version = "1.10.0"; 5 + version = "1.11.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "norwoodj"; 9 9 repo = "helm-docs"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-V7Qw20PPoAEXl/XAMj/WSM73fLdp/gH4G3ipx49p06o="; 11 + sha256 = "sha256-476ZhjRwHlNJFkHzY8qQ7WbAUUpFNSoxXLGX9esDA/E="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-FpmeOQ8nV+sEVu2+nY9o9aFbCpwSShQUFOmyzwEQ9Pw="; 14 + vendorSha256 = "sha256-xXwunk9rmzZEtqmSo8biuXnAjPp7fqWdQ+Kt9+Di9N8="; 15 15 16 16 subPackages = [ "cmd/helm-docs" ]; 17 17 ldflags = [
+3 -3
pkgs/applications/networking/cluster/helmsman/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "helmsman"; 5 - version = "3.8.1"; 5 + version = "3.13.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Praqma"; 9 9 repo = "helmsman"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-njo5LlowlgWFK5G2lpgi7hdxtnSs8f5cT0oHI7bJxNc="; 11 + sha256 = "sha256-QyxluxAwhEZrgfMWlxB7sUZi6XGCFNGhhWRw3RmnhKM="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-F+b4EXAxa4+O6yepx+9eRrdq294ZcQ+sODFUCKYpSuo="; 14 + vendorSha256 = "sha256-gkzDecVvHZPFWDSi8nLw2mkR4HK0+pClpaHcdFFOnF8="; 15 15 16 16 doCheck = false; 17 17
+3 -3
pkgs/applications/version-management/gitoxide/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "gitoxide"; 15 - version = "0.12.0"; 15 + version = "0.13.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "Byron"; 19 19 repo = "gitoxide"; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-hDNlnNGm9of6Yu9WRVTRH5g4fAXlUxAexdufbZ0vMOo="; 21 + sha256 = "sha256-NdZ39F6nSuLZNOdoxRs79OR6I3oFASXHzm/hecDyxNI="; 22 22 }; 23 23 24 - cargoSha256 = "sha256-026DFEWu7PTvhJZP7YW3KOBOkzFRoxrc+THilit87jU="; 24 + cargoSha256 = "sha256-6uRLW1KJF0yskEfWm9ERQIDgVnerAhQFbMaxhnEDIOc="; 25 25 26 26 nativeBuildInputs = [ cmake pkg-config ]; 27 27 buildInputs = if stdenv.isDarwin
+4 -5
pkgs/development/interpreters/lunatic/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub, cmake, stdenv }: 1 + { lib, rustPlatform, fetchFromGitHub, cmake }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "lunatic"; 5 - version = "0.7.5"; 5 + version = "0.9.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "lunatic-solutions"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-HqDrGoyYzdx8OTanlRd95L1wAtFeew7Xs2rZ7nK2Zus="; 11 + sha256 = "sha256-gHG8jk23qTANbLNPH4Q+YusEkDZ/G33SARAsLVLrVPs="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-t3EwVYrKx7dvUcSp0B1iUAklg7WdQDld/T0O1HgHw54="; 14 + cargoSha256 = "sha256-keu9lNYuOruU58YBPyqtDqBS/jjruK9GcYrKv7dGmlQ="; 15 15 16 16 nativeBuildInputs = [ cmake ]; 17 17 ··· 21 21 changelog = "https://github.com/lunatic-solutions/lunatic/blob/v${version}/RELEASES.md"; 22 22 license = with licenses; [ mit /* or */ asl20 ]; 23 23 maintainers = with maintainers; [ figsoda ]; 24 - broken = stdenv.isDarwin; 25 24 }; 26 25 }
+2 -2
pkgs/development/libraries/physics/fastjet-contrib/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "fastjet-contrib"; 5 - version = "1.048"; 5 + version = "1.049"; 6 6 7 7 src = fetchurl { 8 8 url = "https://fastjet.hepforge.org/contrib/downloads/fjcontrib-${version}.tar.gz"; 9 - sha256 = "sha256-+ZidO2rrIoSLz5EJXDBgfwJ9PvJ3pPD3BKjw/C52aYE="; 9 + sha256 = "sha256-ri7WIGvGJ4tl6ZpPeN8O6ykR8wGij7V7UMVzwNWGmYc="; 10 10 }; 11 11 12 12 buildInputs = [ fastjet ];
+2 -2
pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-containerservice"; 14 - version = "20.0.0"; 14 + version = "20.2.0"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.6"; ··· 19 19 src = fetchPypi { 20 20 inherit pname version; 21 21 extension = "zip"; 22 - sha256 = "sha256-dCPFy24cXij50OH8go2idgCEXakMZu8swT5UcpNIzmA="; 22 + sha256 = "sha256-+XNJbI4LTxx8kcNr6dDlcaGujrqriKaEPb0deo6YbkM="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+6 -6
pkgs/development/python-modules/blspy/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "blspy"; 16 - version = "1.0.9"; 16 + version = "1.0.13"; 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-6keimQqwh37G9xc1Xyxlr+0n9Qgv87Np2D7Gzj6ik5Y="; 21 + hash = "sha256-feuHVtBgjzGBjY1eSKh47feTT8prdkSwvs993lJSSiI="; 22 22 }; 23 23 24 24 patches = [ ··· 29 29 relic_src = fetchFromGitHub { 30 30 owner = "Chia-Network"; 31 31 repo = "relic"; 32 - rev = "1d98e5abf3ca5b14fd729bd5bcced88ea70ecfd7"; # pinned by blspy 33 - hash = "sha256-IfTD8DvTEXeLUoKe4Ejafb+PEJW5DV/VXRYuutwGQHU="; 32 + rev = "215c69966cb78b255995f0ee9c86bbbb41c3c42b"; # pinned by blspy 33 + hash = "sha256-wivK18Cp7BMZJvrYxJgSHInRZgFgsgSzd0YIy5IWoYA="; 34 34 }; 35 35 sodium_src = fetchFromGitHub { 36 36 owner = "AmineKhaldi"; ··· 42 42 catch2_src = fetchFromGitHub { 43 43 owner = "catchorg"; 44 44 repo = "Catch2"; 45 - rev = "v2.13.7"; # pinned by blspy 46 - sha256 = "NhZ8Hh7dka7KggEKKZyEbIZahuuTYeCT7cYYSUvkPzI="; 45 + rev = "v3.0.0-preview5"; # pinned by blspy 46 + sha256 = "sha256-IQ1yGZo3nKHTqScUoq3i3Njxqvk7uW8hQ3GT0/SxGaw="; 47 47 }; 48 48 }) 49 49 ];
+2 -2
pkgs/development/python-modules/blspy/dont_fetch_dependencies.patch
··· 21 21 - set(RELIC_GIT_TAG "origin/main") 22 22 -else () 23 23 - # This is currently anchored to upstream aecdcae7956f542fbee2392c1f0feb0a8ac41dc5 24 - - set(RELIC_GIT_TAG "1d98e5abf3ca5b14fd729bd5bcced88ea70ecfd7") 24 + - set(RELIC_GIT_TAG "215c69966cb78b255995f0ee9c86bbbb41c3c42b") 25 25 -endif () 26 26 - 27 27 message(STATUS "Relic will be built from: ${RELIC_GIT_TAG}") ··· 57 57 FetchContent_Declare( 58 58 Catch2 59 59 - GIT_REPOSITORY https://github.com/catchorg/Catch2.git 60 - - GIT_TAG v2.13.7 60 + - GIT_TAG v3.0.0-preview5 61 61 + URL @catch2_src@ 62 62 ) 63 63 FetchContent_MakeAvailable(Catch2)
+732
pkgs/development/python-modules/chia-rs/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "autocfg" 7 + version = "1.1.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 10 + 11 + [[package]] 12 + name = "bitflags" 13 + version = "1.3.2" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 16 + 17 + [[package]] 18 + name = "bitvec" 19 + version = "0.22.3" 20 + source = "registry+https://github.com/rust-lang/crates.io-index" 21 + checksum = "5237f00a8c86130a0cc317830e558b966dd7850d48a953d998c813f01a41b527" 22 + dependencies = [ 23 + "funty", 24 + "radium", 25 + "tap", 26 + "wyz", 27 + ] 28 + 29 + [[package]] 30 + name = "block-buffer" 31 + version = "0.9.0" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 34 + dependencies = [ 35 + "generic-array", 36 + ] 37 + 38 + [[package]] 39 + name = "bls12_381" 40 + version = "0.5.0" 41 + source = "registry+https://github.com/rust-lang/crates.io-index" 42 + checksum = "54757888b09a69be70b5ec303e382a74227392086ba808cb01eeca29233a2397" 43 + dependencies = [ 44 + "ff", 45 + "group", 46 + "pairing", 47 + "rand_core", 48 + "subtle", 49 + ] 50 + 51 + [[package]] 52 + name = "bumpalo" 53 + version = "3.10.0" 54 + source = "registry+https://github.com/rust-lang/crates.io-index" 55 + checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3" 56 + 57 + [[package]] 58 + name = "byteorder" 59 + version = "1.4.3" 60 + source = "registry+https://github.com/rust-lang/crates.io-index" 61 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 62 + 63 + [[package]] 64 + name = "cfg-if" 65 + version = "1.0.0" 66 + source = "registry+https://github.com/rust-lang/crates.io-index" 67 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 68 + 69 + [[package]] 70 + name = "chia" 71 + version = "0.1.5" 72 + dependencies = [ 73 + "clvmr", 74 + "hex", 75 + "num-traits", 76 + "pyo3", 77 + "serde", 78 + ] 79 + 80 + [[package]] 81 + name = "chia_rs" 82 + version = "0.1.5" 83 + dependencies = [ 84 + "chia", 85 + "clvmr", 86 + "hex", 87 + "py_streamable", 88 + "pyo3", 89 + "serde", 90 + "sha2", 91 + ] 92 + 93 + [[package]] 94 + name = "chia_wasm" 95 + version = "0.1.5" 96 + dependencies = [ 97 + "chia", 98 + "wasm-bindgen", 99 + "wasm-bindgen-test", 100 + ] 101 + 102 + [[package]] 103 + name = "clvmr" 104 + version = "0.1.20" 105 + source = "registry+https://github.com/rust-lang/crates.io-index" 106 + checksum = "d18d68c7f9e8e08ea66a6673bec83100bd53103a9d504fe279147bd0a79b260c" 107 + dependencies = [ 108 + "bls12_381", 109 + "hex", 110 + "lazy_static", 111 + "num-bigint", 112 + "num-integer", 113 + "num-traits", 114 + "pyo3", 115 + "sha2", 116 + "wasm-bindgen", 117 + "wasm-bindgen-test", 118 + ] 119 + 120 + [[package]] 121 + name = "console_error_panic_hook" 122 + version = "0.1.7" 123 + source = "registry+https://github.com/rust-lang/crates.io-index" 124 + checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 125 + dependencies = [ 126 + "cfg-if", 127 + "wasm-bindgen", 128 + ] 129 + 130 + [[package]] 131 + name = "cpufeatures" 132 + version = "0.1.5" 133 + source = "registry+https://github.com/rust-lang/crates.io-index" 134 + checksum = "66c99696f6c9dd7f35d486b9d04d7e6e202aa3e8c40d553f2fdf5e7e0c6a71ef" 135 + dependencies = [ 136 + "libc", 137 + ] 138 + 139 + [[package]] 140 + name = "ctor" 141 + version = "0.1.22" 142 + source = "registry+https://github.com/rust-lang/crates.io-index" 143 + checksum = "f877be4f7c9f246b183111634f75baa039715e3f46ce860677d3b19a69fb229c" 144 + dependencies = [ 145 + "quote", 146 + "syn", 147 + ] 148 + 149 + [[package]] 150 + name = "digest" 151 + version = "0.9.0" 152 + source = "registry+https://github.com/rust-lang/crates.io-index" 153 + checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 154 + dependencies = [ 155 + "generic-array", 156 + ] 157 + 158 + [[package]] 159 + name = "ff" 160 + version = "0.10.1" 161 + source = "registry+https://github.com/rust-lang/crates.io-index" 162 + checksum = "d0f40b2dcd8bc322217a5f6559ae5f9e9d1de202a2ecee2e9eafcbece7562a4f" 163 + dependencies = [ 164 + "bitvec", 165 + "rand_core", 166 + "subtle", 167 + ] 168 + 169 + [[package]] 170 + name = "funty" 171 + version = "1.2.0" 172 + source = "registry+https://github.com/rust-lang/crates.io-index" 173 + checksum = "1847abb9cb65d566acd5942e94aea9c8f547ad02c98e1649326fc0e8910b8b1e" 174 + 175 + [[package]] 176 + name = "generic-array" 177 + version = "0.14.5" 178 + source = "registry+https://github.com/rust-lang/crates.io-index" 179 + checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803" 180 + dependencies = [ 181 + "typenum", 182 + "version_check", 183 + ] 184 + 185 + [[package]] 186 + name = "ghost" 187 + version = "0.1.5" 188 + source = "registry+https://github.com/rust-lang/crates.io-index" 189 + checksum = "b93490550b1782c589a350f2211fff2e34682e25fed17ef53fc4fa8fe184975e" 190 + dependencies = [ 191 + "proc-macro2", 192 + "quote", 193 + "syn", 194 + ] 195 + 196 + [[package]] 197 + name = "group" 198 + version = "0.10.0" 199 + source = "registry+https://github.com/rust-lang/crates.io-index" 200 + checksum = "1c363a5301b8f153d80747126a04b3c82073b9fe3130571a9d170cacdeaf7912" 201 + dependencies = [ 202 + "byteorder", 203 + "ff", 204 + "rand_core", 205 + "subtle", 206 + ] 207 + 208 + [[package]] 209 + name = "hex" 210 + version = "0.4.3" 211 + source = "registry+https://github.com/rust-lang/crates.io-index" 212 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 213 + 214 + [[package]] 215 + name = "indoc" 216 + version = "0.3.6" 217 + source = "registry+https://github.com/rust-lang/crates.io-index" 218 + checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8" 219 + dependencies = [ 220 + "indoc-impl", 221 + "proc-macro-hack", 222 + ] 223 + 224 + [[package]] 225 + name = "indoc-impl" 226 + version = "0.3.6" 227 + source = "registry+https://github.com/rust-lang/crates.io-index" 228 + checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0" 229 + dependencies = [ 230 + "proc-macro-hack", 231 + "proc-macro2", 232 + "quote", 233 + "syn", 234 + "unindent", 235 + ] 236 + 237 + [[package]] 238 + name = "instant" 239 + version = "0.1.12" 240 + source = "registry+https://github.com/rust-lang/crates.io-index" 241 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 242 + dependencies = [ 243 + "cfg-if", 244 + ] 245 + 246 + [[package]] 247 + name = "inventory" 248 + version = "0.1.11" 249 + source = "registry+https://github.com/rust-lang/crates.io-index" 250 + checksum = "f0eb5160c60ba1e809707918ee329adb99d222888155835c6feedba19f6c3fd4" 251 + dependencies = [ 252 + "ctor", 253 + "ghost", 254 + "inventory-impl", 255 + ] 256 + 257 + [[package]] 258 + name = "inventory-impl" 259 + version = "0.1.11" 260 + source = "registry+https://github.com/rust-lang/crates.io-index" 261 + checksum = "7e41b53715c6f0c4be49510bb82dee2c1e51c8586d885abe65396e82ed518548" 262 + dependencies = [ 263 + "proc-macro2", 264 + "quote", 265 + "syn", 266 + ] 267 + 268 + [[package]] 269 + name = "js-sys" 270 + version = "0.3.52" 271 + source = "registry+https://github.com/rust-lang/crates.io-index" 272 + checksum = "ce791b7ca6638aae45be056e068fc756d871eb3b3b10b8efa62d1c9cec616752" 273 + dependencies = [ 274 + "wasm-bindgen", 275 + ] 276 + 277 + [[package]] 278 + name = "lazy_static" 279 + version = "1.4.0" 280 + source = "registry+https://github.com/rust-lang/crates.io-index" 281 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 282 + 283 + [[package]] 284 + name = "libc" 285 + version = "0.2.126" 286 + source = "registry+https://github.com/rust-lang/crates.io-index" 287 + checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" 288 + 289 + [[package]] 290 + name = "lock_api" 291 + version = "0.4.7" 292 + source = "registry+https://github.com/rust-lang/crates.io-index" 293 + checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" 294 + dependencies = [ 295 + "autocfg", 296 + "scopeguard", 297 + ] 298 + 299 + [[package]] 300 + name = "log" 301 + version = "0.4.17" 302 + source = "registry+https://github.com/rust-lang/crates.io-index" 303 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 304 + dependencies = [ 305 + "cfg-if", 306 + ] 307 + 308 + [[package]] 309 + name = "num-bigint" 310 + version = "0.4.0" 311 + source = "registry+https://github.com/rust-lang/crates.io-index" 312 + checksum = "4e0d047c1062aa51e256408c560894e5251f08925980e53cf1aa5bd00eec6512" 313 + dependencies = [ 314 + "autocfg", 315 + "num-integer", 316 + "num-traits", 317 + ] 318 + 319 + [[package]] 320 + name = "num-integer" 321 + version = "0.1.44" 322 + source = "registry+https://github.com/rust-lang/crates.io-index" 323 + checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" 324 + dependencies = [ 325 + "autocfg", 326 + "num-traits", 327 + ] 328 + 329 + [[package]] 330 + name = "num-traits" 331 + version = "0.2.14" 332 + source = "registry+https://github.com/rust-lang/crates.io-index" 333 + checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" 334 + dependencies = [ 335 + "autocfg", 336 + ] 337 + 338 + [[package]] 339 + name = "once_cell" 340 + version = "1.13.0" 341 + source = "registry+https://github.com/rust-lang/crates.io-index" 342 + checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" 343 + 344 + [[package]] 345 + name = "opaque-debug" 346 + version = "0.3.0" 347 + source = "registry+https://github.com/rust-lang/crates.io-index" 348 + checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 349 + 350 + [[package]] 351 + name = "pairing" 352 + version = "0.20.0" 353 + source = "registry+https://github.com/rust-lang/crates.io-index" 354 + checksum = "7de9d09263c9966e8196fe0380c9dbbc7ea114b5cf371ba29004bc1f9c6db7f3" 355 + dependencies = [ 356 + "group", 357 + ] 358 + 359 + [[package]] 360 + name = "parking_lot" 361 + version = "0.11.2" 362 + source = "registry+https://github.com/rust-lang/crates.io-index" 363 + checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 364 + dependencies = [ 365 + "instant", 366 + "lock_api", 367 + "parking_lot_core", 368 + ] 369 + 370 + [[package]] 371 + name = "parking_lot_core" 372 + version = "0.8.5" 373 + source = "registry+https://github.com/rust-lang/crates.io-index" 374 + checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" 375 + dependencies = [ 376 + "cfg-if", 377 + "instant", 378 + "libc", 379 + "redox_syscall", 380 + "smallvec", 381 + "winapi", 382 + ] 383 + 384 + [[package]] 385 + name = "paste" 386 + version = "0.1.18" 387 + source = "registry+https://github.com/rust-lang/crates.io-index" 388 + checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880" 389 + dependencies = [ 390 + "paste-impl", 391 + "proc-macro-hack", 392 + ] 393 + 394 + [[package]] 395 + name = "paste-impl" 396 + version = "0.1.18" 397 + source = "registry+https://github.com/rust-lang/crates.io-index" 398 + checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6" 399 + dependencies = [ 400 + "proc-macro-hack", 401 + ] 402 + 403 + [[package]] 404 + name = "proc-macro-hack" 405 + version = "0.5.19" 406 + source = "registry+https://github.com/rust-lang/crates.io-index" 407 + checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 408 + 409 + [[package]] 410 + name = "proc-macro2" 411 + version = "1.0.42" 412 + source = "registry+https://github.com/rust-lang/crates.io-index" 413 + checksum = "c278e965f1d8cf32d6e0e96de3d3e79712178ae67986d9cf9151f51e95aac89b" 414 + dependencies = [ 415 + "unicode-ident", 416 + ] 417 + 418 + [[package]] 419 + name = "py_streamable" 420 + version = "0.1.0" 421 + dependencies = [ 422 + "quote", 423 + "syn", 424 + ] 425 + 426 + [[package]] 427 + name = "pyo3" 428 + version = "0.15.1" 429 + source = "registry+https://github.com/rust-lang/crates.io-index" 430 + checksum = "7cf01dbf1c05af0a14c7779ed6f3aa9deac9c3419606ac9de537a2d649005720" 431 + dependencies = [ 432 + "cfg-if", 433 + "indoc", 434 + "inventory", 435 + "libc", 436 + "parking_lot", 437 + "paste", 438 + "pyo3-build-config", 439 + "pyo3-macros", 440 + "unindent", 441 + ] 442 + 443 + [[package]] 444 + name = "pyo3-build-config" 445 + version = "0.15.2" 446 + source = "registry+https://github.com/rust-lang/crates.io-index" 447 + checksum = "779239fc40b8e18bc8416d3a37d280ca9b9fb04bda54b98037bb6748595c2410" 448 + dependencies = [ 449 + "once_cell", 450 + ] 451 + 452 + [[package]] 453 + name = "pyo3-macros" 454 + version = "0.15.1" 455 + source = "registry+https://github.com/rust-lang/crates.io-index" 456 + checksum = "67701eb32b1f9a9722b4bc54b548ff9d7ebfded011c12daece7b9063be1fd755" 457 + dependencies = [ 458 + "pyo3-macros-backend", 459 + "quote", 460 + "syn", 461 + ] 462 + 463 + [[package]] 464 + name = "pyo3-macros-backend" 465 + version = "0.15.1" 466 + source = "registry+https://github.com/rust-lang/crates.io-index" 467 + checksum = "f44f09e825ee49a105f2c7b23ebee50886a9aee0746f4dd5a704138a64b0218a" 468 + dependencies = [ 469 + "proc-macro2", 470 + "pyo3-build-config", 471 + "quote", 472 + "syn", 473 + ] 474 + 475 + [[package]] 476 + name = "quote" 477 + version = "1.0.20" 478 + source = "registry+https://github.com/rust-lang/crates.io-index" 479 + checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804" 480 + dependencies = [ 481 + "proc-macro2", 482 + ] 483 + 484 + [[package]] 485 + name = "radium" 486 + version = "0.6.2" 487 + source = "registry+https://github.com/rust-lang/crates.io-index" 488 + checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb" 489 + 490 + [[package]] 491 + name = "rand_core" 492 + version = "0.6.3" 493 + source = "registry+https://github.com/rust-lang/crates.io-index" 494 + checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 495 + 496 + [[package]] 497 + name = "redox_syscall" 498 + version = "0.2.16" 499 + source = "registry+https://github.com/rust-lang/crates.io-index" 500 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 501 + dependencies = [ 502 + "bitflags", 503 + ] 504 + 505 + [[package]] 506 + name = "scoped-tls" 507 + version = "1.0.0" 508 + source = "registry+https://github.com/rust-lang/crates.io-index" 509 + checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" 510 + 511 + [[package]] 512 + name = "scopeguard" 513 + version = "1.1.0" 514 + source = "registry+https://github.com/rust-lang/crates.io-index" 515 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 516 + 517 + [[package]] 518 + name = "serde" 519 + version = "1.0.140" 520 + source = "registry+https://github.com/rust-lang/crates.io-index" 521 + checksum = "fc855a42c7967b7c369eb5860f7164ef1f6f81c20c7cc1141f2a604e18723b03" 522 + dependencies = [ 523 + "serde_derive", 524 + ] 525 + 526 + [[package]] 527 + name = "serde_derive" 528 + version = "1.0.140" 529 + source = "registry+https://github.com/rust-lang/crates.io-index" 530 + checksum = "6f2122636b9fe3b81f1cb25099fcf2d3f542cdb1d45940d56c713158884a05da" 531 + dependencies = [ 532 + "proc-macro2", 533 + "quote", 534 + "syn", 535 + ] 536 + 537 + [[package]] 538 + name = "sha2" 539 + version = "0.9.5" 540 + source = "registry+https://github.com/rust-lang/crates.io-index" 541 + checksum = "b362ae5752fd2137731f9fa25fd4d9058af34666ca1966fb969119cc35719f12" 542 + dependencies = [ 543 + "block-buffer", 544 + "cfg-if", 545 + "cpufeatures", 546 + "digest", 547 + "opaque-debug", 548 + ] 549 + 550 + [[package]] 551 + name = "smallvec" 552 + version = "1.9.0" 553 + source = "registry+https://github.com/rust-lang/crates.io-index" 554 + checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" 555 + 556 + [[package]] 557 + name = "subtle" 558 + version = "2.4.1" 559 + source = "registry+https://github.com/rust-lang/crates.io-index" 560 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 561 + 562 + [[package]] 563 + name = "syn" 564 + version = "1.0.98" 565 + source = "registry+https://github.com/rust-lang/crates.io-index" 566 + checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd" 567 + dependencies = [ 568 + "proc-macro2", 569 + "quote", 570 + "unicode-ident", 571 + ] 572 + 573 + [[package]] 574 + name = "tap" 575 + version = "1.0.1" 576 + source = "registry+https://github.com/rust-lang/crates.io-index" 577 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 578 + 579 + [[package]] 580 + name = "typenum" 581 + version = "1.15.0" 582 + source = "registry+https://github.com/rust-lang/crates.io-index" 583 + checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 584 + 585 + [[package]] 586 + name = "unicode-ident" 587 + version = "1.0.2" 588 + source = "registry+https://github.com/rust-lang/crates.io-index" 589 + checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7" 590 + 591 + [[package]] 592 + name = "unindent" 593 + version = "0.1.9" 594 + source = "registry+https://github.com/rust-lang/crates.io-index" 595 + checksum = "52fee519a3e570f7df377a06a1a7775cdbfb7aa460be7e08de2b1f0e69973a44" 596 + 597 + [[package]] 598 + name = "version_check" 599 + version = "0.9.4" 600 + source = "registry+https://github.com/rust-lang/crates.io-index" 601 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 602 + 603 + [[package]] 604 + name = "wasm-bindgen" 605 + version = "0.2.75" 606 + source = "registry+https://github.com/rust-lang/crates.io-index" 607 + checksum = "b608ecc8f4198fe8680e2ed18eccab5f0cd4caaf3d83516fa5fb2e927fda2586" 608 + dependencies = [ 609 + "cfg-if", 610 + "wasm-bindgen-macro", 611 + ] 612 + 613 + [[package]] 614 + name = "wasm-bindgen-backend" 615 + version = "0.2.75" 616 + source = "registry+https://github.com/rust-lang/crates.io-index" 617 + checksum = "580aa3a91a63d23aac5b6b267e2d13cb4f363e31dce6c352fca4752ae12e479f" 618 + dependencies = [ 619 + "bumpalo", 620 + "lazy_static", 621 + "log", 622 + "proc-macro2", 623 + "quote", 624 + "syn", 625 + "wasm-bindgen-shared", 626 + ] 627 + 628 + [[package]] 629 + name = "wasm-bindgen-futures" 630 + version = "0.4.25" 631 + source = "registry+https://github.com/rust-lang/crates.io-index" 632 + checksum = "16646b21c3add8e13fdb8f20172f8a28c3dbf62f45406bcff0233188226cfe0c" 633 + dependencies = [ 634 + "cfg-if", 635 + "js-sys", 636 + "wasm-bindgen", 637 + "web-sys", 638 + ] 639 + 640 + [[package]] 641 + name = "wasm-bindgen-macro" 642 + version = "0.2.75" 643 + source = "registry+https://github.com/rust-lang/crates.io-index" 644 + checksum = "171ebf0ed9e1458810dfcb31f2e766ad6b3a89dbda42d8901f2b268277e5f09c" 645 + dependencies = [ 646 + "quote", 647 + "wasm-bindgen-macro-support", 648 + ] 649 + 650 + [[package]] 651 + name = "wasm-bindgen-macro-support" 652 + version = "0.2.75" 653 + source = "registry+https://github.com/rust-lang/crates.io-index" 654 + checksum = "6c2657dd393f03aa2a659c25c6ae18a13a4048cebd220e147933ea837efc589f" 655 + dependencies = [ 656 + "proc-macro2", 657 + "quote", 658 + "syn", 659 + "wasm-bindgen-backend", 660 + "wasm-bindgen-shared", 661 + ] 662 + 663 + [[package]] 664 + name = "wasm-bindgen-shared" 665 + version = "0.2.75" 666 + source = "registry+https://github.com/rust-lang/crates.io-index" 667 + checksum = "2e0c4a743a309662d45f4ede961d7afa4ba4131a59a639f29b0069c3798bbcc2" 668 + 669 + [[package]] 670 + name = "wasm-bindgen-test" 671 + version = "0.3.25" 672 + source = "registry+https://github.com/rust-lang/crates.io-index" 673 + checksum = "ce783b6c3854292723f498b7bfcf65a782a320b6f1cb3012d08dfbc603fa62f5" 674 + dependencies = [ 675 + "console_error_panic_hook", 676 + "js-sys", 677 + "scoped-tls", 678 + "wasm-bindgen", 679 + "wasm-bindgen-futures", 680 + "wasm-bindgen-test-macro", 681 + ] 682 + 683 + [[package]] 684 + name = "wasm-bindgen-test-macro" 685 + version = "0.3.25" 686 + source = "registry+https://github.com/rust-lang/crates.io-index" 687 + checksum = "3859815cf8435b92f3a34381bef950daffc1403bbb77ef99e35422a7b0abb194" 688 + dependencies = [ 689 + "proc-macro2", 690 + "quote", 691 + ] 692 + 693 + [[package]] 694 + name = "web-sys" 695 + version = "0.3.52" 696 + source = "registry+https://github.com/rust-lang/crates.io-index" 697 + checksum = "01c70a82d842c9979078c772d4a1344685045f1a5628f677c2b2eab4dd7d2696" 698 + dependencies = [ 699 + "js-sys", 700 + "wasm-bindgen", 701 + ] 702 + 703 + [[package]] 704 + name = "winapi" 705 + version = "0.3.9" 706 + source = "registry+https://github.com/rust-lang/crates.io-index" 707 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 708 + dependencies = [ 709 + "winapi-i686-pc-windows-gnu", 710 + "winapi-x86_64-pc-windows-gnu", 711 + ] 712 + 713 + [[package]] 714 + name = "winapi-i686-pc-windows-gnu" 715 + version = "0.4.0" 716 + source = "registry+https://github.com/rust-lang/crates.io-index" 717 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 718 + 719 + [[package]] 720 + name = "winapi-x86_64-pc-windows-gnu" 721 + version = "0.4.0" 722 + source = "registry+https://github.com/rust-lang/crates.io-index" 723 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 724 + 725 + [[package]] 726 + name = "wyz" 727 + version = "0.4.0" 728 + source = "registry+https://github.com/rust-lang/crates.io-index" 729 + checksum = "129e027ad65ce1453680623c3fb5163cbf7107bfe1aa32257e7d0e63f9ced188" 730 + dependencies = [ 731 + "tap", 732 + ]
+49
pkgs/development/python-modules/chia-rs/default.nix
··· 1 + { buildPythonPackage 2 + , lib 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , rustPlatform 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "chia-rs"; 10 + version = "0.1.5"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "chia-network"; 14 + repo = "chia_rs"; 15 + rev = version; 16 + sha256 = "sha256-4TIRj7FMIArI/EvDARReC4MqDG44zjn/MKoUHAVqq5s="; 17 + }; 18 + 19 + cargoDeps = rustPlatform.importCargoLock { 20 + lockFile = ./Cargo.lock; 21 + }; 22 + 23 + postPatch = '' 24 + cp ${./Cargo.lock} Cargo.lock 25 + ''; 26 + 27 + nativeBuildInputs = with rustPlatform; [ 28 + cargoSetupHook 29 + maturinBuildHook 30 + ]; 31 + 32 + preBuild = '' 33 + # avoid ENOENT in maturinBuildHook 34 + touch wheel/Cargo.lock 35 + ''; 36 + 37 + checkInputs = [ 38 + pytestCheckHook 39 + ]; 40 + 41 + buildAndTestSubdir = "wheel"; 42 + 43 + meta = with lib; { 44 + description = "Rust crate & wheel with consensus code"; 45 + homepage = "https://github.com/Chia-Network/chia_rs/"; 46 + license = licenses.asl20; 47 + maintainers = teams.chia.members; 48 + }; 49 + }
-26
pkgs/development/python-modules/clvm-rs/default.nix
··· 9 9 , pkgs 10 10 }: 11 11 12 - let 13 - # clvm-rs does not work with maturin 0.12 14 - # https://github.com/Chia-Network/clvm_rs/commit/32fba40178a5440a1306623f47d8b0684ae2339a#diff-50c86b7ed8ac2cf95bd48334961bf0530cdc77b5a56f852c5c61b89d735fd711 15 - maturin_0_11 = with pkgs; rustPlatform.buildRustPackage rec { 16 - pname = "maturin"; 17 - version = "0.11.5"; 18 - src = fetchFromGitHub { 19 - owner = "PyO3"; 20 - repo = "maturin"; 21 - rev = "v${version}"; 22 - hash = "sha256-hwc6WObcJa6EXf+9PRByUtiupMMYuXThA8i/K4rl0MA="; 23 - }; 24 - cargoHash = "sha256-qGCEfKpQwAC57LKonFnUEgLW4Cc7HFJgSyUOzHkKN9c="; 25 - 26 - 27 - nativeBuildInputs = [ pkg-config ]; 28 - 29 - buildInputs = lib.optionals stdenv.isLinux [ dbus ] 30 - ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security libiconv ]; 31 - 32 - # Requires network access, fails in sandbox. 33 - doCheck = false; 34 - }; 35 - in 36 - 37 12 buildPythonPackage rec { 38 13 pname = "clvm_rs"; 39 14 version = "0.1.19"; ··· 58 33 59 34 nativeBuildInputs = [ 60 35 perl # used by openssl-sys to configure 61 - maturin_0_11 62 36 ] ++ (with rustPlatform; [ 63 37 cargoSetupHook 64 38 maturinBuildHook
+40
pkgs/development/python-modules/clvm-tools-rs/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , rustPlatform 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "clvm-tools-rs"; 10 + version = "0.1.19"; 11 + disabled = pythonOlder "3.7"; 12 + format = "pyproject"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "Chia-Network"; 16 + repo = "clvm_tools_rs"; 17 + rev = version; 18 + sha256 = "sha256-LQbFBZBLUAjyqIAWIn+N8tUrBMskRoKvMMg5gfTyVU8="; 19 + }; 20 + 21 + cargoDeps = rustPlatform.fetchCargoTarball { 22 + inherit src; 23 + name = "${pname}-${version}"; 24 + sha256 = "sha256-LcDWpMM+PUElsXO82H6QVOp338+NduC/j3pXQKSni3I="; 25 + }; 26 + 27 + nativeBuildInputs = with rustPlatform; [ 28 + cargoSetupHook 29 + maturinBuildHook 30 + ]; 31 + 32 + pythonImportsCheck = [ "clvm_tools_rs" ]; 33 + 34 + meta = with lib; { 35 + homepage = "https://chialisp.com/"; 36 + description = "Rust port of clvm_tools"; 37 + license = licenses.asl20; 38 + maintainers = teams.chia.members; 39 + }; 40 + }
+2 -2
pkgs/development/python-modules/clvm-tools/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "clvm_tools"; 12 - version = "0.4.3"; 12 + version = "0.4.4"; 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "Chia-Network"; 17 17 repo = "clvm_tools"; 18 18 rev = version; 19 - sha256 = "sha256-bWz3YCrakob/kROq+LOA+yD1wtIbInVrmDqtg4/cV4g="; 19 + sha256 = "sha256-Fv7NTUEjbEDALyc+WLDQ7yJOdODZCwLobN+vUvaBWMY="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+3 -3
pkgs/development/tools/analysis/tflint/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tflint"; 5 - version = "0.38.1"; 5 + version = "0.39.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "terraform-linters"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-sBvfcAOkfZ5V7SrLBWrSQr5zXwqbwOBmYehujk0y6eg="; 11 + sha256 = "sha256-hyaYHn2Hzq6k4HSSy86zloLG1Sy/hpHpmj1xUD2UoG8="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-2v070TwDWkN4HZ/EOu85lotA9qIKLgpwD9TrfH7pGY4="; 14 + vendorSha256 = "sha256-6sk1bFuSCrKt9uMrrwOpX/SBZrjFvtqVPFylbRNHpz4="; 15 15 16 16 doCheck = false; 17 17
+3 -3
pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
··· 3 3 nixosTests }: 4 4 buildGoModule rec { 5 5 pname = "buildkite-agent"; 6 - version = "3.37.0"; 6 + version = "3.38.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "buildkite"; 10 10 repo = "agent"; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-fjPMf9upHksijVApXgXumxCueI7huWRqQsIyAx7BCpI="; 12 + sha256 = "sha256-W93yvdyfk6niSZ/usiOp6Yb8tFgEuC3UmJI6zDEHsFY="; 13 13 }; 14 14 15 - vendorSha256 = "sha256-BV5GUqv3u3kE4qOkEBmc3mGFJHqrGRxwObEY4PzRboA="; 15 + vendorSha256 = "sha256-n+n+Fank/L8mVCB7ulVXJkpJpr65ELirtBqScot2ANM="; 16 16 17 17 postPatch = '' 18 18 substituteInPlace bootstrap/shell/shell.go --replace /bin/bash ${bash}/bin/bash
+2 -2
pkgs/development/tools/cpm/default.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation rec { 7 7 pname = "cpm"; 8 - version = "0.35.1"; 8 + version = "0.35.2"; 9 9 10 10 src = fetchurl { 11 11 url = "https://github.com/cpm-cmake/CPM.cmake/releases/download/v${version}/CPM.cmake"; 12 - sha256 = "sha256-CMge+NpJRU+G+c+s0tb2EN8UG6E8FE90lIvcULggYXY="; 12 + sha256 = "sha256-QZ3h2x92ltvevcynNYiS+ZCPWnM6T0hyXLLVweFJX2w="; 13 13 }; 14 14 15 15 dontUnpack = true;
+3 -3
pkgs/development/tools/esbuild/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "esbuild"; 5 - version = "0.14.49"; 5 + version = "0.14.50"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "evanw"; 9 9 repo = "esbuild"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-bQt9dLkwvXT4pLxTwYp+5Bg6IgwBnB8uu1gdAmhPn0A="; 11 + sha256 = "sha256-hW57Ey+2wr7p2ilsMp0luSTOD8aABPpI7GuP0xS7HfY="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-QPkBR+FscUc3jOvH7olcGUhM6OW4vxawmNJuRQxPuGs="; 14 + vendorSha256 = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ="; 15 15 16 16 subPackages = [ "cmd/esbuild" ]; 17 17
+3 -3
pkgs/development/tools/go-toml/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "go-toml"; 5 - version = "2.0.0"; 5 + version = "2.0.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pelletier"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-NdUD+QpqKU5CaY2vBEop6hoK6z1Ok4Dn+W9eUHaGFb4="; 11 + sha256 = "sha256-lZUM31lA6l35EHEZnw6i+WR7qBo692RvlOBkxxBq6Vs="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-TuyrtUAbT++S3glpCD603KV6QMkOFv5FgnPpYcMjy1I="; 14 + vendorSha256 = "sha256-/F/ZbeNkiiO2+QibpoKUi1kC3Wv5Jujx6r468irlea0="; 15 15 16 16 excludedPackages = [ "cmd/gotoml-test-decoder" "cmd/tomltestgen" ]; 17 17
+2 -2
pkgs/development/tools/gore/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gore"; 5 - version = "0.5.4"; 5 + version = "0.5.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "motemen"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ipHvflsVBSjqohV/PliS0s0Nhie4nIP/HgupNH/Yui4="; 11 + sha256 = "sha256-ZNv3sqwOEtxjvyqC9oR8xYwo8sywU2MF8ngBw407/ko="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-HrdNWsUVz5G5tG/ZFz2z1Vt4kM12I088/6OIkRFyDl8=";
+2 -2
pkgs/development/tools/gotestsum/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gotestsum"; 5 - version = "1.8.0"; 5 + version = "1.8.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "gotestyourself"; 9 9 repo = "gotestsum"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-6GEkuVa6RCMv0FsTYXhhscVe3Ya78qwbj7Im9AL0fOo="; 11 + sha256 = "sha256-EACzBakuMlwDUJTk/63OxFx3olNtyDLBYRdGE9BSSYI="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-wP5y8Ec6eSe+rdMEQQdX0fFTQ0HWuiyBRHxGlraZd+o=";
+3 -3
pkgs/development/tools/hcloud/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "hcloud"; 5 - version = "1.30.0"; 5 + version = "1.30.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hetznercloud"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-mbMrXPQg5yUhmfJ3ztrXD/NKmwJKkZFFPu+utrsaPEc="; 11 + sha256 = "sha256-0zVbk8NuPGYyEcYV1F1if8VdKa4MnW2v+VQcvgM9bZ8="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-++uvg/vXRX2lPU4CmqAcLWbsWBXZHXaXO4qXEaq90T4"; 14 + vendorSha256 = "sha256-++uvg/vXRX2lPU4CmqAcLWbsWBXZHXaXO4qXEaq90T4="; 15 15 16 16 ldflags = [ 17 17 "-s" "-w"
+3 -3
pkgs/development/tools/misc/grcov/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "grcov"; 5 - version = "0.8.9"; 5 + version = "0.8.11"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mozilla"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-VSjKZoK/o05kYX5mRCnaS6r/+4dZep9Bp9Im1Zw7piM="; 11 + sha256 = "sha256-PUZ60dc2ciUInr98dF67Fi0xP/IHgITtYYG54wlLZYE="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-7I0BizeDbikpog0YG/X8vwoO4PGE1qYzRTWTr0RUQws="; 14 + cargoSha256 = "sha256-7bDWxiVmSi2GT6cSTzT0GTAs1qmFaj40JmVaD/sFwsA="; 15 15 16 16 # tests do not find grcov path correctly 17 17 checkFlags = let
+3 -3
pkgs/development/tools/misc/grpc-client-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "grpc-client-cli"; 5 - version = "1.12.0"; 5 + version = "1.13.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vadimi"; 9 9 repo = "grpc-client-cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-hsx+nmkYLkSsrUEDAf5556qNLeZ3w5txFBUpDv+b3a4="; 11 + sha256 = "sha256-lm+XPZB1USYV3bSYyQCgHJwG6DkhDuAbTaUycxu+CeM="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-1WcnEl3odjxyXfSNyzPU3fa5yrF4MaEgfCAsbr3xedA="; 14 + vendorSha256 = "sha256-benXxv//bB4fcfAsZ69DZu9E+4iKQgVbaWGYcFsnyfM="; 15 15 16 16 meta = with lib; { 17 17 description = "generic gRPC command line client";
+3 -2
pkgs/misc/fastly/default.nix
··· 1 - { lib, fetchFromGitHub, installShellFiles, buildGoModule }: 1 + { lib, fetchFromGitHub, installShellFiles, buildGoModule, go }: 2 2 3 3 buildGoModule rec { 4 4 pname = "fastly"; ··· 34 34 "-w" 35 35 "-X github.com/fastly/cli/pkg/revision.AppVersion=v${version}" 36 36 "-X github.com/fastly/cli/pkg/revision.Environment=release" 37 + "-X github.com/fastly/cli/pkg/revision.GoHostOS=${go.GOHOSTOS}" 38 + "-X github.com/fastly/cli/pkg/revision.GoHostArch=${go.GOHOSTARCH}" 37 39 ]; 38 40 preBuild = '' 39 41 ldflags+=" -X github.com/fastly/cli/pkg/revision.GitCommit=$(cat COMMIT)" 40 - ldflags+=" -X 'github.com/fastly/cli/pkg/revision.GoVersion=$(go version)'" 41 42 ''; 42 43 43 44 postInstall = ''
-1
pkgs/servers/gpsd/default.nix
··· 109 109 110 110 # remove binaries for x-less install because xgps sconsflag is partially broken 111 111 postFixup = '' 112 - ${if guiSupport then "" else "rm $out/bin/xgps*"} 113 112 wrapPythonProgramsIn $out/bin "$out $pythonPath" 114 113 ''; 115 114
+2 -2
pkgs/servers/jackett/default.nix
··· 9 9 10 10 buildDotnetModule rec { 11 11 pname = "jackett"; 12 - version = "0.20.915"; 12 + version = "0.20.1473"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = pname; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "aKl0PTzmaBPhVihWDP2WMlt3aA9D53w/o/wOFQo7ArA="; 18 + sha256 = "5HrdlBk/MKBW1Y5WsKRRxF1vYagsQnCBo5a1lhMDklE="; 19 19 }; 20 20 21 21 projectFile = "src/Jackett.Server/Jackett.Server.csproj";
+2 -2
pkgs/servers/monitoring/loki/default.nix
··· 8 8 }: 9 9 10 10 buildGoModule rec { 11 - version = "2.6.0"; 11 + version = "2.6.1"; 12 12 pname = "grafana-loki"; 13 13 14 14 src = fetchFromGitHub { 15 15 rev = "v${version}"; 16 16 owner = "grafana"; 17 17 repo = "loki"; 18 - sha256 = "sha256-LPunSNKF0HBlmYOn0AIT0zLSVmLaizDnDchJhMjexfM="; 18 + sha256 = "sha256-6g0tzI6ZW+wwbPrNTdj0t2H0/M8+M9ioJl6iPL0mAtY="; 19 19 }; 20 20 21 21 vendorSha256 = null;
+3 -3
pkgs/shells/zsh/oh-my-zsh/default.nix
··· 5 5 , git, nix, nixfmt, jq, coreutils, gnused, curl, cacert, bash }: 6 6 7 7 stdenv.mkDerivation rec { 8 - version = "2022-07-12"; 8 + version = "2022-07-26"; 9 9 pname = "oh-my-zsh"; 10 - rev = "249c708ed3a4a7a63d16a6e911a46b6fb9623cbd"; 10 + rev = "bb6c14cdfd0b7d543d0d9c2e5f0c0a9409a82084"; 11 11 12 12 src = fetchFromGitHub { 13 13 inherit rev; 14 14 owner = "ohmyzsh"; 15 15 repo = "ohmyzsh"; 16 - sha256 = "zBLgAS96uovLIrKLoVSjRJKeoRkGWu6TQqsvoYokLV4="; 16 + sha256 = "jlQKnF5vZp7ARVXtV/WEnTIV0m5FwqTj83igDyMyTTQ="; 17 17 }; 18 18 19 19 strictDeps = true;
+2 -2
pkgs/tools/audio/headsetcontrol/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "headsetcontrol"; 10 - version = "2.6"; 10 + version = "2.6.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "Sapd"; 14 14 repo = "HeadsetControl"; 15 15 rev = version; 16 - sha256 = "0a7zimzi71416pmn6z0l1dn1c2x8p702hkd0k6da9rsznff85a88"; 16 + sha256 = "sha256-SVOcRzR52RYZsk/OWAr1/s+Nm6x48OxG0TF7yQ+Kb94="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+10 -7
pkgs/tools/misc/libgen-cli/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 + 2 3 buildGoModule rec { 3 4 pname = "libgen-cli"; 4 - version = "1.0.7"; 5 + version = "1.0.9"; 5 6 6 7 src = fetchFromGitHub { 7 8 owner = "ciehanski"; 8 9 repo = pname; 9 10 rev = "v${version}"; 10 - sha256 = "15nzdwhmgpm36dqx7an5rjl5sw2r4p66qn2y3jzl6fc0y7224ns1"; 11 + sha256 = "sha256-Ga9C4h1dcjIdsLJLgZ9s1Fnq4ejI5q0gUtapg/FpLcM="; 11 12 }; 12 13 13 - vendorSha256 = "0smb83mq711b2pby57ijcllccn7y2l10zb4fbf779xibb2g09608"; 14 + vendorSha256 = "sha256-uHu0BfF26COL/S/yswdcVJVYwozl8Pl3RXHSctYQi+s="; 14 15 15 16 doCheck = false; 16 17 17 18 subPackages = [ "." ]; 18 19 19 20 nativeBuildInputs = [ installShellFiles ]; 21 + 22 + ldflags = [ "-s" "-w" ]; 20 23 21 24 postInstall = '' 22 - for shell in bash zsh; do 23 - $out/bin/libgen-cli completion $shell > libgen-cli.$shell || : 24 - installShellCompletion libgen-cli.$shell 25 - done 25 + installShellCompletion --cmd libgen-cli \ 26 + --bash <($out/bin/libgen-cli completion bash) \ 27 + --fish <($out/bin/libgen-cli completion fish) \ 28 + --zsh <($out/bin/libgen-cli completion zsh) 26 29 ''; 27 30 28 31 meta = with lib; {
+2 -2
pkgs/tools/networking/checkip/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "checkip"; 8 - version = "0.38.5"; 8 + version = "0.40.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "jreisinger"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-ZwrwBWhji/moT1dQBCkMP5DI+xEfE6dGtZerFubobjc="; 14 + sha256 = "sha256-rq1pmGcRrpqM+ffiWhgAG/L0UqtvD4XWRblzv49P9T8="; 15 15 }; 16 16 17 17 vendorSha256 = "sha256-cahrJvPSemlEpaQ1s4bbi1yp0orTDGOoanqXDVVIpjQ=";
+3 -3
pkgs/tools/networking/gping/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "gping"; 11 - version = "1.3.1"; 11 + version = "1.3.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "orf"; 15 15 repo = "gping"; 16 16 rev = "gping-v${version}"; 17 - sha256 = "sha256-/CH9cSOkgXxdxSN1G4Jg404KOHEYhnsSCK4QB6Zdk+A="; 17 + sha256 = "sha256-hAUmRUMhP3rD1k6UhIN94/Kt+OjaytUTM3XIcrvasco="; 18 18 }; 19 19 20 - cargoSha256 = "sha256-2knD3MwrJKvbdovh6bd81GqHHqeAG1OFzXsLB4eO0Do="; 20 + cargoSha256 = "sha256-SqQsKTS3psF/xfwyBRQB9c3/KIZU1fpyqVy9fh4Rqkk="; 21 21 22 22 buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 23 23
+3 -3
pkgs/tools/security/chain-bench/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "chain-bench"; 9 - version = "0.1.0"; 9 + version = "0.1.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "aquasecurity"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-8KsEjVZJtQ4oj4UVM2TRzAOPUeUWKVwPM+8zLzsvLq0="; 15 + sha256 = "sha256-qNprOxp8PKV5nld4uDGH0I0KG0r5sH7vr6It62J8RXc="; 16 16 }; 17 - vendorSha256 = "sha256-UWm6Bg6E6Vo6giztkPqCLaM7BBxJ+qmlXlYat3xlSYM="; 17 + vendorSha256 = "sha256-54q486c/uUpatLQ3/FiVZxqu9NCkzcf8yQUZnAtrqYg="; 18 18 19 19 nativeBuildInputs = [ installShellFiles ]; 20 20
+3 -3
pkgs/tools/security/doppler/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "doppler"; 5 - version = "3.38.0"; 5 + version = "3.40.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dopplerhq"; 9 9 repo = "cli"; 10 10 rev = version; 11 - sha256 = "sha256-GKsq6AhkhacG+5XIELpe58bDe5l3BnLCwJHMkCzTzJU="; 11 + sha256 = "sha256-OVfclCkyFw9GO7sGjId40vrmnt4oyHjNYZBNFjyYFUc="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-VPxHxNtDeP5CFDMTeMsZYED9ZGWMquJdeupeCVldY/E="; 14 + vendorSha256 = "sha256-evG1M0ZHfn9hsMsSncwxF5Hr/VJ7y6Ir0D2gHJaunBo="; 15 15 16 16 ldflags = [ "-X github.com/DopplerHQ/cli/pkg/version.ProgramVersion=v${version}" ]; 17 17
+2 -2
pkgs/tools/virtualization/govc/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "govc"; 5 - version = "0.28.0"; 5 + version = "0.29.0"; 6 6 7 7 subPackages = [ "govc" ]; 8 8 ··· 10 10 rev = "v${version}"; 11 11 owner = "vmware"; 12 12 repo = "govmomi"; 13 - sha256 = "sha256-uK1JsBJC9O8dEJbAnyeMoolKZ2WhEPsDo/is/I+gfHg="; 13 + sha256 = "sha256-SVQyl1uI3wGBBDhz2VLm0uJj+aREqNot7K+iGRHGmhI="; 14 14 }; 15 15 16 16 vendorSha256 = "sha256-jbGqQITAhyBLoDa3cKU5gK+4WGgoGSCyFtzeoXx8e7k=";
+3 -1
pkgs/top-level/all-packages.nix
··· 3680 3680 3681 3681 extrude = callPackage ../tools/security/extrude { }; 3682 3682 3683 - fastly = callPackage ../misc/fastly {}; 3683 + fastly = callPackage ../misc/fastly { 3684 + # If buildGoModule is overriden, provide a matching version of the go attribute 3685 + }; 3684 3686 3685 3687 f2 = callPackage ../tools/misc/f2 {}; 3686 3688
+4
pkgs/top-level/python-packages.nix
··· 1680 1680 1681 1681 chiavdf = callPackage ../development/python-modules/chiavdf { }; 1682 1682 1683 + chia-rs = callPackage ../development/python-modules/chia-rs { }; 1684 + 1683 1685 chirpstack-api = callPackage ../development/python-modules/chirpstack-api { }; 1684 1686 1685 1687 chispa = callPackage ../development/python-modules/chispa { }; ··· 1813 1815 clvm-rs = callPackage ../development/python-modules/clvm-rs { }; 1814 1816 1815 1817 clvm-tools = callPackage ../development/python-modules/clvm-tools { }; 1818 + 1819 + clvm-tools-rs = callPackage ../development/python-modules/clvm-tools-rs { }; 1816 1820 1817 1821 cma = callPackage ../development/python-modules/cma { }; 1818 1822