Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
bbf876fe 56d5a48b

+1485 -922
+1 -1
maintainers/maintainer-list.nix
··· 13294 }; 13295 piturnah = { 13296 email = "peterhebden6@gmail.com"; 13297 - github = "piturnah"; 13298 githubId = 20472367; 13299 name = "Peter Hebden"; 13300 };
··· 13294 }; 13295 piturnah = { 13296 email = "peterhebden6@gmail.com"; 13297 + github = "Piturnah"; 13298 githubId = 20472367; 13299 name = "Peter Hebden"; 13300 };
+6
nixos/modules/services/network-filesystems/kubo.nix
··· 278 You can't set services.kubo.settings.Pinning.RemoteServices because the ``config replace`` subcommand used at startup does not work with it. 279 ''; 280 } 281 ]; 282 283 environment.systemPackages = [ cfg.package ];
··· 278 You can't set services.kubo.settings.Pinning.RemoteServices because the ``config replace`` subcommand used at startup does not work with it. 279 ''; 280 } 281 + { 282 + assertion = !((lib.versionAtLeast cfg.package.version "0.21") && (builtins.hasAttr "Experimental" cfg.settings) && (builtins.hasAttr "AcceleratedDHTClient" cfg.settings.Experimental)); 283 + message = '' 284 + The `services.kubo.settings.Experimental.AcceleratedDHTClient` option was renamed to `services.kubo.settings.Routing.AcceleratedDHTClient` in Kubo 0.21. 285 + ''; 286 + } 287 ]; 288 289 environment.systemPackages = [ cfg.package ];
+2 -2
pkgs/applications/audio/carla/default.nix
··· 26 27 stdenv.mkDerivation (finalAttrs: { 28 pname = "carla"; 29 - version = "2.5.5"; 30 31 src = fetchFromGitHub { 32 owner = "falkTX"; 33 repo = finalAttrs.pname; 34 rev = "v${finalAttrs.version}"; 35 - hash = "sha256-kXQ0dv4KrwvfxdP73zimof9XKpAz5E6hQrFOjLG4hKU="; 36 }; 37 38 nativeBuildInputs = [
··· 26 27 stdenv.mkDerivation (finalAttrs: { 28 pname = "carla"; 29 + version = "2.5.6"; 30 31 src = fetchFromGitHub { 32 owner = "falkTX"; 33 repo = finalAttrs.pname; 34 rev = "v${finalAttrs.version}"; 35 + hash = "sha256-/ZIproky1AHJHvV62xWm0nrzNBOjvBBv93V0KespVjU="; 36 }; 37 38 nativeBuildInputs = [
+2 -2
pkgs/applications/audio/ft2-clone/default.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "ft2-clone"; 16 - version = "1.68"; 17 18 src = fetchFromGitHub { 19 owner = "8bitbubsy"; 20 repo = "ft2-clone"; 21 rev = "v${version}"; 22 - sha256 = "sha256-mO8GrLyO7Zr9+lRy2WQ4OeRWDGmo22mPnZbajL78hJ8="; 23 }; 24 25 # Adapt the linux-only CMakeLists to darwin (more reliable than make-macos.sh)
··· 13 14 stdenv.mkDerivation rec { 15 pname = "ft2-clone"; 16 + version = "1.69"; 17 18 src = fetchFromGitHub { 19 owner = "8bitbubsy"; 20 repo = "ft2-clone"; 21 rev = "v${version}"; 22 + sha256 = "sha256-tm0yTh46UKnsjH9hv3cMW0YL2x3OTRL+14x4c7w124U="; 23 }; 24 25 # Adapt the linux-only CMakeLists to darwin (more reliable than make-macos.sh)
+15 -13
pkgs/applications/audio/kid3/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchurl 4 - , chromaprint 5 , cmake 6 , docbook_xml_dtd_45 7 , docbook_xsl 8 , ffmpeg 9 , flac 10 , id3lib 11 , libogg 12 , libvorbis 13 , libxslt ··· 20 , qtquickcontrols 21 , qttools 22 , readline 23 , taglib 24 , wrapQtAppsHook 25 , zlib 26 }: 27 28 - stdenv.mkDerivation rec { 29 pname = "kid3"; 30 version = "3.9.4"; 31 32 src = fetchurl { 33 - url = "https://download.kde.org/stable/${pname}/${version}/${pname}-${version}.tar.xz"; 34 - sha256 = "sha256-xBCWDpYiXeChxIiMPqHG3CyiRau2kUdDJtzcPtvWpSA="; 35 }; 36 37 nativeBuildInputs = [ ··· 42 python3 43 wrapQtAppsHook 44 ]; 45 buildInputs = [ 46 chromaprint 47 ffmpeg ··· 68 export DOCBOOKDIR="${docbook_xsl}/xml/xsl/docbook/" 69 ''; 70 71 - meta = with lib; { 72 homepage = "https://kid3.kde.org/"; 73 - description = "A simple and powerful audio tag editor"; 74 longDescription = '' 75 If you want to easily tag multiple MP3, Ogg/Vorbis, FLAC, MPC, MP4/AAC, 76 MP2, Opus, Speex, TrueAudio, WavPack, WMA, WAV and AIFF files (e.g. full ··· 100 - Edit synchronized lyrics and event timing codes, import and export 101 LRC files. 102 ''; 103 - license = licenses.lgpl2Plus; 104 - maintainers = [ maintainers.AndersonTorres ]; 105 - platforms = platforms.linux; 106 }; 107 - }
··· 1 + { 2 + chromaprint 3 , cmake 4 , docbook_xml_dtd_45 5 , docbook_xsl 6 + , fetchurl 7 , ffmpeg 8 , flac 9 , id3lib 10 + , lib 11 , libogg 12 , libvorbis 13 , libxslt ··· 20 , qtquickcontrols 21 , qttools 22 , readline 23 + , stdenv 24 , taglib 25 , wrapQtAppsHook 26 , zlib 27 }: 28 29 + stdenv.mkDerivation (finalAttrs: { 30 pname = "kid3"; 31 version = "3.9.4"; 32 33 src = fetchurl { 34 + url = "https://download.kde.org/stable/kid3/${finalAttrs.version}/kid3-${finalAttrs.version}.tar.xz"; 35 + hash = "sha256-xBCWDpYiXeChxIiMPqHG3CyiRau2kUdDJtzcPtvWpSA="; 36 }; 37 38 nativeBuildInputs = [ ··· 43 python3 44 wrapQtAppsHook 45 ]; 46 + 47 buildInputs = [ 48 chromaprint 49 ffmpeg ··· 70 export DOCBOOKDIR="${docbook_xsl}/xml/xsl/docbook/" 71 ''; 72 73 + meta = { 74 + description = "A simple and powerful audio tag editor"; 75 homepage = "https://kid3.kde.org/"; 76 + license = lib.licenses.lgpl2Plus; 77 longDescription = '' 78 If you want to easily tag multiple MP3, Ogg/Vorbis, FLAC, MPC, MP4/AAC, 79 MP2, Opus, Speex, TrueAudio, WavPack, WMA, WAV and AIFF files (e.g. full ··· 103 - Edit synchronized lyrics and event timing codes, import and export 104 LRC files. 105 ''; 106 + maintainers = [ lib.maintainers.AndersonTorres ]; 107 + platforms = lib.platforms.linux; 108 }; 109 + })
+1 -1
pkgs/applications/audio/mda-lv2/default.nix
··· 13 buildInputs = [ fftwSinglePrec lv2 ]; 14 15 meta = with lib; { 16 - homepage = "http://drobilla.net/software/mda-lv2/"; 17 description = "An LV2 port of the MDA plugins by Paul Kellett"; 18 license = licenses.gpl2Plus; 19 maintainers = [ maintainers.goibhniu ];
··· 13 buildInputs = [ fftwSinglePrec lv2 ]; 14 15 meta = with lib; { 16 + homepage = "http://drobilla.net/software/mda-lv2.html"; 17 description = "An LV2 port of the MDA plugins by Paul Kellett"; 18 license = licenses.gpl2Plus; 19 maintainers = [ maintainers.goibhniu ];
+41 -16
pkgs/applications/audio/praat/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, wrapGAppsHook, alsa-lib, gtk3, libpulseaudio }: 2 3 - stdenv.mkDerivation rec { 4 pname = "praat"; 5 - version = "6.3.10"; 6 7 src = fetchFromGitHub { 8 owner = "praat"; 9 repo = "praat"; 10 - rev = "v${version}"; 11 - sha256 = "sha256-wnw8GKMukiraZgMMzd3S2NldC/cnRSILNo+D1Rqhr4k="; 12 }; 13 14 - configurePhase = '' 15 - cp makefiles/makefile.defs.linux.pulse makefile.defs 16 - ''; 17 18 makeFlags = [ 19 "AR=${stdenv.cc.targetPrefix}ar" 20 ]; 21 22 installPhase = '' 23 install -Dt $out/bin praat 24 - ''; 25 26 - nativeBuildInputs = [ pkg-config wrapGAppsHook ]; 27 - buildInputs = [ alsa-lib gtk3 libpulseaudio ]; 28 29 enableParallelBuilding = true; 30 31 - meta = with lib; { 32 description = "Doing phonetics by computer"; 33 homepage = "https://www.fon.hum.uva.nl/praat/"; 34 - license = licenses.gpl2Plus; # Has some 3rd-party code in it though 35 - maintainers = with maintainers; [ orivej ]; 36 - platforms = platforms.linux; 37 }; 38 - }
··· 1 + { 2 + alsa-lib 3 + , fetchFromGitHub 4 + , gtk3 5 + , lib 6 + , libpulseaudio 7 + , pkg-config 8 + , stdenv 9 + , wrapGAppsHook 10 + }: 11 12 + stdenv.mkDerivation (finalAttrs: { 13 pname = "praat"; 14 + version = "6.3.14"; 15 16 src = fetchFromGitHub { 17 owner = "praat"; 18 repo = "praat"; 19 + rev = "v${finalAttrs.version}"; 20 + hash = "sha256-HN4w7n0nh7voL/QKhGQwCcGfzn+nyFOwluESlP3B6VM="; 21 }; 22 23 + nativeBuildInputs = [ 24 + pkg-config 25 + wrapGAppsHook 26 + ]; 27 + 28 + buildInputs = [ 29 + alsa-lib 30 + gtk3 31 + libpulseaudio 32 + ]; 33 34 makeFlags = [ 35 "AR=${stdenv.cc.targetPrefix}ar" 36 ]; 37 38 + configurePhase = '' 39 + runHook preConfigure 40 + 41 + cp makefiles/makefile.defs.linux.pulse makefile.defs 42 + 43 + runHook postConfigure 44 + ''; 45 + 46 installPhase = '' 47 + runHook preInstall 48 + 49 install -Dt $out/bin praat 50 51 + runHook postInstall 52 + ''; 53 54 enableParallelBuilding = true; 55 56 + meta = { 57 description = "Doing phonetics by computer"; 58 homepage = "https://www.fon.hum.uva.nl/praat/"; 59 + license = lib.licenses.gpl2Plus; # Has some 3rd-party code in it though 60 + maintainers = with lib.maintainers; [ orivej ]; 61 + platforms = lib.platforms.linux; 62 }; 63 + })
+27
pkgs/applications/editors/heh/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , rustPlatform 4 + , fetchFromGitHub 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "heh"; 9 + version = "0.4.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "ndd7xv"; 13 + repo = pname; 14 + rev = "v${version}"; 15 + hash = "sha256-IIF/bkTLwR8pCs/hJ625T3NsiKf/6Zf1cW2i4lsiK4U="; 16 + }; 17 + 18 + cargoHash = "sha256-tDvqaNVuzv1BlS/oNI1D/WV1b5uHreT3Ak/6ruqKXQc="; 19 + 20 + meta = with lib; { 21 + description = "A cross-platform terminal UI used for modifying file data in hex or ASCII."; 22 + homepage = "https://github.com/ndd7xv/heh"; 23 + changelog = "https://github.com/ndd7xv/heh/releases/tag/${src.rev}"; 24 + license = with licenses; [ mit ]; 25 + maintainers = with maintainers; [ piturnah ]; 26 + }; 27 + }
+2 -2
pkgs/applications/editors/vscode/generic.nix
··· 2 , unzip, libsecret, libXScrnSaver, libxshmfence, buildPackages 3 , atomEnv, at-spi2-atk, autoPatchelfHook 4 , systemd, fontconfig, libdbusmenu, glib, buildFHSEnv, wayland 5 - , libglvnd 6 7 # Populate passthru.tests 8 , tests ··· 71 }; 72 73 buildInputs = [ libsecret libXScrnSaver libxshmfence ] 74 - ++ lib.optionals (!stdenv.isDarwin) ([ at-spi2-atk ] ++ atomEnv.packages); 75 76 runtimeDependencies = lib.optionals stdenv.isLinux [ (lib.getLib systemd) fontconfig.lib libdbusmenu wayland ]; 77
··· 2 , unzip, libsecret, libXScrnSaver, libxshmfence, buildPackages 3 , atomEnv, at-spi2-atk, autoPatchelfHook 4 , systemd, fontconfig, libdbusmenu, glib, buildFHSEnv, wayland 5 + , libglvnd, libkrb5 6 7 # Populate passthru.tests 8 , tests ··· 71 }; 72 73 buildInputs = [ libsecret libXScrnSaver libxshmfence ] 74 + ++ lib.optionals (!stdenv.isDarwin) ([ at-spi2-atk libkrb5 ] ++ atomEnv.packages); 75 76 runtimeDependencies = lib.optionals stdenv.isLinux [ (lib.getLib systemd) fontconfig.lib libdbusmenu wayland ]; 77
+8 -8
pkgs/applications/editors/vscode/vscode.nix
··· 24 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 25 26 sha256 = { 27 - x86_64-linux = "05yl6v11ndayz081m3j6dhclj0hshsf0ism7z31hmq6qvfl1sw0k"; 28 - x86_64-darwin = "16x1ppfi3n9gnxg2la2pzj67mlj507879hpqinhpz57dvys421h8"; 29 - aarch64-linux = "0m5k9rm14isj9x1j3nw3zvcxxz523396id7yhi8bpncr4ac8a087"; 30 - aarch64-darwin = "1kbhf3v71qhw4ql6pp8x5m68lgycjzxzm17c9ri0zn0b86ffp8d3"; 31 - armv7l-linux = "07lp0schicpnzs52gfbi9y8zfkwxhh92zv29afzy6vxdlqvmrf21"; 32 }.${system} or throwSystem; 33 in 34 callPackage ./generic.nix rec { 35 # Please backport all compatible updates to the stable release. 36 # This is important for the extension ecosystem. 37 - version = "1.80.2"; 38 pname = "vscode"; 39 40 # This is used for VS Code - Remote SSH test 41 - rev = "2ccd690cbff1569e4a83d7c43d45101f817401dc"; 42 43 executableName = "code" + lib.optionalString isInsiders "-insiders"; 44 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 62 src = fetchurl { 63 name = "vscode-server-${rev}.tar.gz"; 64 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 65 - sha256 = "1425bngv0n2xpd7yp9xbmxv95adr9vv0vzy1wvqvgpd8p6h05r7n"; 66 }; 67 }; 68
··· 24 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 25 26 sha256 = { 27 + x86_64-linux = "0hc1pfrhmdydwgyz3mjp45nmzs101iffam7ciximqmnhf1s1x4qf"; 28 + x86_64-darwin = "1snrr4lsa5qdpdl80wx8ymxp8h1bhd5ablhcgkhzvmj5dh7jrywk"; 29 + aarch64-linux = "0pm5znbjm79ziwdx37cc75qnbf0jv3yrm2xg7cykavn43gz97abw"; 30 + aarch64-darwin = "0bq5hvgv228x7vby4475cc65g24kpv9kvj06p6c0y6a2a79j45by"; 31 + armv7l-linux = "11gxpqflakp4cwzkpqrwsd6m5fls1vnaigppc4bq9flfknwkjfrx"; 32 }.${system} or throwSystem; 33 in 34 callPackage ./generic.nix rec { 35 # Please backport all compatible updates to the stable release. 36 # This is important for the extension ecosystem. 37 + version = "1.81.0"; 38 pname = "vscode"; 39 40 # This is used for VS Code - Remote SSH test 41 + rev = "6445d93c81ebe42c4cbd7a60712e0b17d9463e97"; 42 43 executableName = "code" + lib.optionalString isInsiders "-insiders"; 44 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 62 src = fetchurl { 63 name = "vscode-server-${rev}.tar.gz"; 64 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 65 + sha256 = "07x9lmkyhra4hplsgdhh97dixsx92i7lab5z5ihs2wqvvzl69ah2"; 66 }; 67 }; 68
+3 -3
pkgs/applications/emulators/ryujinx/default.nix
··· 28 29 buildDotnetModule rec { 30 pname = "ryujinx"; 31 - version = "1.1.968"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml 32 33 src = fetchFromGitHub { 34 owner = "Ryujinx"; 35 repo = "Ryujinx"; 36 - rev = "487261592eb9e9c31cacd08860f8894027bb1a07"; 37 - sha256 = "002qgnh7xb9i9yqm4a3m9m7sbx1iz7ng8k5nnanlq897djs3hy0g"; 38 }; 39 40 dotnet-sdk = dotnetCorePackages.sdk_7_0;
··· 28 29 buildDotnetModule rec { 30 pname = "ryujinx"; 31 + version = "1.1.974"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml 32 33 src = fetchFromGitHub { 34 owner = "Ryujinx"; 35 repo = "Ryujinx"; 36 + rev = "5a0aa074b661753d8f0202a73d9f6f3ac6e2ab11"; 37 + sha256 = "0f1wivwf7hnsqi7sgqjrikxvakrk8dmywpmyd36a3s5lbk878wp3"; 38 }; 39 40 dotnet-sdk = dotnetCorePackages.sdk_7_0;
+6 -6
pkgs/applications/emulators/ryujinx/deps.nix
··· 20 (fetchNuGet { pname = "Avalonia.X11"; version = "0.10.21"; sha256 = "08vbdiv2k9vp8gp59rk0z63jyn8hlv8a4956jczy05ail5qfl94v"; }) 21 (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; sha256 = "1sldkj8lakggn4hnyabjj1fppqh50fkdrr1k99d4gswpbk5kv582"; }) 22 (fetchNuGet { pname = "Concentus"; version = "1.1.7"; sha256 = "0y5z444wrbhlmsqpy2sxmajl1fbf74843lvgj3y6vz260dn2q0l0"; }) 23 - (fetchNuGet { pname = "DiscordRichPresence"; version = "1.1.3.18"; sha256 = "0p4bhaggjjfd4gl06yiphqgncxgcq2bws4sjkrw0n2ldf3hgrps3"; }) 24 (fetchNuGet { pname = "DynamicData"; version = "7.14.2"; sha256 = "07k79w4702masq71rk865mi3h1kaxamyp7dgl08ny4n22gg8482k"; }) 25 (fetchNuGet { pname = "ExCSS"; version = "4.1.4"; sha256 = "1y50xp6rihkydbf5l73mr3qq2rm6rdfjrzdw9h1dw9my230q5lpd"; }) 26 (fetchNuGet { pname = "Fizzler"; version = "1.2.1"; sha256 = "1w5jb1d0figbv68dydbnlcsfmqlc3sv9z1zxp7d79dg2dkarc4qm"; }) ··· 40 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "2.9.6"; sha256 = "18mr1f0wpq0fir8vjnq0a8pz50zpnblr7sabff0yqx37c975934a"; }) 41 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.4"; sha256 = "0wd6v57p53ahz5z9zg4iyzmy3src7rlsncyqpcag02jjj1yx6g58"; }) 42 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "3.4.0"; sha256 = "12rn6gl4viycwk3pz5hp5df63g66zvba4hnkwr3f0876jj5ivmsw"; }) 43 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.5.0"; sha256 = "0hjzca7v3qq4wqzi9chgxzycbaysnjgj28ps20695x61sia6i3da"; }) 44 (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "3.4.0"; sha256 = "0rhylcwa95bxawcgixk64knv7p7xrykdjcabmx3gknk8hvj1ai9y"; }) 45 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.5.0"; sha256 = "1l6v0ii5lapmfnfpjwi3j5bwlx8v9nvyani5pwvqzdfqsd5m7mp5"; }) 46 (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp.Scripting"; version = "3.4.0"; sha256 = "1h2f0z9xnw987x8bydka1sd42ijqjx973md6v1gvpy1qc6ad244g"; }) 47 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Scripting.Common"; version = "3.4.0"; sha256 = "195gqnpwqkg2wlvk8x6yzm7byrxfq9bki20xmhf6lzfsdw3z4mf2"; }) 48 (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.6.3"; sha256 = "1xxzd2yxlbq2h4k6flp7lvffmmwrjlyha2z1yvrxxymiyyggk2zg"; }) ··· 164 (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; }) 165 (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.0.12"; sha256 = "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc"; }) 166 (fetchNuGet { pname = "System.Collections.Immutable"; version = "1.5.0"; sha256 = "1d5gjn5afnrf461jlxzawcvihz195gayqpcfbv6dd7pxa9ialn06"; }) 167 - (fetchNuGet { pname = "System.Collections.Immutable"; version = "6.0.0"; sha256 = "1js98kmjn47ivcvkjqdmyipzknb9xbndssczm8gq224pbaj1p88c"; }) 168 (fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "4.5.0"; sha256 = "1jj6f6g87k0iwsgmg3xmnn67a14mq88np0l1ys5zkxhkvbc8976p"; }) 169 (fetchNuGet { pname = "System.Console"; version = "4.0.0"; sha256 = "0ynxqbc3z1nwbrc11hkkpw9skw116z4y9wjzn7id49p9yi7mzmlf"; }) 170 (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.0.11"; sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; }) ··· 218 (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.0.1"; sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn"; }) 219 (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.3.0"; sha256 = "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq"; }) 220 (fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.6.0"; sha256 = "1wdbavrrkajy7qbdblpbpbalbdl48q3h34cchz24gvdgyrlf15r4"; }) 221 - (fetchNuGet { pname = "System.Reflection.Metadata"; version = "6.0.1"; sha256 = "0fjqifk4qz9lw5gcadpfalpplyr0z2b3p9x7h0ll481a9sqvppc9"; }) 222 (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.0.1"; sha256 = "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28"; }) 223 (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; }) 224 (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.1.0"; sha256 = "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7"; }) ··· 257 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; }) 258 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; }) 259 (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "4.5.1"; sha256 = "1z21qyfs6sg76rp68qdx0c9iy57naan89pg7p6i3qpj8kyzn921w"; }) 260 - (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "6.0.0"; sha256 = "0gm2kiz2ndm9xyzxgi0jhazgwslcs427waxgfa30m7yqll1kcrww"; }) 261 (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.0.11"; sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; }) 262 (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "4.7.2"; sha256 = "0ap286ykazrl42if59bxhzv81safdfrrmfqr3112siwyajx4wih9"; }) 263 (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "6.0.0"; sha256 = "06n9ql3fmhpjl32g3492sj181zjml5dlcc5l76xq2h38c4f87sai"; })
··· 20 (fetchNuGet { pname = "Avalonia.X11"; version = "0.10.21"; sha256 = "08vbdiv2k9vp8gp59rk0z63jyn8hlv8a4956jczy05ail5qfl94v"; }) 21 (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; sha256 = "1sldkj8lakggn4hnyabjj1fppqh50fkdrr1k99d4gswpbk5kv582"; }) 22 (fetchNuGet { pname = "Concentus"; version = "1.1.7"; sha256 = "0y5z444wrbhlmsqpy2sxmajl1fbf74843lvgj3y6vz260dn2q0l0"; }) 23 + (fetchNuGet { pname = "DiscordRichPresence"; version = "1.2.1.24"; sha256 = "0maw0yd6xgwy0cgk593z3zva0r5j267zpdmmpq8avj3zbna6n4x1"; }) 24 (fetchNuGet { pname = "DynamicData"; version = "7.14.2"; sha256 = "07k79w4702masq71rk865mi3h1kaxamyp7dgl08ny4n22gg8482k"; }) 25 (fetchNuGet { pname = "ExCSS"; version = "4.1.4"; sha256 = "1y50xp6rihkydbf5l73mr3qq2rm6rdfjrzdw9h1dw9my230q5lpd"; }) 26 (fetchNuGet { pname = "Fizzler"; version = "1.2.1"; sha256 = "1w5jb1d0figbv68dydbnlcsfmqlc3sv9z1zxp7d79dg2dkarc4qm"; }) ··· 40 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "2.9.6"; sha256 = "18mr1f0wpq0fir8vjnq0a8pz50zpnblr7sabff0yqx37c975934a"; }) 41 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.4"; sha256 = "0wd6v57p53ahz5z9zg4iyzmy3src7rlsncyqpcag02jjj1yx6g58"; }) 42 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "3.4.0"; sha256 = "12rn6gl4viycwk3pz5hp5df63g66zvba4hnkwr3f0876jj5ivmsw"; }) 43 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.6.0"; sha256 = "0qvkwkbqz4dhkxsisanax1lwm3nzyyb4kgb40qczxbl8g251cjp2"; }) 44 (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "3.4.0"; sha256 = "0rhylcwa95bxawcgixk64knv7p7xrykdjcabmx3gknk8hvj1ai9y"; }) 45 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.6.0"; sha256 = "1yfvwygx795c9lswpiv8q19zydifarzljdmvv67vjmi559cm8b1q"; }) 46 (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp.Scripting"; version = "3.4.0"; sha256 = "1h2f0z9xnw987x8bydka1sd42ijqjx973md6v1gvpy1qc6ad244g"; }) 47 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Scripting.Common"; version = "3.4.0"; sha256 = "195gqnpwqkg2wlvk8x6yzm7byrxfq9bki20xmhf6lzfsdw3z4mf2"; }) 48 (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.6.3"; sha256 = "1xxzd2yxlbq2h4k6flp7lvffmmwrjlyha2z1yvrxxymiyyggk2zg"; }) ··· 164 (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; }) 165 (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.0.12"; sha256 = "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc"; }) 166 (fetchNuGet { pname = "System.Collections.Immutable"; version = "1.5.0"; sha256 = "1d5gjn5afnrf461jlxzawcvihz195gayqpcfbv6dd7pxa9ialn06"; }) 167 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "7.0.0"; sha256 = "1n9122cy6v3qhsisc9lzwa1m1j62b8pi2678nsmnlyvfpk0zdagm"; }) 168 (fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "4.5.0"; sha256 = "1jj6f6g87k0iwsgmg3xmnn67a14mq88np0l1ys5zkxhkvbc8976p"; }) 169 (fetchNuGet { pname = "System.Console"; version = "4.0.0"; sha256 = "0ynxqbc3z1nwbrc11hkkpw9skw116z4y9wjzn7id49p9yi7mzmlf"; }) 170 (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.0.11"; sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; }) ··· 218 (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.0.1"; sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn"; }) 219 (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.3.0"; sha256 = "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq"; }) 220 (fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.6.0"; sha256 = "1wdbavrrkajy7qbdblpbpbalbdl48q3h34cchz24gvdgyrlf15r4"; }) 221 + (fetchNuGet { pname = "System.Reflection.Metadata"; version = "7.0.0"; sha256 = "1wilasn2qmj870h2bhw348lspamm7pbinpb4m89icg113510l00v"; }) 222 (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.0.1"; sha256 = "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28"; }) 223 (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; }) 224 (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.1.0"; sha256 = "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7"; }) ··· 257 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; }) 258 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; }) 259 (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "4.5.1"; sha256 = "1z21qyfs6sg76rp68qdx0c9iy57naan89pg7p6i3qpj8kyzn921w"; }) 260 + (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "7.0.0"; sha256 = "0sn6hxdjm7bw3xgsmg041ccchsa4sp02aa27cislw3x61dbr68kq"; }) 261 (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.0.11"; sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; }) 262 (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "4.7.2"; sha256 = "0ap286ykazrl42if59bxhzv81safdfrrmfqr3112siwyajx4wih9"; }) 263 (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "6.0.0"; sha256 = "06n9ql3fmhpjl32g3492sj181zjml5dlcc5l76xq2h38c4f87sai"; })
+2 -2
pkgs/applications/misc/tuba/default.nix
··· 26 27 stdenv.mkDerivation rec { 28 pname = "tuba"; 29 - version = "0.4.0"; 30 src = fetchFromGitHub { 31 owner = "GeopJr"; 32 repo = "Tuba"; 33 rev = "v${version}"; 34 - hash = "sha256-sLdkSIevz2spL+Q5sS+ugqEbqJTXrLxmszzijtKvY6k="; 35 }; 36 37 nativeBuildInputs = [
··· 26 27 stdenv.mkDerivation rec { 28 pname = "tuba"; 29 + version = "0.4.1"; 30 src = fetchFromGitHub { 31 owner = "GeopJr"; 32 repo = "Tuba"; 33 rev = "v${version}"; 34 + hash = "sha256-1XbgsdIcnlXJtNEzDgEfHVJHF9naz3HplCPc2cKFUWw="; 35 }; 36 37 nativeBuildInputs = [
+4 -4
pkgs/applications/networking/cluster/clusterctl/default.nix
··· 2 3 buildGoModule rec { 4 pname = "clusterctl"; 5 - version = "1.4.4"; 6 7 src = fetchFromGitHub { 8 owner = "kubernetes-sigs"; 9 repo = "cluster-api"; 10 rev = "v${version}"; 11 - hash = "sha256-ohk3CKcB6LD1gRKDDNYK+MbFxWa7QEiqmRYYpSkwj8E="; 12 }; 13 14 - vendorHash = "sha256-QzD0Stbr8QuQ8n9l9qv16KFqSFBsRbxETmQ8LHdk3nI="; 15 16 subPackages = [ "cmd/clusterctl" ]; 17 ··· 43 description = "Kubernetes cluster API tool"; 44 homepage = "https://cluster-api.sigs.k8s.io/"; 45 license = licenses.asl20; 46 - maintainers = with maintainers; [ zowoq qjoly ]; 47 }; 48 }
··· 2 3 buildGoModule rec { 4 pname = "clusterctl"; 5 + version = "1.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "kubernetes-sigs"; 9 repo = "cluster-api"; 10 rev = "v${version}"; 11 + hash = "sha256-rbKPI5hG7R6mRILuvY9BoRDvosw3txFs2q696abrpjY="; 12 }; 13 14 + vendorHash = "sha256-t494o9orCVva81v7t0HfKkL8H3cr26scyFSeYZQyqcM="; 15 16 subPackages = [ "cmd/clusterctl" ]; 17 ··· 43 description = "Kubernetes cluster API tool"; 44 homepage = "https://cluster-api.sigs.k8s.io/"; 45 license = licenses.asl20; 46 + maintainers = with maintainers; [ qjoly ]; 47 }; 48 }
+3 -3
pkgs/applications/networking/cluster/linkerd/edge.nix
··· 2 3 (callPackage ./generic.nix { }) { 4 channel = "edge"; 5 - version = "23.7.2"; 6 - sha256 = "0wc829dzk0in0srq0vbcagrd5ylz2d758032anzlzkf4m3lr9hdw"; 7 - vendorSha256 = "sha256-16j5B96UDZITY1LEWZKtfAnww7ZcUjKh/cARLaYy9wk="; 8 }
··· 2 3 (callPackage ./generic.nix { }) { 4 channel = "edge"; 5 + version = "23.8.1"; 6 + sha256 = "0ajcxfqbaimrj8ylbk3s2djv2jpczm4c6z39b4fdak68sylmvb9z"; 7 + vendorSha256 = "sha256-sj3KJLPO4pxnGov2Oiqj1FgAQ2atf3FJPINmeKjPUZQ="; 8 }
+3 -3
pkgs/applications/networking/gnmic/default.nix
··· 8 9 buildGoModule rec { 10 pname = "gnmic"; 11 - version = "0.31.3"; 12 13 src = fetchFromGitHub { 14 owner = "openconfig"; 15 repo = pname; 16 rev = "v${version}"; 17 - hash = "sha256-+TxOl+at/SQIC1x/LwCgk4JmvOPY2el7HE1reAkmVn8="; 18 }; 19 20 - vendorHash = "sha256-4cmFoDMgD9TKacZ2RD73kQKDrpN5xuSKZ4ikcWAd5Rw="; 21 22 ldflags = [ 23 "-s" "-w"
··· 8 9 buildGoModule rec { 10 pname = "gnmic"; 11 + version = "0.31.7"; 12 13 src = fetchFromGitHub { 14 owner = "openconfig"; 15 repo = pname; 16 rev = "v${version}"; 17 + hash = "sha256-bX8oZk0psPqoXFU8b2JQmfFaPz18yiuSVXDmhoOnpFg="; 18 }; 19 20 + vendorHash = "sha256-hIG3kG2e9Y2hnHJ+96cPLgnlp5ParsLgWQY0HZTDggY="; 21 22 ldflags = [ 23 "-s" "-w"
+3 -3
pkgs/applications/networking/kubo/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kubo"; 5 - version = "0.20.0"; # When updating, also check if the repo version changed and adjust repoVersion below 6 rev = "v${version}"; 7 8 - passthru.repoVersion = "13"; # Also update kubo-migrator when changing the repo version 9 10 # Kubo makes changes to it's source tarball that don't match the git source. 11 src = fetchurl { 12 url = "https://github.com/ipfs/kubo/releases/download/${rev}/kubo-source.tar.gz"; 13 - hash = "sha256-3Oj/x3EkceNO8/Ik7+U43wi1aL0lYJi1FA0AjtdJRDI="; 14 }; 15 16 # tarball contains multiple files/directories
··· 2 3 buildGoModule rec { 4 pname = "kubo"; 5 + version = "0.21.0"; # When updating, also check if the repo version changed and adjust repoVersion below 6 rev = "v${version}"; 7 8 + passthru.repoVersion = "14"; # Also update kubo-migrator when changing the repo version 9 10 # Kubo makes changes to it's source tarball that don't match the git source. 11 src = fetchurl { 12 url = "https://github.com/ipfs/kubo/releases/download/${rev}/kubo-source.tar.gz"; 13 + hash = "sha256-tS7hiv7KnALR+hCn/TPUwqp/xIOLnQ3ReSb1bNBnwUY="; 14 }; 15 16 # tarball contains multiple files/directories
+27 -11
pkgs/applications/science/biology/cmtk/default.nix
··· 1 - { lib, stdenv, fetchurl, cmake }: 2 3 - stdenv.mkDerivation rec { 4 pname = "cmtk"; 5 - version = "3.3.1"; 6 7 src = fetchurl { 8 name = "cmtk-source.tar.gz"; 9 - url = "https://www.nitrc.org/frs/download.php/8198/CMTK-${version}-Source.tar.gz//?i_agree=1&download_now=1"; 10 - sha256 = "1nmsga9m7vcc4y4a6zl53ra3mwlgjwdgsq1j291awkn7zr1az6qs"; 11 }; 12 13 nativeBuildInputs = [ cmake ]; 14 15 env.NIX_CFLAGS_COMPILE = toString [ 16 - "-std=c++11" 17 - (lib.optional stdenv.cc.isClang "-Wno-error=c++11-narrowing") 18 ]; 19 20 meta = with lib; { 21 - broken = stdenv.isDarwin; 22 - description = "Computational Morphometry Toolkit "; 23 longDescription = ''A software toolkit for computational morphometry of 24 biomedical images, CMTK comprises a set of command line tools and a 25 back-end general-purpose library for processing and I/O''; 26 maintainers = with maintainers; [ tbenst ]; 27 platforms = platforms.all; 28 - license = licenses.gpl3; 29 homepage = "https://www.nitrc.org/projects/cmtk/"; 30 }; 31 - }
··· 1 + { lib 2 + , stdenv 3 + , bzip2 4 + , cmake 5 + , fetchurl 6 + , fftw 7 + , llvmPackages 8 + , zlib 9 + }: 10 11 + stdenv.mkDerivation (finalAttrs: { 12 pname = "cmtk"; 13 + version = "3.3.2"; 14 15 src = fetchurl { 16 name = "cmtk-source.tar.gz"; 17 + url = "https://www.nitrc.org/frs/download.php/13188/CMTK-${finalAttrs.version}-Source.tar.gz//?i_agree=1&download_now=1"; 18 + hash = "sha256-iE164NCOSOypZLLZfZy9RTyrS+YnY9ECqfb4QhlsMS4="; 19 }; 20 21 nativeBuildInputs = [ cmake ]; 22 23 + buildInputs = [ 24 + bzip2 25 + fftw 26 + zlib 27 + ] ++ lib.optionals stdenv.cc.isClang [ 28 + llvmPackages.openmp 29 + ]; 30 + 31 env.NIX_CFLAGS_COMPILE = toString [ 32 + (lib.optionalString stdenv.cc.isGNU "-std=c++11") 33 + (lib.optionalString stdenv.cc.isClang "-Wno-error=c++11-narrowing") 34 + (lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) "-Dfinite=isfinite") 35 ]; 36 37 meta = with lib; { 38 + description = "Computational Morphometry Toolkit"; 39 longDescription = ''A software toolkit for computational morphometry of 40 biomedical images, CMTK comprises a set of command line tools and a 41 back-end general-purpose library for processing and I/O''; 42 maintainers = with maintainers; [ tbenst ]; 43 platforms = platforms.all; 44 + license = licenses.gpl3Plus; 45 homepage = "https://www.nitrc.org/projects/cmtk/"; 46 }; 47 + })
-81
pkgs/applications/science/machine-learning/streamlit/default.nix
··· 1 - { lib 2 - , altair 3 - , blinker 4 - , buildPythonApplication 5 - , cachetools 6 - , click 7 - , fetchPypi 8 - , gitpython 9 - , importlib-metadata 10 - , jinja2 11 - , pillow 12 - , protobuf3 13 - , pyarrow 14 - , pydeck 15 - , pympler 16 - , requests 17 - , rich 18 - , semver 19 - , setuptools 20 - , tenacity 21 - , toml 22 - , tornado 23 - , tzlocal 24 - , validators 25 - , watchdog 26 - }: 27 - 28 - buildPythonApplication rec { 29 - pname = "streamlit"; 30 - version = "1.24.0"; 31 - format = "setuptools"; 32 - 33 - src = fetchPypi { 34 - inherit pname version format; 35 - hash = "sha256-NSX6zpTHh5JzPFbWOja0iEUVDjume7UKGa20xZdagiU="; 36 - }; 37 - 38 - propagatedBuildInputs = [ 39 - altair 40 - blinker 41 - cachetools 42 - click 43 - gitpython 44 - importlib-metadata 45 - jinja2 46 - pillow 47 - protobuf3 48 - pyarrow 49 - pydeck 50 - pympler 51 - requests 52 - rich 53 - semver 54 - setuptools 55 - tenacity 56 - toml 57 - tornado 58 - tzlocal 59 - validators 60 - watchdog 61 - ]; 62 - 63 - # pypi package does not include the tests, but cannot be built with fetchFromGitHub 64 - doCheck = false; 65 - 66 - pythonImportsCheck = [ 67 - "streamlit" 68 - ]; 69 - 70 - postInstall = '' 71 - rm $out/bin/streamlit.cmd # remove windows helper 72 - ''; 73 - 74 - meta = with lib; { 75 - homepage = "https://streamlit.io/"; 76 - changelog = "https://github.com/streamlit/streamlit/releases/tag/${version}"; 77 - description = "The fastest way to build custom ML tools"; 78 - maintainers = with maintainers; [ yrashk ]; 79 - license = licenses.asl20; 80 - }; 81 - }
···
+17 -17
pkgs/applications/version-management/github-desktop/default.nix
··· 19 , openssl 20 }: 21 22 - stdenv.mkDerivation rec { 23 pname = "github-desktop"; 24 - version = "3.2.1"; 25 26 src = fetchurl { 27 - url = "https://github.com/shiftkey/desktop/releases/download/release-${version}-linux1/GitHubDesktop-linux-${version}-linux1.deb"; 28 - hash = "sha256-OdvebRvOTyadgNjzrv6CGDPkljfpo4RVvVAc+X9hjSo="; 29 }; 30 31 nativeBuildInputs = [ ··· 50 ]; 51 52 unpackPhase = '' 53 - mkdir -p $TMP/${pname} $out/{opt,bin} 54 - cp $src $TMP/${pname}.deb 55 - ar vx ${pname}.deb 56 - tar --no-overwrite-dir -xvf data.tar.xz -C $TMP/${pname}/ 57 ''; 58 59 installPhase = '' 60 - cp -R $TMP/${pname}/usr/share $out/ 61 - cp -R $TMP/${pname}/usr/lib/${pname}/* $out/opt/ 62 - ln -sf $out/opt/${pname} $out/bin/${pname} 63 ''; 64 65 preFixup = '' ··· 72 (lib.getLib systemd) 73 ]; 74 75 - meta = with lib; { 76 description = "GUI for managing Git and GitHub."; 77 homepage = "https://desktop.github.com/"; 78 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 79 - license = licenses.mit; 80 - maintainers = with maintainers; [ dan4ik605743 ]; 81 - platforms = platforms.linux; 82 }; 83 - }
··· 19 , openssl 20 }: 21 22 + stdenv.mkDerivation (finalAttrs: { 23 pname = "github-desktop"; 24 + version = "3.2.5"; 25 26 src = fetchurl { 27 + url = "https://github.com/shiftkey/desktop/releases/download/release-${finalAttrs.version}-linux1/GitHubDesktop-linux-${finalAttrs.version}-linux1.deb"; 28 + hash = "sha256-p+qr9/aEQcfkKArC3oTyIijHkaNzLum3xXeSnNexgbU="; 29 }; 30 31 nativeBuildInputs = [ ··· 50 ]; 51 52 unpackPhase = '' 53 + mkdir -p $TMP/${finalAttrs.pname} $out/{opt,bin} 54 + cp $src $TMP/${finalAttrs.pname}.deb 55 + ar vx ${finalAttrs.pname}.deb 56 + tar --no-overwrite-dir -xvf data.tar.xz -C $TMP/${finalAttrs.pname}/ 57 ''; 58 59 installPhase = '' 60 + cp -R $TMP/${finalAttrs.pname}/usr/share $out/ 61 + cp -R $TMP/${finalAttrs.pname}/usr/lib/${finalAttrs.pname}/* $out/opt/ 62 + ln -sf $out/opt/${finalAttrs.pname} $out/bin/${finalAttrs.pname} 63 ''; 64 65 preFixup = '' ··· 72 (lib.getLib systemd) 73 ]; 74 75 + meta = { 76 description = "GUI for managing Git and GitHub."; 77 homepage = "https://desktop.github.com/"; 78 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 79 + license = lib.licenses.mit; 80 + maintainers = with lib.maintainers; [ dan4ik605743 ]; 81 + platforms = lib.platforms.linux; 82 }; 83 + })
+2 -2
pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix
··· 16 17 stdenv.mkDerivation rec { 18 pname = "advanced-scene-switcher"; 19 - version = "1.22.1"; 20 21 src = fetchFromGitHub { 22 owner = "WarmUpTill"; 23 repo = "SceneSwitcher"; 24 rev = version; 25 - hash = "sha256-SV5hnTIRJ6ZruA5t/G6zRAC/+oalTABor3h66eF+KHM="; 26 }; 27 28 nativeBuildInputs = [ cmake ];
··· 16 17 stdenv.mkDerivation rec { 18 pname = "advanced-scene-switcher"; 19 + version = "1.23.0"; 20 21 src = fetchFromGitHub { 22 owner = "WarmUpTill"; 23 repo = "SceneSwitcher"; 24 rev = version; 25 + hash = "sha256-X1qeMNTC2Hsl3Yh3E7PYVWAMGjGylF/EBkgW4WrtH40="; 26 }; 27 28 nativeBuildInputs = [ cmake ];
+1 -1
pkgs/build-support/fetchrepoproject/default.nix
··· 60 ${optionalString (local_manifests != []) '' 61 mkdir .repo/local_manifests 62 for local_manifest in ${concatMapStringsSep " " toString local_manifests}; do 63 - cp $local_manifest .repo/local_manifests/$(stripHash $local_manifest; echo $strippedName) 64 done 65 ''} 66
··· 60 ${optionalString (local_manifests != []) '' 61 mkdir .repo/local_manifests 62 for local_manifest in ${concatMapStringsSep " " toString local_manifests}; do 63 + cp $local_manifest .repo/local_manifests/$(stripHash $local_manifest) 64 done 65 ''} 66
+2 -2
pkgs/data/fonts/noto-fonts/default.nix
··· 35 }: 36 stdenvNoCC.mkDerivation rec { 37 inherit pname; 38 - version = "23.7.1"; 39 40 src = fetchFromGitHub { 41 owner = "notofonts"; 42 repo = "notofonts.github.io"; 43 rev = "noto-monthly-release-${version}"; 44 - hash = "sha256-+P0mQ3PaGGPGK3SFPtCe7wrjMgOgZeRpkEQulLeu/zs="; 45 }; 46 47 _variants = map (variant: builtins.replaceStrings [ " " ] [ "" ] variant) variants;
··· 35 }: 36 stdenvNoCC.mkDerivation rec { 37 inherit pname; 38 + version = "23.8.1"; 39 40 src = fetchFromGitHub { 41 owner = "notofonts"; 42 repo = "notofonts.github.io"; 43 rev = "noto-monthly-release-${version}"; 44 + hash = "sha256-TYCJzioZcNFV8N5wLr7Fo69g/p5GQF/tbGgYoLUV7Us="; 45 }; 46 47 _variants = map (variant: builtins.replaceStrings [ " " ] [ "" ] variant) variants;
+2 -2
pkgs/development/compilers/assemblyscript/default.nix
··· 5 6 buildNpmPackage rec { 7 pname = "assemblyscript"; 8 - version = "0.27.6"; 9 10 src = fetchFromGitHub { 11 owner = "AssemblyScript"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-jN8P3EL3giDIZSExkjm5ZUwgkN3EIQhVpMqfx273yZU="; 15 }; 16 17 npmDepsHash = "sha256-9ILa1qY2GpP2RckcZYcCMmgCwdXIImOm+D8nldeoQL8=";
··· 5 6 buildNpmPackage rec { 7 pname = "assemblyscript"; 8 + version = "0.27.8"; 9 10 src = fetchFromGitHub { 11 owner = "AssemblyScript"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-EwpIUD9+IjJlWOnUEXgvx60i59ftQyHcPTQVWVoOGNQ="; 15 }; 16 17 npmDepsHash = "sha256-9ILa1qY2GpP2RckcZYcCMmgCwdXIImOm+D8nldeoQL8=";
+23 -19
pkgs/development/compilers/crystal/default.nix
··· 17 , libxml2 18 , libyaml 19 , libffi 20 - , llvmPackages 21 , makeWrapper 22 , openssl 23 , pcre2 ··· 53 "https://github.com/crystal-lang/crystal/releases/download/${version}/crystal-${version}-${toString rel}-${arch}.tar.gz"; 54 55 genericBinary = { version, sha256s, rel ? 1 }: 56 - stdenv.mkDerivation rec { 57 - pname = "crystal-binary"; 58 - inherit version; 59 60 - src = fetchurl { 61 - url = binaryUrl version rel; 62 - sha256 = sha256s.${stdenv.system}; 63 - }; 64 65 - buildCommand = '' 66 - mkdir -p $out 67 - tar --strip-components=1 -C $out -xf ${src} 68 - patchShebangs $out/bin/crystal 69 - ''; 70 71 - meta.platforms = lib.attrNames sha256s; 72 - }; 73 74 - generic = ( 75 { version 76 , sha256 77 , binary 78 , doCheck ? true 79 , extraBuildInputs ? [ ] 80 , buildFlags ? [ "all" "docs" "release=1"] ··· 244 license = licenses.asl20; 245 maintainers = with maintainers; [ david50407 manveru peterhoeg donovanglover ]; 246 }; 247 - }) 248 - ); 249 - 250 in 251 rec { 252 binaryCrystal_1_2 = genericBinary { ··· 263 version = "1.2.2"; 264 sha256 = "sha256-nyOXhsutVBRdtJlJHe2dALl//BUXD1JeeQPgHU4SwiU="; 265 binary = binaryCrystal_1_2; 266 extraBuildInputs = [ libatomic_ops ]; 267 }; 268 ··· 270 version = "1.7.3"; 271 sha256 = "sha256-ULhLGHRIZbsKhaMvNhc+W74BwNgfEjHcMnVNApWY+EE="; 272 binary = binaryCrystal_1_2; 273 }; 274 275 crystal_1_8 = generic { 276 version = "1.8.2"; 277 sha256 = "sha256-YAORdipzpC9CrFgZUFlFfjzlJQ6ZeA2ekVu8IfPOxR8="; 278 binary = binaryCrystal_1_2; 279 }; 280 281 crystal_1_9 = generic { 282 version = "1.9.2"; 283 sha256 = "sha256-M1oUFs7/8ljszga3StzLOLM1aA4fSfVPQlsbuDHGd84="; 284 binary = binaryCrystal_1_2; 285 }; 286 287 crystal = crystal_1_9;
··· 17 , libxml2 18 , libyaml 19 , libffi 20 + , llvmPackages_13 21 + , llvmPackages_15 22 , makeWrapper 23 , openssl 24 , pcre2 ··· 54 "https://github.com/crystal-lang/crystal/releases/download/${version}/crystal-${version}-${toString rel}-${arch}.tar.gz"; 55 56 genericBinary = { version, sha256s, rel ? 1 }: 57 + stdenv.mkDerivation rec { 58 + pname = "crystal-binary"; 59 + inherit version; 60 61 + src = fetchurl { 62 + url = binaryUrl version rel; 63 + sha256 = sha256s.${stdenv.system}; 64 + }; 65 66 + buildCommand = '' 67 + mkdir -p $out 68 + tar --strip-components=1 -C $out -xf ${src} 69 + patchShebangs $out/bin/crystal 70 + ''; 71 72 + meta.platforms = lib.attrNames sha256s; 73 + }; 74 75 + generic = 76 { version 77 , sha256 78 , binary 79 + , llvmPackages 80 , doCheck ? true 81 , extraBuildInputs ? [ ] 82 , buildFlags ? [ "all" "docs" "release=1"] ··· 246 license = licenses.asl20; 247 maintainers = with maintainers; [ david50407 manveru peterhoeg donovanglover ]; 248 }; 249 + }); 250 in 251 rec { 252 binaryCrystal_1_2 = genericBinary { ··· 263 version = "1.2.2"; 264 sha256 = "sha256-nyOXhsutVBRdtJlJHe2dALl//BUXD1JeeQPgHU4SwiU="; 265 binary = binaryCrystal_1_2; 266 + llvmPackages = llvmPackages_13; 267 extraBuildInputs = [ libatomic_ops ]; 268 }; 269 ··· 271 version = "1.7.3"; 272 sha256 = "sha256-ULhLGHRIZbsKhaMvNhc+W74BwNgfEjHcMnVNApWY+EE="; 273 binary = binaryCrystal_1_2; 274 + llvmPackages = llvmPackages_13; 275 }; 276 277 crystal_1_8 = generic { 278 version = "1.8.2"; 279 sha256 = "sha256-YAORdipzpC9CrFgZUFlFfjzlJQ6ZeA2ekVu8IfPOxR8="; 280 binary = binaryCrystal_1_2; 281 + llvmPackages = llvmPackages_15; 282 }; 283 284 crystal_1_9 = generic { 285 version = "1.9.2"; 286 sha256 = "sha256-M1oUFs7/8ljszga3StzLOLM1aA4fSfVPQlsbuDHGd84="; 287 binary = binaryCrystal_1_2; 288 + llvmPackages = llvmPackages_15; 289 }; 290 291 crystal = crystal_1_9;
+4 -11
pkgs/development/compilers/edk2/default.nix
··· 5 , libuuid 6 , python3 7 , bc 8 - , llvmPackages_9 9 , lib 10 , buildPackages 11 }: ··· 24 else 25 throw "Unsupported architecture"; 26 27 - buildStdenv = if stdenv.isDarwin then 28 - llvmPackages_9.stdenv 29 - else 30 - stdenv; 31 - 32 buildType = if stdenv.isDarwin then 33 "CLANGPDB" 34 else 35 "GCC5"; 36 37 - edk2 = buildStdenv.mkDerivation { 38 pname = "edk2"; 39 version = "202305"; 40 ··· 42 # pass targetPrefix as an env var 43 (fetchpatch { 44 url = "https://src.fedoraproject.org/rpms/edk2/raw/08f2354cd280b4ce5a7888aa85cf520e042955c3/f/0021-Tweak-the-tools_def-to-support-cross-compiling.patch"; 45 - sha256 = "sha256-E1/fiFNVx0aB1kOej2DJ2DlBIs9tAAcxoedym2Zhjxw="; 46 }) 47 ]; 48 ··· 62 # trick taken from https://src.fedoraproject.org/rpms/edk2/blob/08f2354cd280b4ce5a7888aa85cf520e042955c3/f/edk2.spec#_319 63 ${"GCC5_${targetArch}_PREFIX"}=stdenv.cc.targetPrefix; 64 65 - makeFlags = [ "-C BaseTools" ] 66 - ++ lib.optionals (stdenv.cc.isClang) [ "CXX=llvm BUILD_AR=ar BUILD_CC=clang BUILD_CXX=clang++ BUILD_AS=clang BUILD_LD=ld" ]; 67 68 env.NIX_CFLAGS_COMPILE = "-Wno-return-type" + lib.optionalString (stdenv.cc.isGNU) " -Wno-error=stringop-truncation"; 69 ··· 89 }; 90 91 passthru = { 92 - mkDerivation = projectDscPath: attrsOrFun: buildStdenv.mkDerivation (finalAttrs: 93 let 94 attrs = lib.toFunction attrsOrFun finalAttrs; 95 in
··· 5 , libuuid 6 , python3 7 , bc 8 , lib 9 , buildPackages 10 }: ··· 23 else 24 throw "Unsupported architecture"; 25 26 buildType = if stdenv.isDarwin then 27 "CLANGPDB" 28 else 29 "GCC5"; 30 31 + edk2 = stdenv.mkDerivation { 32 pname = "edk2"; 33 version = "202305"; 34 ··· 36 # pass targetPrefix as an env var 37 (fetchpatch { 38 url = "https://src.fedoraproject.org/rpms/edk2/raw/08f2354cd280b4ce5a7888aa85cf520e042955c3/f/0021-Tweak-the-tools_def-to-support-cross-compiling.patch"; 39 + hash = "sha256-E1/fiFNVx0aB1kOej2DJ2DlBIs9tAAcxoedym2Zhjxw="; 40 }) 41 ]; 42 ··· 56 # trick taken from https://src.fedoraproject.org/rpms/edk2/blob/08f2354cd280b4ce5a7888aa85cf520e042955c3/f/edk2.spec#_319 57 ${"GCC5_${targetArch}_PREFIX"}=stdenv.cc.targetPrefix; 58 59 + makeFlags = [ "-C BaseTools" ]; 60 61 env.NIX_CFLAGS_COMPILE = "-Wno-return-type" + lib.optionalString (stdenv.cc.isGNU) " -Wno-error=stringop-truncation"; 62 ··· 82 }; 83 84 passthru = { 85 + mkDerivation = projectDscPath: attrsOrFun: stdenv.mkDerivation (finalAttrs: 86 let 87 attrs = lib.toFunction attrsOrFun finalAttrs; 88 in
+8 -2
pkgs/development/guile-modules/guile-fibers/default.nix
··· 19 hash = "sha256-jJKA5JEHsmqQ/IKb1aNmOtoVaGKNjcgTKyo5VCiJbXM="; 20 }; 21 22 nativeBuildInputs = [ 23 autoreconfHook 24 pkg-config 25 ]; 26 buildInputs = [ 27 guile 28 libevent 29 - texinfo 30 ]; 31 32 - autoreconfPhase = "./autogen.sh"; 33 34 meta = with lib; { 35 homepage = "https://github.com/wingo/fibers";
··· 19 hash = "sha256-jJKA5JEHsmqQ/IKb1aNmOtoVaGKNjcgTKyo5VCiJbXM="; 20 }; 21 22 + strictDeps = true; 23 + 24 nativeBuildInputs = [ 25 autoreconfHook 26 + guile 27 pkg-config 28 + texinfo # for makeinfo 29 ]; 30 + 31 buildInputs = [ 32 guile 33 libevent 34 ]; 35 36 + makeFlags = [ 37 + "GUILE_AUTO_COMPILE=0" 38 + ]; 39 40 meta = with lib; { 41 homepage = "https://github.com/wingo/fibers";
+13 -5
pkgs/development/libraries/LASzip/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake }: 2 3 - stdenv.mkDerivation rec { 4 version = "3.4.3"; 5 pname = "LASzip"; 6 7 src = fetchFromGitHub { 8 owner = "LASzip"; 9 repo = "LASzip"; 10 - rev = version; 11 - sha256 = "09lcsgxwv0jq50fhsgfhx0npbf1zcwn3hbnq6q78fshqksbxmz7m"; 12 }; 13 14 nativeBuildInputs = [ 15 cmake 16 ]; 17 18 meta = { 19 description = "Turn quickly bulky LAS files into compact LAZ files without information loss"; 20 homepage = "https://laszip.org"; 21 license = lib.licenses.lgpl2; 22 maintainers = [ lib.maintainers.michelk ]; 23 platforms = lib.platforms.unix; 24 }; 25 - }
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , fixDarwinDylibNames 6 + }: 7 8 + stdenv.mkDerivation (finalAttrs: { 9 version = "3.4.3"; 10 pname = "LASzip"; 11 12 src = fetchFromGitHub { 13 owner = "LASzip"; 14 repo = "LASzip"; 15 + rev = finalAttrs.version; 16 + hash = "sha256-9fzal54YaocONtguOCxnP7h1LejQPQ0dKFiCzfvTjCY="; 17 }; 18 19 nativeBuildInputs = [ 20 cmake 21 + ] ++ lib.optionals stdenv.isDarwin [ 22 + fixDarwinDylibNames 23 ]; 24 25 meta = { 26 description = "Turn quickly bulky LAS files into compact LAZ files without information loss"; 27 homepage = "https://laszip.org"; 28 + changelog = "https://github.com/LASzip/LASzip/releases/tag/${finalAttrs.src.rev}"; 29 license = lib.licenses.lgpl2; 30 maintainers = [ lib.maintainers.michelk ]; 31 platforms = lib.platforms.unix; 32 }; 33 + })
+12
pkgs/development/libraries/gstreamer/good/default.nix
··· 1 { lib, stdenv 2 , fetchurl 3 , meson 4 , nasm 5 , ninja ··· 59 url = "https://gstreamer.freedesktop.org/src/${pname}/${pname}-${version}.tar.xz"; 60 hash = "sha256-tnsxMTpUxpKbgpadQdPP3y9Y21c/tfSR5rul2ErqB3g="; 61 }; 62 63 strictDeps = true; 64
··· 1 { lib, stdenv 2 , fetchurl 3 + , fetchpatch 4 , meson 5 , nasm 6 , ninja ··· 60 url = "https://gstreamer.freedesktop.org/src/${pname}/${pname}-${version}.tar.xz"; 61 hash = "sha256-tnsxMTpUxpKbgpadQdPP3y9Y21c/tfSR5rul2ErqB3g="; 62 }; 63 + 64 + # TODO: Patch is conditional to spare rebuilds during the current staging-next cycle and should be removed during the next bump 65 + patches = lib.optionals qt5Support [ 66 + # Needed until https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5083 is merged and released 67 + (fetchpatch { 68 + name = "gst-plugins-good-fix-qt5-without-viv-fb.patch"; 69 + url = "https://gitlab.freedesktop.org/gstreamer/gstreamer/-/commit/03d8ef0b7c6e70eb936de0514831c1aafc763dcf.diff"; 70 + hash = "sha256-17XU/W/TMPg5669O1EBXByAN/VwFu/0idTg5ze3M/D4="; 71 + stripLen = 2; 72 + }) 73 + ]; 74 75 strictDeps = true; 76
+2 -2
pkgs/development/libraries/liblinear/default.nix
··· 4 soVersion = "5"; 5 in stdenv.mkDerivation rec { 6 pname = "liblinear"; 7 - version = "2.46"; 8 9 src = fetchFromGitHub { 10 owner = "cjlin1"; 11 repo = "liblinear"; 12 rev = "v${builtins.replaceStrings ["."] [""] version}"; 13 - sha256 = "sha256-mKd6idfr6mIIDEie8DCS+drtfpgKoS/5UXI0JenTxlA="; 14 }; 15 16 makeFlags = [ "AR=${stdenv.cc.targetPrefix}ar" "RANLIB=${stdenv.cc.targetPrefix}ranlib" ];
··· 4 soVersion = "5"; 5 in stdenv.mkDerivation rec { 6 pname = "liblinear"; 7 + version = "2.47"; 8 9 src = fetchFromGitHub { 10 owner = "cjlin1"; 11 repo = "liblinear"; 12 rev = "v${builtins.replaceStrings ["."] [""] version}"; 13 + sha256 = "sha256-so7uCc/52NdN0V2Ska8EUdw/wSegaudX5AF+c0xe5jk="; 14 }; 15 16 makeFlags = [ "AR=${stdenv.cc.targetPrefix}ar" "RANLIB=${stdenv.cc.targetPrefix}ranlib" ];
+2 -2
pkgs/development/libraries/mbedtls/2.nix
··· 1 { callPackage }: 2 3 callPackage ./generic.nix { 4 - version = "2.28.3"; 5 - hash = "sha256-w5bJErCNRZLE8rHcuZlK3bOqel97gPPMKH2cPGUR6Zw="; 6 }
··· 1 { callPackage }: 2 3 callPackage ./generic.nix { 4 + version = "2.28.4"; 5 + hash = "sha256-88Lnj9NgS5PWg2hydvb9cwi6s6BG3UMvkUH2Ny1jmtE="; 6 }
+2 -2
pkgs/development/libraries/mbedtls/3.nix
··· 1 { callPackage }: 2 3 callPackage ./generic.nix { 4 - version = "3.4.0"; 5 - hash = "sha256-1YA4hp/VEjph5k0qJqhhH4nBbTP3Qu2pl7WpuvPkVfg="; 6 }
··· 1 { callPackage }: 2 3 callPackage ./generic.nix { 4 + version = "3.4.1"; 5 + hash = "sha256-NIjyRcVbg6lT6+RlTz5Jt6V9T85mvta5grOSLIAK9Ts="; 6 }
+6
pkgs/development/libraries/mbedtls/generic.nix
··· 42 "-DGEN_FILES=off" 43 ]; 44 45 meta = with lib; { 46 homepage = "https://www.trustedfirmware.org/projects/mbed-tls/"; 47 changelog = "https://github.com/Mbed-TLS/mbedtls/blob/${pname}-${version}/ChangeLog";
··· 42 "-DGEN_FILES=off" 43 ]; 44 45 + doCheck = true; 46 + 47 + # Parallel checking causes test failures 48 + # https://github.com/Mbed-TLS/mbedtls/issues/4980 49 + enableParallelChecking = false; 50 + 51 meta = with lib; { 52 homepage = "https://www.trustedfirmware.org/projects/mbed-tls/"; 53 changelog = "https://github.com/Mbed-TLS/mbedtls/blob/${pname}-${version}/ChangeLog";
+6 -4
pkgs/development/python-modules/cohere/default.nix
··· 3 , fetchPypi 4 , poetry-core 5 , pythonOlder 6 - , requests 7 , aiohttp 8 , backoff 9 }: 10 11 buildPythonPackage rec { 12 pname = "cohere"; 13 - version = "4.9.0"; 14 format = "pyproject"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - hash = "sha256-4d89x+Pg5HZSUyxryH6OuMMGiMfeHXQX5Wy0XS++obY="; 21 }; 22 23 nativeBuildInputs = [ ··· 25 ]; 26 27 propagatedBuildInputs = [ 28 - requests 29 aiohttp 30 backoff 31 ]; 32 33 # tests require CO_API_KEY
··· 3 , fetchPypi 4 , poetry-core 5 , pythonOlder 6 , aiohttp 7 , backoff 8 + , importlib-metadata 9 + , requests 10 }: 11 12 buildPythonPackage rec { 13 pname = "cohere"; 14 + version = "4.16.0"; 15 format = "pyproject"; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + hash = "sha256-i6kbjugulAcmmInFb+rH4WB50dM7SDO1HNW/JgD4OTQ="; 22 }; 23 24 nativeBuildInputs = [ ··· 26 ]; 27 28 propagatedBuildInputs = [ 29 aiohttp 30 backoff 31 + importlib-metadata 32 + requests 33 ]; 34 35 # tests require CO_API_KEY
+43
pkgs/development/python-modules/getjump/default.nix
···
··· 1 + { lib 2 + , beautifulsoup4 3 + , buildPythonPackage 4 + , fetchPypi 5 + , pillow 6 + , poetry-core 7 + , requests 8 + , rich 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "getjump"; 13 + version = "2.4.0"; 14 + format = "pyproject"; 15 + 16 + src = fetchPypi { 17 + inherit pname version; 18 + hash = "sha256-gu6h9Yb0xdfvdmoeZGQPFCJhBJxuQ4iWlQquig1ljnY="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + poetry-core 23 + ]; 24 + 25 + propagatedBuildInputs = [ 26 + beautifulsoup4 27 + pillow 28 + requests 29 + rich 30 + ]; 31 + 32 + pythonImportsCheck = [ 33 + "getjump" 34 + ]; 35 + 36 + meta = with lib; { 37 + description = "Get and save images from jump web viewer"; 38 + homepage = "https://github.com/eggplants/getjump"; 39 + license = licenses.mit; 40 + maintainers = [ maintainers.marsam ]; 41 + mainProgram = "jget"; 42 + }; 43 + }
+2 -2
pkgs/development/python-modules/langchain/default.nix
··· 80 81 buildPythonPackage rec { 82 pname = "langchain"; 83 - version = "0.0.240"; 84 format = "pyproject"; 85 86 disabled = pythonOlder "3.8"; ··· 89 owner = "hwchase17"; 90 repo = "langchain"; 91 rev = "refs/tags/v${version}"; 92 - hash = "sha256-7UwAdOzEgu3K/Gfq8D/GHNGxD6KhSx0xGMxtmpdnYxQ="; 93 }; 94 95 sourceRoot = "source/libs/langchain";
··· 80 81 buildPythonPackage rec { 82 pname = "langchain"; 83 + version = "0.0.247"; 84 format = "pyproject"; 85 86 disabled = pythonOlder "3.8"; ··· 89 owner = "hwchase17"; 90 repo = "langchain"; 91 rev = "refs/tags/v${version}"; 92 + hash = "sha256-Eq9jXfVJuoiNWkJanol/tqQU+kOrftMii90743DeI3Y="; 93 }; 94 95 sourceRoot = "source/libs/langchain";
+10 -5
pkgs/development/python-modules/laspy/default.nix
··· 3 , fetchPypi 4 , numpy 5 , laszip 6 , pytestCheckHook 7 , pythonOlder 8 }: 9 10 buildPythonPackage rec { 11 pname = "laspy"; 12 - version = "2.4.1"; 13 - format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - hash = "sha256-E8rsxzJcsiQsslOUmE0hs7X3lsiLy0S8LtLTzxuXKsQ="; 20 }; 21 22 propagatedBuildInputs = [ 23 numpy 24 laszip 25 ]; 26 27 - checkInputs = [ 28 pytestCheckHook 29 ]; 30 ··· 36 meta = with lib; { 37 description = "Interface for reading/modifying/creating .LAS LIDAR files"; 38 homepage = "https://github.com/laspy/laspy"; 39 - changelog = "https://github.com/laspy/laspy/blob/2.4.1/CHANGELOG.md"; 40 license = licenses.bsd2; 41 maintainers = with maintainers; [ matthewcroughan ]; 42 };
··· 3 , fetchPypi 4 , numpy 5 , laszip 6 + , setuptools 7 , pytestCheckHook 8 , pythonOlder 9 }: 10 11 buildPythonPackage rec { 12 pname = "laspy"; 13 + version = "2.5.1"; 14 + format = "pyproject"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + hash = "sha256-uqPJxswVVjbxYRSREfnPwkPb0U9synKclLNWsxxmjy4="; 21 }; 22 23 + nativeBuildInputs = [ 24 + setuptools 25 + ]; 26 + 27 propagatedBuildInputs = [ 28 numpy 29 laszip 30 ]; 31 32 + nativeCheckInputs = [ 33 pytestCheckHook 34 ]; 35 ··· 41 meta = with lib; { 42 description = "Interface for reading/modifying/creating .LAS LIDAR files"; 43 homepage = "https://github.com/laspy/laspy"; 44 + changelog = "https://github.com/laspy/laspy/blob/${version}/CHANGELOG.md"; 45 license = licenses.bsd2; 46 maintainers = with maintainers; [ matthewcroughan ]; 47 };
+13 -16
pkgs/development/python-modules/laszip/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , scikit-build-core 5 - , distlib 6 - , pytestCheckHook 7 - , pyproject-metadata 8 - , pathspec 9 , pybind11 10 , cmake 11 , LASzip 12 }: 13 14 buildPythonPackage rec { 15 pname = "laszip-python"; 16 - version = "0.2.1"; 17 18 format = "pyproject"; 19 20 src = fetchFromGitHub { 21 owner = "tmontaigu"; 22 repo = pname; 23 rev = version; 24 - sha256 = "sha256-ujKoUm2Btu25T7ZrSGqjRc3NR1qqsQU8OwHQDSx8grY="; 25 }; 26 27 nativeBuildInputs = [ 28 scikit-build-core 29 scikit-build-core.optional-dependencies.pyproject 30 - cmake 31 ]; 32 33 buildInputs = [ 34 - pybind11 35 LASzip 36 ]; 37 38 - checkInputs = [ 39 - pytestCheckHook 40 - ]; 41 - 42 - preBuild = '' 43 - cd .. 44 - ''; 45 - 46 # There are no tests 47 doCheck = false; 48 ··· 51 meta = with lib; { 52 description = "Unofficial bindings between Python and LASzip made using pybind11"; 53 homepage = "https://github.com/tmontaigu/laszip-python"; 54 license = licenses.mit; 55 maintainers = with maintainers; [ matthewcroughan ]; 56 };
··· 1 { lib 2 + , stdenv 3 , buildPythonPackage 4 , fetchFromGitHub 5 , scikit-build-core 6 , pybind11 7 , cmake 8 , LASzip 9 + , pythonOlder 10 }: 11 12 buildPythonPackage rec { 13 pname = "laszip-python"; 14 + version = "0.2.3"; 15 16 format = "pyproject"; 17 18 + disabled = pythonOlder "3.7"; 19 + 20 src = fetchFromGitHub { 21 owner = "tmontaigu"; 22 repo = pname; 23 rev = version; 24 + hash = "sha256-MiPzL9TDCf1xnCv7apwdfcpkFnBRi4PO/atTQxqL8cw="; 25 }; 26 27 + env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isGNU "-std=c++17"; 28 + 29 nativeBuildInputs = [ 30 + cmake 31 + pybind11 32 scikit-build-core 33 scikit-build-core.optional-dependencies.pyproject 34 ]; 35 + 36 + dontUseCmakeConfigure = true; 37 38 buildInputs = [ 39 LASzip 40 ]; 41 42 # There are no tests 43 doCheck = false; 44 ··· 47 meta = with lib; { 48 description = "Unofficial bindings between Python and LASzip made using pybind11"; 49 homepage = "https://github.com/tmontaigu/laszip-python"; 50 + changelog = "https://github.com/tmontaigu/laszip-python/blob/${src.rev}/Changelog.md"; 51 license = licenses.mit; 52 maintainers = with maintainers; [ matthewcroughan ]; 53 };
+8 -1
pkgs/development/python-modules/material-color-utilities/default.nix
··· 1 - { stdenv, lib, buildPythonPackage, fetchPypi, pillow, regex }: 2 3 buildPythonPackage rec { 4 pname = "material-color-utilities-python"; ··· 8 inherit pname version; 9 sha256 = "sha256-PG8C585wWViFRHve83z3b9NijHyV+iGY2BdMJpyVH64="; 10 }; 11 12 propagatedBuildInputs = [ 13 pillow
··· 1 + { stdenv, lib, buildPythonPackage, fetchPypi, pythonRelaxDepsHook, pillow, regex }: 2 3 buildPythonPackage rec { 4 pname = "material-color-utilities-python"; ··· 8 inherit pname version; 9 sha256 = "sha256-PG8C585wWViFRHve83z3b9NijHyV+iGY2BdMJpyVH64="; 10 }; 11 + 12 + nativeBuildInputs = [ 13 + pythonRelaxDepsHook 14 + ]; 15 + pythonRelaxDeps = [ 16 + "Pillow" 17 + ]; 18 19 propagatedBuildInputs = [ 20 pillow
+13 -4
pkgs/development/python-modules/mpv/default.nix
··· 1 - { lib, stdenv, buildPythonPackage, fetchFromGitHub, python, isPy27 2 , mpv 3 }: 4 5 buildPythonPackage rec { 6 pname = "mpv"; 7 - version = "1.0.1"; 8 - disabled = isPy27; 9 10 src = fetchFromGitHub { 11 owner = "jaseg"; 12 repo = "python-mpv"; 13 rev = "v${version}"; 14 - hash = "sha256-UCJ1PknnWQiFciTEMxTUqDzz0Z8HEWycLuQqYeyQhoM="; 15 }; 16 17 buildInputs = [ mpv ]; 18 ··· 30 description = "A python interface to the mpv media player"; 31 homepage = "https://github.com/jaseg/python-mpv"; 32 license = licenses.agpl3Plus; 33 }; 34 }
··· 1 + { lib 2 + , stdenv 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 , mpv 6 + , setuptools 7 }: 8 9 buildPythonPackage rec { 10 pname = "mpv"; 11 + version = "1.0.4"; 12 + format = "pyproject"; 13 14 src = fetchFromGitHub { 15 owner = "jaseg"; 16 repo = "python-mpv"; 17 rev = "v${version}"; 18 + hash = "sha256-qP5Biw4sTLioAhmMZX+Pemue2PWc3N7afAe38dwJv3U="; 19 }; 20 + 21 + nativeBuildInputs = [ 22 + setuptools 23 + ]; 24 25 buildInputs = [ mpv ]; 26 ··· 38 description = "A python interface to the mpv media player"; 39 homepage = "https://github.com/jaseg/python-mpv"; 40 license = licenses.agpl3Plus; 41 + maintainers = with maintainers; [ onny ]; 42 }; 43 }
+71
pkgs/development/python-modules/pyradiomics/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , pytestCheckHook 6 + , numpy 7 + , pykwalify 8 + , pywavelets 9 + , setuptools 10 + , simpleitk 11 + , six 12 + , versioneer 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "pyradiomics"; 17 + version = "3.1.0"; 18 + format = "pyproject"; 19 + 20 + disabled = pythonOlder "3.6"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "AIM-Harvard"; 24 + repo = "pyradiomics"; 25 + rev = "refs/tags/v${version}"; 26 + hash = "sha256-/qFNN63Bbq4DUZDPmwUGj1z5pY3ujsbqFJpVXbO+b8E="; 27 + name = "pyradiomics"; 28 + }; 29 + 30 + nativeBuildInputs = [ setuptools versioneer ]; 31 + 32 + propagatedBuildInputs = [ 33 + numpy 34 + pykwalify 35 + pywavelets 36 + simpleitk 37 + six 38 + ]; 39 + 40 + nativeCheckInputs = [ pytestCheckHook ]; 41 + preCheck = '' 42 + rm -rf radiomics 43 + ''; 44 + # tries to access network at collection time: 45 + disabledTestPaths = [ "tests/test_wavelet.py" ]; 46 + # various urllib download errors and (probably related) missing feature errors: 47 + disabledTests = [ 48 + "brain1_shape2D-original_shape2D" 49 + "brain2_shape2D-original_shape2D" 50 + "breast1_shape2D-original_shape2D" 51 + "lung1_shape2D-original_shape2D" 52 + "lung2_shape2D-original_shape2D" 53 + ]; 54 + # note the above elements of disabledTests are patterns, not exact tests, 55 + # so simply setting `disabledTests` does not suffice: 56 + pytestFlagsArray = [ 57 + "-k '${toString (lib.intersperse "and" (lib.forEach disabledTests (t: "not ${t}")))}'" 58 + ]; 59 + 60 + pythonImportsCheck = [ 61 + "radiomics" 62 + ]; 63 + 64 + meta = with lib; { 65 + homepage = "https://pyradiomics.readthedocs.io"; 66 + description = "Extraction of Radiomics features from 2D and 3D images and binary masks"; 67 + changelog = "https://github.com/AIM-Harvard/pyradiomics/releases/tag/v${version}"; 68 + license = licenses.bsd3; 69 + maintainers = with maintainers; [ bcdarwin ]; 70 + }; 71 + }
+9 -5
pkgs/development/python-modules/snowflake-connector-python/default.nix
··· 1 { lib 2 , asn1crypto 3 , buildPythonPackage 4 , certifi 5 , cffi 6 , charset-normalizer ··· 31 hash = "sha256-F0EbgRSS/kYKUDPhf6euM0eLqIqVjQsHC6C9ZZSRCIE="; 32 }; 33 34 - postPatch = '' 35 - substituteInPlace setup.cfg \ 36 - --replace "charset_normalizer>=2,<3" "charset_normalizer" \ 37 - --replace "pyOpenSSL>=16.2.0,<23.0.0" "pyOpenSSL" 38 - ''; 39 40 propagatedBuildInputs = [ 41 asn1crypto
··· 1 { lib 2 , asn1crypto 3 , buildPythonPackage 4 + , pythonRelaxDepsHook 5 , certifi 6 , cffi 7 , charset-normalizer ··· 32 hash = "sha256-F0EbgRSS/kYKUDPhf6euM0eLqIqVjQsHC6C9ZZSRCIE="; 33 }; 34 35 + nativeBuildInputs = [ 36 + pythonRelaxDepsHook 37 + ]; 38 + pythonRelaxDeps = [ 39 + "pyOpenSSL" 40 + "charset-normalizer" 41 + "cryptography" 42 + ]; 43 44 propagatedBuildInputs = [ 45 asn1crypto
+88
pkgs/development/python-modules/streamlit/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , altair 4 + , blinker 5 + , buildPythonPackage 6 + , cachetools 7 + , click 8 + , fetchPypi 9 + , gitpython 10 + , importlib-metadata 11 + , numpy 12 + , packaging 13 + , pandas 14 + , pillow 15 + , protobuf3 16 + , pyarrow 17 + , pydeck 18 + , pympler 19 + , python-dateutil 20 + , pythonOlder 21 + , requests 22 + , rich 23 + , tenacity 24 + , toml 25 + , typing-extensions 26 + , tzlocal 27 + , validators 28 + , watchdog 29 + }: 30 + 31 + buildPythonPackage rec { 32 + pname = "streamlit"; 33 + version = "1.24.1"; 34 + format = "setuptools"; 35 + 36 + disabled = pythonOlder "3.8"; 37 + 38 + src = fetchPypi { 39 + inherit pname version format; 40 + hash = "sha256-/V8LZHmOlwY2RAj7WJt3WVMUpjFdE7LXULljx66X82I="; 41 + }; 42 + 43 + propagatedBuildInputs = [ 44 + altair 45 + blinker 46 + cachetools 47 + click 48 + gitpython 49 + importlib-metadata 50 + numpy 51 + packaging 52 + pandas 53 + pillow 54 + protobuf3 55 + pyarrow 56 + pydeck 57 + pympler 58 + python-dateutil 59 + requests 60 + rich 61 + tenacity 62 + toml 63 + typing-extensions 64 + tzlocal 65 + validators 66 + ] ++ lib.optionals (!stdenv.isDarwin) [ 67 + watchdog 68 + ]; 69 + 70 + # pypi package does not include the tests, but cannot be built with fetchFromGitHub 71 + doCheck = false; 72 + 73 + pythonImportsCheck = [ 74 + "streamlit" 75 + ]; 76 + 77 + postInstall = '' 78 + rm $out/bin/streamlit.cmd # remove windows helper 79 + ''; 80 + 81 + meta = with lib; { 82 + homepage = "https://streamlit.io/"; 83 + changelog = "https://github.com/streamlit/streamlit/releases/tag/${version}"; 84 + description = "The fastest way to build custom ML tools"; 85 + maintainers = with maintainers; [ natsukium yrashk ]; 86 + license = licenses.asl20; 87 + }; 88 + }
+4 -4
pkgs/development/tools/api-linter/default.nix
··· 5 6 buildGoModule rec { 7 pname = "api-linter"; 8 - version = "1.55.0"; 9 10 src = fetchFromGitHub { 11 owner = "googleapis"; 12 repo = "api-linter"; 13 rev = "v${version}"; 14 - hash = "sha256-aywqb//fhygphjX3suVfqNIG0saPPnhgLPA/DBpSVQY="; 15 }; 16 17 - vendorHash = "sha256-oK1d9aQ43Zj+Xt4tMhn+Lz1Q09psqqdTUqbgEdkuBvg="; 18 19 subPackages = [ "cmd/api-linter" ]; 20 ··· 23 "-w" 24 ]; 25 26 - # reference: https://github.com/googleapis/api-linter/blob/v1.55.0/.github/workflows/release.yaml#L76 27 preBuild = '' 28 cat > cmd/api-linter/version.go <<EOF 29 package main
··· 5 6 buildGoModule rec { 7 pname = "api-linter"; 8 + version = "1.55.2"; 9 10 src = fetchFromGitHub { 11 owner = "googleapis"; 12 repo = "api-linter"; 13 rev = "v${version}"; 14 + hash = "sha256-OBx8zlxDLlPy6hfA8A9+F0bOglAzY81d9U7uCje0vyo="; 15 }; 16 17 + vendorHash = "sha256-x8mncoXVK7p6xxgaZL/Fv6dHgeOj2rWr55ovvk6zwQE="; 18 19 subPackages = [ "cmd/api-linter" ]; 20 ··· 23 "-w" 24 ]; 25 26 + # reference: https://github.com/googleapis/api-linter/blob/v1.55.2/.github/workflows/release.yaml#L76 27 preBuild = '' 28 cat > cmd/api-linter/version.go <<EOF 29 package main
+59
pkgs/development/tools/database/prqlc/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , openssl 6 + , sqlite 7 + , zlib 8 + , stdenv 9 + , darwin 10 + , python3 11 + }: 12 + 13 + rustPlatform.buildRustPackage rec { 14 + pname = "prqlc"; 15 + version = "0.9.3"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "prql"; 19 + repo = "prql"; 20 + rev = version; 21 + hash = "sha256-m5W7ddGlgxaQR+nCFygfLWU6QBDUOK9POPdR2H62j9Q="; 22 + }; 23 + 24 + cargoHash = "sha256-7vjDWiod52fuAPHbB/UmqG9YZb8GvyZGMgdYr2qI+uM="; 25 + 26 + nativeBuildInputs = [ 27 + pkg-config 28 + rustPlatform.bindgenHook 29 + ]; 30 + 31 + buildInputs = 32 + [ 33 + openssl 34 + sqlite 35 + zlib 36 + ] 37 + ++ lib.optionals stdenv.isDarwin [ 38 + darwin.apple_sdk.frameworks.CoreFoundation 39 + darwin.apple_sdk.frameworks.CoreServices 40 + darwin.apple_sdk.frameworks.Security 41 + ]; 42 + 43 + env = { 44 + PYO3_PYTHON = "${python3}/bin/python3"; 45 + }; 46 + 47 + # we are only interested in the prqlc binary 48 + postInstall = '' 49 + rm -r $out/bin/compile-files $out/bin/mdbook-prql $out/lib 50 + ''; 51 + 52 + meta = with lib; { 53 + description = "A CLI for the PRQL compiler - a simple, powerful, pipelined SQL replacement"; 54 + homepage = "https://github.com/prql/prql"; 55 + changelog = "https://github.com/prql/prql/blob/${src.rev}/CHANGELOG.md"; 56 + license = licenses.asl20; 57 + maintainers = with maintainers; [ dit7ya ]; 58 + }; 59 + }
+3 -3
pkgs/development/tools/database/vitess/default.nix
··· 2 3 buildGoModule rec { 4 pname = "vitess"; 5 - version = "17.0.0"; 6 7 src = fetchFromGitHub { 8 owner = "vitessio"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-J/lvOP8MsHOWnq7kKRqIktME0ewtilkyOv8pD1wSnPc="; 12 }; 13 14 - vendorHash = "sha256-QcCgDOqKSI+NPCdQJY4v6qU31nLQPIF8fs2qkLOk+DU="; 15 16 buildInputs = [ sqlite ]; 17
··· 2 3 buildGoModule rec { 4 pname = "vitess"; 5 + version = "17.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "vitessio"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-EvCH1NxsGQzkXv0i5WOZXG9jeile0IHyZAoINgBIwYs="; 12 }; 13 14 + vendorHash = "sha256-0OrPbMG7ElOD+9/kWx1HtvGUBiFpIsNs5Vu7QofzE6Q="; 15 16 buildInputs = [ sqlite ]; 17
+2 -2
pkgs/development/tools/ddosify/default.nix
··· 2 3 buildGoModule rec { 4 pname = "ddosify"; 5 - version = "1.0.4"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-QJbIKzEYZO/LoOHKwXMlIY6q646+FdHwhA3WcXNA+F8="; 12 }; 13 14 vendorHash = "sha256-cGhMhX+SEv9fejViLZrEwXg584o204OQ5iR6AkxKnXo=";
··· 2 3 buildGoModule rec { 4 pname = "ddosify"; 5 + version = "1.0.5"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-oCbEAEBZJsMnnVu2N6eiQiaywovWmGUSVpUyWyS7TpM="; 12 }; 13 14 vendorHash = "sha256-cGhMhX+SEv9fejViLZrEwXg584o204OQ5iR6AkxKnXo=";
+3 -3
pkgs/development/tools/frink/default.nix
··· 8 }: 9 stdenv.mkDerivation rec { 10 pname = "frink"; 11 - version = "2023-05-22"; 12 13 src = fetchurl { 14 # Upstream does not provide versioned download links 15 - url = "https://web.archive.org/web/20230526123219/https://frinklang.org/frinkjar/frink.jar"; 16 - sha256 = "sha256-IgINJvt9G5f1HELKhV5BHIu9NoA8STDqNg/dVTFzK0Y="; 17 }; 18 19 dontUnpack = true;
··· 8 }: 9 stdenv.mkDerivation rec { 10 pname = "frink"; 11 + version = "2023-07-31"; 12 13 src = fetchurl { 14 # Upstream does not provide versioned download links 15 + url = "https://web.archive.org/web/20230806114836/https://frinklang.org/frinkjar/frink.jar"; 16 + sha256 = "sha256-u44g/pM4ie3NcBh6MZpN8+oWZLYz0LN5ozetee1iXNk="; 17 }; 18 19 dontUnpack = true;
+2 -2
pkgs/development/tools/go-containerregistry/default.nix
··· 4 5 buildGoModule rec { 6 pname = "go-containerregistry"; 7 - version = "0.15.2"; 8 9 src = fetchFromGitHub { 10 owner = "google"; 11 repo = pname; 12 rev = "v${version}"; 13 - sha256 = "sha256-Bva962laaHJAHwiQAMPtOBkwqce1ww+sBGkjV1TjrwQ="; 14 }; 15 vendorHash = null; 16
··· 4 5 buildGoModule rec { 6 pname = "go-containerregistry"; 7 + version = "0.16.1"; 8 9 src = fetchFromGitHub { 10 owner = "google"; 11 repo = pname; 12 rev = "v${version}"; 13 + sha256 = "sha256-uqTWeA449MhHFWJwyqJgLsQHvjfk46S1YA+Yss5muSk="; 14 }; 15 vendorHash = null; 16
+3 -3
pkgs/development/tools/kubeswitch/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kubeswitch"; 5 - version = "0.7.2"; 6 7 src = fetchFromGitHub { 8 owner = "danielfoehrKn"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-p4/nYZt+OwNsFX9f9ySfQaz6gbz+8Mvt00W2Rs4dpCY="; 12 }; 13 14 - vendorSha256 = null; 15 16 subPackages = [ "cmd/main.go" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "kubeswitch"; 5 + version = "0.8.0"; 6 7 src = fetchFromGitHub { 8 owner = "danielfoehrKn"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-7BQhkFvOgmLuzBEvAou8KANhxWna5KVokIF4DEIVU2g="; 12 }; 13 14 + vendorHash = null; 15 16 subPackages = [ "cmd/main.go" ]; 17
+3 -3
pkgs/development/tools/language-servers/metals/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "metals"; 5 - version = "0.11.12"; 6 7 deps = stdenv.mkDerivation { 8 name = "${pname}-deps-${version}"; ··· 16 ''; 17 outputHashMode = "recursive"; 18 outputHashAlgo = "sha256"; 19 - outputHash = "sha256-3zYjjrd3Hc2T4vwnajiAMNfTDUprKJZnZp2waRLQjI4="; 20 }; 21 22 nativeBuildInputs = [ makeWrapper setJavaClassPath ]; ··· 36 meta = with lib; { 37 homepage = "https://scalameta.org/metals/"; 38 license = licenses.asl20; 39 - description = "Work-in-progress language server for Scala"; 40 maintainers = with maintainers; [ fabianhjr tomahna ]; 41 }; 42 }
··· 2 3 stdenv.mkDerivation rec { 4 pname = "metals"; 5 + version = "1.0.0"; 6 7 deps = stdenv.mkDerivation { 8 name = "${pname}-deps-${version}"; ··· 16 ''; 17 outputHashMode = "recursive"; 18 outputHashAlgo = "sha256"; 19 + outputHash = "sha256-futBxdMEJN0UdDvlk5FLUUmcG7r7P7D81IhbC2oYn5s="; 20 }; 21 22 nativeBuildInputs = [ makeWrapper setJavaClassPath ]; ··· 36 meta = with lib; { 37 homepage = "https://scalameta.org/metals/"; 38 license = licenses.asl20; 39 + description = "Language server for Scala"; 40 maintainers = with maintainers; [ fabianhjr tomahna ]; 41 }; 42 }
+3 -3
pkgs/development/tools/misc/act/default.nix
··· 5 6 buildGoModule rec { 7 pname = "act"; 8 - version = "0.2.48"; 9 10 src = fetchFromGitHub { 11 owner = "nektos"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-fEV7WiWoI0TGEAAG0HVRW42TEOlHbB91BZcn9h9G5c8="; 15 }; 16 17 - vendorHash = "sha256-r6eJl9KhOWPLqCqe3OTjUbENbZU/1NjOoxssaAh0g78="; 18 19 doCheck = false; 20
··· 5 6 buildGoModule rec { 7 pname = "act"; 8 + version = "0.2.49"; 9 10 src = fetchFromGitHub { 11 owner = "nektos"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-dJt8XrcB1rYt6os3enLQz0YuqXNIqQTh85BIJdXwi2A="; 15 }; 16 17 + vendorHash = "sha256-QPpwYec2Y0x/VOsiTWvObKrNWGGE7dj8Cl5eM2l8ibk="; 18 19 doCheck = false; 20
+5
pkgs/development/tools/misc/catppuccin-catwalk/default.nix
··· 15 hash = "sha256-5TAw5H3soxe9vLhfj1qs8uMr4ybrHlCj4zdsMzvPo6s="; 16 }; 17 18 nativeBuildInputs = with python3.pkgs; [ 19 poetry-core 20 ];
··· 15 hash = "sha256-5TAw5H3soxe9vLhfj1qs8uMr4ybrHlCj4zdsMzvPo6s="; 16 }; 17 18 + postPatch = '' 19 + substituteInPlace pyproject.toml \ 20 + --replace 'Pillow = "^' 'Pillow = ">=' 21 + ''; 22 + 23 nativeBuildInputs = with python3.pkgs; [ 24 poetry-core 25 ];
+3 -3
pkgs/development/tools/misc/terraform-ls/default.nix
··· 2 3 buildGoModule rec { 4 pname = "terraform-ls"; 5 - version = "0.31.3"; 6 7 src = fetchFromGitHub { 8 owner = "hashicorp"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-OzqJ/F3GeIaX4/z1KJdok8kUfualRzHv1AIM8dt8Kik="; 12 }; 13 14 - vendorHash = "sha256-pEuen7CWniFzLgL1v+Xt1l6hde3YpyOMmQalj08UBX8="; 15 16 ldflags = [ "-s" "-w" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "terraform-ls"; 5 + version = "0.31.4"; 6 7 src = fetchFromGitHub { 8 owner = "hashicorp"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-0IP+83nGODSH/ELKsOA9ylm5fvREtRyiZASMNnwYIL4="; 12 }; 13 14 + vendorHash = "sha256-FDKprWyOltFy5WmXME/EfLuYRj92WuhgOV0VdWGanHg="; 15 16 ldflags = [ "-s" "-w" ]; 17
+2 -2
pkgs/development/tools/renderdoc/default.nix
··· 32 in 33 mkDerivation rec { 34 pname = "renderdoc"; 35 - version = "1.27"; 36 37 src = fetchFromGitHub { 38 owner = "baldurk"; 39 repo = "renderdoc"; 40 rev = "v${version}"; 41 - sha256 = "sha256-zkot9LbbZyzQ7CLSEVPsospAo9u7WR2VHjQdnpNiLR0="; 42 }; 43 44 buildInputs = [
··· 32 in 33 mkDerivation rec { 34 pname = "renderdoc"; 35 + version = "1.28"; 36 37 src = fetchFromGitHub { 38 owner = "baldurk"; 39 repo = "renderdoc"; 40 rev = "v${version}"; 41 + sha256 = "sha256-a8f/lbNcsWdYAmhNnTelyYX5J/XhINHRfguRFXQa3uY="; 42 }; 43 44 buildInputs = [
+3 -3
pkgs/development/tools/rust/cargo-hack/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-hack"; 5 - version = "0.5.28"; 6 7 src = fetchCrate { 8 inherit pname version; 9 - sha256 = "sha256-434imb66AINKeW50ITc4RRYO9v7sH3fs1DEwSBc3mys="; 10 }; 11 12 - cargoSha256 = "sha256-oDrpQskQV5hG9Ksp0TJcXjm/J9q/K831mOzxH+CXjfg="; 13 14 # some necessary files are absent in the crate version 15 doCheck = false;
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-hack"; 5 + version = "0.5.29"; 6 7 src = fetchCrate { 8 inherit pname version; 9 + sha256 = "sha256-Z3UExZghVw7Pbgh5nHuiC8cFVefBE0yZ2k5laam8myY="; 10 }; 11 12 + cargoSha256 = "sha256-5X3MX2KV87mOcN/cL/lFU9K9/j04zn5C7teIXFqj7Wk="; 13 14 # some necessary files are absent in the crate version 15 doCheck = false;
+3 -3
pkgs/development/tools/rust/cargo-llvm-cov/default.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "cargo-llvm-cov"; 9 - version = "0.5.24"; 10 11 src = fetchCrate { 12 inherit pname version; 13 - sha256 = "sha256-Woayb/SgSCHwYYYezQXsna9N0Jot0/iga+jrOhjsSvc="; 14 }; 15 - cargoSha256 = "sha256-8rP/wtDFH7hL3jt/QpWqriRwxlm0E2QvIqbCLiN7ZiM="; 16 17 # skip tests which require llvm-tools-preview 18 checkFlags = [
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "cargo-llvm-cov"; 9 + version = "0.5.25"; 10 11 src = fetchCrate { 12 inherit pname version; 13 + sha256 = "sha256-4ctwvDLluJsLWJPInoFGqxmEzlEuBtEJb3/x+q/5pDA="; 14 }; 15 + cargoSha256 = "sha256-QghbQYfoCd+ppNz/g5NlCnrFYpsjesQlcgMCEKUgN2k="; 16 17 # skip tests which require llvm-tools-preview 18 checkFlags = [
+2 -2
pkgs/development/tools/wasmedge/default.nix
··· 16 in 17 stdenv.mkDerivation (finalAttrs: { 18 pname = "wasmedge"; 19 - version = "0.13.2"; 20 21 src = fetchFromGitHub { 22 owner = "WasmEdge"; 23 repo = "WasmEdge"; 24 rev = finalAttrs.version; 25 - sha256 = "sha256-AU+EfNC6Au93ajj8cMTbJDvJ5iWLtT5Law7l55Knxuk="; 26 }; 27 28 nativeBuildInputs = [
··· 16 in 17 stdenv.mkDerivation (finalAttrs: { 18 pname = "wasmedge"; 19 + version = "0.13.3"; 20 21 src = fetchFromGitHub { 22 owner = "WasmEdge"; 23 repo = "WasmEdge"; 24 rev = finalAttrs.version; 25 + sha256 = "sha256-IZMYeuneKtcuvbEVgkF2C3gbxJe7GlXRNEYwpFxtiKA="; 26 }; 27 28 nativeBuildInputs = [
+7
pkgs/os-specific/linux/minimal-bootstrap/default.nix
··· 48 glibc = glibc22; 49 }; 50 51 gawk = callPackage ./gawk { 52 bash = bash_2_05; 53 tinycc = tinycc-mes; ··· 141 echo ${binutils-mes.tests.get-version} 142 echo ${bzip2.tests.get-version} 143 echo ${diffutils.tests.get-version} 144 echo ${gawk.tests.get-version} 145 echo ${gcc2.tests.get-version} 146 echo ${gcc2-mes.tests.get-version}
··· 48 glibc = glibc22; 49 }; 50 51 + findutils = callPackage ./findutils { 52 + bash = bash_2_05; 53 + gcc = gcc2; 54 + glibc = glibc22; 55 + }; 56 + 57 gawk = callPackage ./gawk { 58 bash = bash_2_05; 59 tinycc = tinycc-mes; ··· 147 echo ${binutils-mes.tests.get-version} 148 echo ${bzip2.tests.get-version} 149 echo ${diffutils.tests.get-version} 150 + echo ${findutils.tests.get-version} 151 echo ${gawk.tests.get-version} 152 echo ${gcc2.tests.get-version} 153 echo ${gcc2-mes.tests.get-version}
+72
pkgs/os-specific/linux/minimal-bootstrap/findutils/default.nix
···
··· 1 + { lib 2 + , buildPlatform 3 + , hostPlatform 4 + , fetchurl 5 + , bash 6 + , gcc 7 + , glibc 8 + , binutils 9 + , linux-headers 10 + , gnumake 11 + , gnugrep 12 + , gnused 13 + , gawk 14 + , gnutar 15 + , gzip 16 + }: 17 + let 18 + pname = "findutils"; 19 + version = "4.4.2"; 20 + 21 + src = fetchurl { 22 + url = "mirror://gnu/findutils/findutils-${version}.tar.gz"; 23 + sha256 = "0amn0bbwqvsvvsh6drfwz20ydc2czk374lzw5kksbh6bf78k4ks3"; 24 + }; 25 + in 26 + bash.runCommand "${pname}-${version}" { 27 + inherit pname version; 28 + 29 + nativeBuildInputs = [ 30 + gcc 31 + binutils 32 + gnumake 33 + gnused 34 + gnugrep 35 + gawk 36 + gnutar 37 + gzip 38 + ]; 39 + 40 + passthru.tests.get-version = result: 41 + bash.runCommand "${pname}-get-version-${version}" {} '' 42 + ${result}/bin/find --version 43 + mkdir $out 44 + ''; 45 + 46 + meta = with lib; { 47 + description = "GNU Find Utilities, the basic directory searching utilities of the GNU operating system"; 48 + homepage = "https://www.gnu.org/software/findutils"; 49 + license = licenses.gpl3Plus; 50 + maintainers = teams.minimal-bootstrap.members; 51 + platforms = platforms.unix; 52 + }; 53 + } '' 54 + # Unpack 55 + tar xzf ${src} 56 + cd findutils-${version} 57 + 58 + # Configure 59 + export C_INCLUDE_PATH="${glibc}/include:${linux-headers}/include" 60 + export LIBRARY_PATH="${glibc}/lib" 61 + export LIBS="-lc -lnss_files -lnss_dns -lresolv" 62 + bash ./configure \ 63 + --prefix=$out \ 64 + --build=${buildPlatform.config} \ 65 + --host=${hostPlatform.config} 66 + 67 + # Build 68 + make 69 + 70 + # Install 71 + make install 72 + ''
+14 -14
pkgs/servers/adguardhome/bins.nix
··· 1 { fetchurl, fetchzip }: 2 { 3 x86_64-darwin = fetchzip { 4 - sha256 = "sha256-7GoW0Re4NZa31mmNPto9fCVzKCl5ymUYQCwmDfuAnIc="; 5 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_darwin_amd64.zip"; 6 }; 7 aarch64-darwin = fetchzip { 8 - sha256 = "sha256-A3EGk+dsh1/m4rAWKNq6va75pA4OFLo9kSLb0b/1uZA="; 9 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_darwin_arm64.zip"; 10 }; 11 i686-linux = fetchurl { 12 - sha256 = "sha256-8OIxMXjCZEurxInuDRAzEZ/Vjn1ixzZRMqXiSKgx7GE="; 13 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_linux_386.tar.gz"; 14 }; 15 x86_64-linux = fetchurl { 16 - sha256 = "sha256-japMeJETDPy0RaxJOs6dDktQfTZ1sLB4jotxLYZhxfc="; 17 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_linux_amd64.tar.gz"; 18 }; 19 aarch64-linux = fetchurl { 20 - sha256 = "sha256-E1MsoM3ZDaEPFLvXWt/+0hv8CVu2v9xlX0rvh4vmj6Y="; 21 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_linux_arm64.tar.gz"; 22 }; 23 armv6l-linux = fetchurl { 24 - sha256 = "sha256-LovoihsVGtDif7sSqS3CE3QXNv2v2aSLr/x9sq2j78E="; 25 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_linux_armv6.tar.gz"; 26 }; 27 armv7l-linux = fetchurl { 28 - sha256 = "sha256-ArTTEWD0yYLRrX8jytkMtKWLbEfr90O4i73dMjA+sdE="; 29 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_linux_armv7.tar.gz"; 30 }; 31 }
··· 1 { fetchurl, fetchzip }: 2 { 3 x86_64-darwin = fetchzip { 4 + sha256 = "sha256-jIrzE1Je2dhMJuq3k8KL1VoHru5qaUAJCR3kumE9aO0="; 5 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_darwin_amd64.zip"; 6 }; 7 aarch64-darwin = fetchzip { 8 + sha256 = "sha256-9BgGGCP8n+5Op+S1/yT/kdMvmiNgKkkXLQmqF2plJZY="; 9 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_darwin_arm64.zip"; 10 }; 11 i686-linux = fetchurl { 12 + sha256 = "sha256-yPxLYXtH4bwQk2M2VTS5aJWTJciNaeXRRAcMBHuvkcA="; 13 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_linux_386.tar.gz"; 14 }; 15 x86_64-linux = fetchurl { 16 + sha256 = "sha256-sG64t1x70uKk844dT1g9GzJ+DgHuv7sUEBaVqoEmWOw="; 17 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_linux_amd64.tar.gz"; 18 }; 19 aarch64-linux = fetchurl { 20 + sha256 = "sha256-rUSfo1uJGbxx1n/VcLyq5zqiDo4g0caCpVcL2uZUSkE="; 21 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_linux_arm64.tar.gz"; 22 }; 23 armv6l-linux = fetchurl { 24 + sha256 = "sha256-ruICFAGEMXDeLvoOxHg2oEaYDHkoGZI+SozDXmmD9VU="; 25 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_linux_armv6.tar.gz"; 26 }; 27 armv7l-linux = fetchurl { 28 + sha256 = "sha256-mTGufMIKkj2R7QuNWKSKMt9KdwlZe9ORtJK5hIaeH/E="; 29 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_linux_armv7.tar.gz"; 30 }; 31 }
+1 -1
pkgs/servers/adguardhome/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "adguardhome"; 10 - version = "0.107.35"; 11 src = sources.${system} or (throw "Source for ${pname} is not available for ${system}"); 12 13 installPhase = ''
··· 7 8 stdenv.mkDerivation rec { 9 pname = "adguardhome"; 10 + version = "0.107.36"; 11 src = sources.${system} or (throw "Source for ${pname} is not available for ${system}"); 12 13 installPhase = ''
+3 -3
pkgs/servers/sql/dolt/default.nix
··· 2 3 buildGoModule rec { 4 pname = "dolt"; 5 - version = "1.8.4"; 6 7 src = fetchFromGitHub { 8 owner = "dolthub"; 9 repo = "dolt"; 10 rev = "v${version}"; 11 - sha256 = "sha256-vvtYhvfzuB/Yo/Oy6YedYVIvnOP7nM/4z/798i28v6U="; 12 }; 13 14 modRoot = "./go"; 15 subPackages = [ "cmd/dolt" ]; 16 - vendorHash = "sha256-qMK95buygi0c2rluoFlqmMko72x5kFFoUBPIohmkfNQ="; 17 proxyVendor = true; 18 doCheck = false; 19
··· 2 3 buildGoModule rec { 4 pname = "dolt"; 5 + version = "1.8.8"; 6 7 src = fetchFromGitHub { 8 owner = "dolthub"; 9 repo = "dolt"; 10 rev = "v${version}"; 11 + sha256 = "sha256-wsSSUd3i3PXEQfvpstcNXM9PK4K/Uw/xcT5Iu0vRKqQ="; 12 }; 13 14 modRoot = "./go"; 15 subPackages = [ "cmd/dolt" ]; 16 + vendorHash = "sha256-bLqoitXf4O2WFkArkvm3IeeKU8XQpSIicWwDD4aOWrg="; 17 proxyVendor = true; 18 doCheck = false; 19
+3 -3
pkgs/servers/zigbee2mqtt/default.nix
··· 8 9 buildNpmPackage rec { 10 pname = "zigbee2mqtt"; 11 - version = "1.32.1"; 12 13 src = fetchFromGitHub { 14 owner = "Koenkk"; 15 repo = "zigbee2mqtt"; 16 rev = version; 17 - hash = "sha256-HHu3aycYvcv7c4CMvv9GzeB4ZAleLDW/nRKmWahSQ88="; 18 }; 19 20 - npmDepsHash = "sha256-uryyBFGNdsOVferTNTQ8+O3gv+lJ3mCuaU/47UzqcMk="; 21 22 nativeBuildInputs = [ 23 python3
··· 8 9 buildNpmPackage rec { 10 pname = "zigbee2mqtt"; 11 + version = "1.32.2"; 12 13 src = fetchFromGitHub { 14 owner = "Koenkk"; 15 repo = "zigbee2mqtt"; 16 rev = version; 17 + hash = "sha256-ghJMSWb2bYtJhthV7KOLn9q1Tf3dCtBCCDrnjlen5JU="; 18 }; 19 20 + npmDepsHash = "sha256-2OjUBOCaVFU7Ct1n15AHm6QmzsIaGtti8zsElXcVSA8="; 21 22 nativeBuildInputs = [ 23 python3
+3 -3
pkgs/shells/carapace/default.nix
··· 2 3 buildGoModule rec { 4 pname = "carapace"; 5 - version = "0.25.3"; 6 7 src = fetchFromGitHub { 8 owner = "rsteube"; 9 repo = "${pname}-bin"; 10 rev = "v${version}"; 11 - sha256 = "sha256-N1rPAK+fjFqojxMMRgohTwhlYxHC0fUICZ+fcG23gUE="; 12 }; 13 14 - vendorHash = "sha256-LooEhKK+JSUaEMio81WGMv5l1SqEIs2r978yEc7sPlo="; 15 16 ldflags = [ 17 "-s"
··· 2 3 buildGoModule rec { 4 pname = "carapace"; 5 + version = "0.26.0"; 6 7 src = fetchFromGitHub { 8 owner = "rsteube"; 9 repo = "${pname}-bin"; 10 rev = "v${version}"; 11 + sha256 = "sha256-1e2hrAoFtnG1lU7evYnJXs65qmLNvO6fO9kPqjv66YE="; 12 }; 13 14 + vendorHash = "sha256-T0N6e96F/4HkHKYNiPFME/PUJGh+pbTmmb4SdZiDVgw="; 15 16 ldflags = [ 17 "-s"
+3 -3
pkgs/tools/admin/copilot-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "copilot-cli"; 5 - version = "1.29.0"; 6 7 src = fetchFromGitHub { 8 owner = "aws"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-sXYdP1HvwamKKvCNM5T2vu86y5mQ9MD44SrFgqWfQkE="; 12 }; 13 14 - vendorHash = "sha256-TbgxXkLIEu7jSnngVRbp4E22GgOkXSB0b8JzHI/pNGk="; 15 16 nativeBuildInputs = [ installShellFiles ]; 17
··· 2 3 buildGoModule rec { 4 pname = "copilot-cli"; 5 + version = "1.29.1"; 6 7 src = fetchFromGitHub { 8 owner = "aws"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-Mfh3Bym9aVvCaRHcSyg68KqA1Zx0tt7x52IOzvC+61M="; 12 }; 13 14 + vendorHash = "sha256-0QPUvKGuR4fhXUoak6PqkBXsg+WkAOlSluci6/+ULB8="; 15 16 nativeBuildInputs = [ installShellFiles ]; 17
+2 -2
pkgs/tools/admin/gimme-aws-creds/default.nix
··· 42 in 43 python.pkgs.buildPythonApplication rec { 44 pname = "gimme-aws-creds"; 45 - version = "2.7.0"; # N.B: if you change this, check if overrides are still up-to-date 46 format = "setuptools"; 47 48 src = fetchFromGitHub { 49 owner = "Nike-Inc"; 50 repo = "gimme-aws-creds"; 51 rev = "v${version}"; 52 - hash = "sha256-PGDTCQUwWoRCYu6rm63ftIYLyAIIJ4SDvP4IGkxn3hs="; 53 }; 54 55 nativeBuildInputs = with python.pkgs; [
··· 42 in 43 python.pkgs.buildPythonApplication rec { 44 pname = "gimme-aws-creds"; 45 + version = "2.7.1"; # N.B: if you change this, check if overrides are still up-to-date 46 format = "setuptools"; 47 48 src = fetchFromGitHub { 49 owner = "Nike-Inc"; 50 repo = "gimme-aws-creds"; 51 rev = "v${version}"; 52 + hash = "sha256-vn3DzDqu19g6Z/RcWsktJxmeg6oK9NIEyjpH9g1tXNs="; 53 }; 54 55 nativeBuildInputs = with python.pkgs; [
+58 -3
pkgs/tools/admin/lxd/wrapper.nix
··· 1 { lib 2 , lxd-unwrapped 3 , makeWrapper 4 , symlinkJoin 5 , writeShellScriptBin 6 , acl ··· 12 , criu 13 , dnsmasq 14 , gnutar 15 , gzip 16 , iproute2 17 , iptables 18 , rsync 19 , squashfsTools 20 , xz 21 - , 22 }: 23 let 24 binPath = lib.makeBinPath [ ··· 29 criu 30 dnsmasq 31 gnutar 32 gzip 33 iproute2 34 iptables 35 rsync 36 squashfsTools 37 xz 38 39 (writeShellScriptBin "apparmor_parser" '' 40 exec '${apparmor-parser}/bin/apparmor_parser' -I '${apparmor-profiles}/etc/apparmor.d' "$@" 41 '') 42 ]; 43 in 44 symlinkJoin { 45 name = "lxd-${lxd-unwrapped.version}"; ··· 49 nativeBuildInputs = [ makeWrapper ]; 50 51 postBuild = '' 52 - wrapProgram $out/bin/lxd --prefix PATH : ${lib.escapeShellArg binPath} 53 ''; 54 55 passthru = { 56 - inherit (lxd-unwrapped) tests; 57 }; 58 59 inherit (lxd-unwrapped) meta pname version;
··· 1 { lib 2 , lxd-unwrapped 3 + , linkFarm 4 , makeWrapper 5 + , stdenv 6 , symlinkJoin 7 , writeShellScriptBin 8 , acl ··· 14 , criu 15 , dnsmasq 16 , gnutar 17 + , gptfdisk 18 , gzip 19 , iproute2 20 , iptables 21 + , OVMF 22 + , qemu_kvm 23 + , qemu-utils 24 , rsync 25 + , spice-gtk 26 , squashfsTools 27 + , virtiofsd 28 , xz 29 }: 30 let 31 binPath = lib.makeBinPath [ ··· 36 criu 37 dnsmasq 38 gnutar 39 + gptfdisk 40 gzip 41 iproute2 42 iptables 43 + qemu_kvm 44 + qemu-utils 45 rsync 46 squashfsTools 47 + virtiofsd 48 xz 49 50 (writeShellScriptBin "apparmor_parser" '' 51 exec '${apparmor-parser}/bin/apparmor_parser' -I '${apparmor-profiles}/etc/apparmor.d' "$@" 52 '') 53 ]; 54 + 55 + clientBinPath = [ 56 + spice-gtk 57 + ]; 58 + 59 + ovmf-2mb = OVMF.override { 60 + secureBoot = true; 61 + csmSupport = false; 62 + fdSize2MB = true; 63 + }; 64 + 65 + ovmf-4mb = OVMF.override { 66 + secureBoot = true; 67 + csmSupport = false; 68 + fdSize4MB = true; 69 + }; 70 + 71 + ovmf-4mb-csm = OVMF.override { 72 + secureBoot = true; 73 + csmSupport = false; 74 + fdSize2MB = false; 75 + fdSize4MB = true; 76 + }; 77 + 78 + ovmf-prefix = if stdenv.hostPlatform.isAarch64 then "AAVMF" else "OVMF"; 79 + 80 + # mimic ovmf from https://github.com/canonical/lxd-pkg-snap/blob/3abebe1dfeb20f9b7729556960c7e9fe6ad5e17c/snapcraft.yaml#L378 81 + # also found in /snap/lxd/current/share/qemu/ on a snap install 82 + ovmf = linkFarm "lxd-ovmf" [ 83 + { name = "OVMF_CODE.2MB.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_CODE.fd"; } 84 + { name = "OVMF_CODE.4MB.CSM.fd"; path = "${ovmf-4mb-csm.fd}/FV/${ovmf-prefix}_CODE.fd"; } 85 + { name = "OVMF_CODE.4MB.fd"; path = "${ovmf-4mb.fd}/FV/${ovmf-prefix}_CODE.fd"; } 86 + { name = "OVMF_CODE.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_CODE.fd"; } 87 + 88 + { name = "OVMF_VARS.2MB.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 89 + { name = "OVMF_VARS.2MB.ms.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 90 + { name = "OVMF_VARS.4MB.CSM.fd"; path = "${ovmf-4mb-csm.fd}/FV/${ovmf-prefix}_VARS.fd"; } 91 + { name = "OVMF_VARS.4MB.fd"; path = "${ovmf-4mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 92 + { name = "OVMF_VARS.4MB.ms.fd"; path = "${ovmf-4mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 93 + { name = "OVMF_VARS.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 94 + { name = "OVMF_VARS.ms.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 95 + ]; 96 in 97 symlinkJoin { 98 name = "lxd-${lxd-unwrapped.version}"; ··· 102 nativeBuildInputs = [ makeWrapper ]; 103 104 postBuild = '' 105 + wrapProgram $out/bin/lxd --prefix PATH : ${lib.escapeShellArg binPath}:${qemu_kvm}/libexec:$out/bin --set LXD_OVMF_PATH ${ovmf} 106 + 107 + wrapProgram $out/bin/lxc --prefix PATH : ${lib.makeBinPath clientBinPath} 108 ''; 109 110 passthru = { 111 + inherit (lxd-unwrapped) tests ui; 112 }; 113 114 inherit (lxd-unwrapped) meta pname version;
+3 -3
pkgs/tools/admin/scaleway-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "scaleway-cli"; 5 - version = "2.18.0"; 6 7 src = fetchFromGitHub { 8 owner = "scaleway"; 9 repo = "scaleway-cli"; 10 rev = "v${version}"; 11 - sha256 = "sha256-ytnYrvvfO8L+TI1x0ydDBnh5lurWL1avCPVAlK/cOuI="; 12 }; 13 14 - vendorHash = "sha256-UWWnT6ft/eGCn/6T1IDQSdfgv8htxDL2cFl4reAx51k="; 15 16 ldflags = [ 17 "-w"
··· 2 3 buildGoModule rec { 4 pname = "scaleway-cli"; 5 + version = "2.19.0"; 6 7 src = fetchFromGitHub { 8 owner = "scaleway"; 9 repo = "scaleway-cli"; 10 rev = "v${version}"; 11 + sha256 = "sha256-DJTgmUH/n1TBKrgBN+8oG2ziRlAXzj6gOtjv4QjNkC8="; 12 }; 13 14 + vendorHash = "sha256-RnTj59WsyY/cWkhe2bucMvzrI8EwC3I1kxccBCfFqtI="; 15 16 ldflags = [ 17 "-w"
+2 -2
pkgs/tools/misc/lazydocker/default.nix
··· 2 3 buildGoModule rec { 4 pname = "lazydocker"; 5 - version = "0.21.0"; 6 7 src = fetchFromGitHub { 8 owner = "jesseduffield"; 9 repo = "lazydocker"; 10 rev = "v${version}"; 11 - sha256 = "sha256-CALMpedDCBlsYt31JOlwH1SOEhy/DFP6SdjoVkQ2KOs="; 12 }; 13 14 vendorHash = null;
··· 2 3 buildGoModule rec { 4 pname = "lazydocker"; 5 + version = "0.21.1"; 6 7 src = fetchFromGitHub { 8 owner = "jesseduffield"; 9 repo = "lazydocker"; 10 rev = "v${version}"; 11 + sha256 = "sha256-fzHsLKtlyTKcuOqTYtoE5Wv0Y45tAMgRpYmXA4oYrVY="; 12 }; 13 14 vendorHash = null;
+3 -3
pkgs/tools/misc/opentelemetry-collector/default.nix
··· 5 6 buildGoModule rec { 7 pname = "opentelemetry-collector"; 8 - version = "0.81.0"; 9 10 src = fetchFromGitHub { 11 owner = "open-telemetry"; 12 repo = "opentelemetry-collector"; 13 rev = "v${version}"; 14 - hash = "sha256-yywmnJUTigDYeiAuK0f2511vh6sS4oD4hJLPozAlWz4="; 15 }; 16 # there is a nested go.mod 17 sourceRoot = "${src.name}/cmd/otelcorecol"; 18 - vendorHash = "sha256-BNIQ0pTHGgwWw1cy7au6hUeECC8oGsSkxaX5BUCRG9Y="; 19 20 # upstream strongly recommends disabling CGO 21 # additionally dependencies have had issues when GCO was enabled that weren't caught upstream
··· 5 6 buildGoModule rec { 7 pname = "opentelemetry-collector"; 8 + version = "0.82.0"; 9 10 src = fetchFromGitHub { 11 owner = "open-telemetry"; 12 repo = "opentelemetry-collector"; 13 rev = "v${version}"; 14 + hash = "sha256-EYkHfqwCxNIrE+wRMo/kwOVfuQfgrgcpmSL1gVwDebo="; 15 }; 16 # there is a nested go.mod 17 sourceRoot = "${src.name}/cmd/otelcorecol"; 18 + vendorHash = "sha256-lebysPwGTOj2W0OKmj/2sIH5wMKfhZYwHWYjqa2dfKw="; 19 20 # upstream strongly recommends disabling CGO 21 # additionally dependencies have had issues when GCO was enabled that weren't caught upstream
+1 -1
pkgs/tools/networking/edgedb/Cargo.lock
··· 884 885 [[package]] 886 name = "edgedb-cli" 887 - version = "3.3.0" 888 dependencies = [ 889 "anyhow", 890 "arc-swap",
··· 884 885 [[package]] 886 name = "edgedb-cli" 887 + version = "3.4.0" 888 dependencies = [ 889 "anyhow", 890 "arc-swap",
+3 -3
pkgs/tools/networking/edgedb/default.nix
··· 19 20 rustPlatform.buildRustPackage rec { 21 pname = "edgedb"; 22 - version = "3.3.0"; 23 24 src = fetchFromGitHub { 25 owner = "edgedb"; 26 repo = "edgedb-cli"; 27 rev = "v${version}"; 28 - sha256 = "sha256-6uhwuAGZ/XU+eENNo0H7hOdrDDx0fWvPVZAEOm5mdcY="; 29 fetchSubmodules = true; 30 }; 31 ··· 33 lockFile = ./Cargo.lock; 34 outputHashes = { 35 "edgedb-derive-0.5.0" = "sha256-y/mN0XuJtQBtkLmbk2s7hK5joGEH5Ge6sLCD88WyL9o="; 36 "indexmap-2.0.0-pre" = "sha256-QMOmoUHE1F/sp+NeDpgRGqqacWLHWG02YgZc5vAdXZY="; 37 "rexpect-0.5.0" = "sha256-vstAL/fJWWx7WbmRxNItKpzvgGF3SvJDs5isq9ym/OA="; 38 - "edgeql-parser-0.1.0" = "sha256-Y3gXxPuR7qnTL4fu2nZIa3e20YV1fLvm2jHAng+Ke2Q="; 39 "rustyline-8.0.0" = "sha256-CrICwQbHPzS4QdVIEHxt2euX+g+0pFYe84NfMp1daEc="; 40 "serde_str-1.0.0" = "sha256-CMBh5lxdQb2085y0jc/DrV6B8iiXvVO2aoZH/lFFjak="; 41 };
··· 19 20 rustPlatform.buildRustPackage rec { 21 pname = "edgedb"; 22 + version = "3.4.0"; 23 24 src = fetchFromGitHub { 25 owner = "edgedb"; 26 repo = "edgedb-cli"; 27 rev = "v${version}"; 28 + sha256 = "sha256-w6YpjSmh517yat45l4gGdV6qWD4O3aCx/6LL5wea+RA="; 29 fetchSubmodules = true; 30 }; 31 ··· 33 lockFile = ./Cargo.lock; 34 outputHashes = { 35 "edgedb-derive-0.5.0" = "sha256-y/mN0XuJtQBtkLmbk2s7hK5joGEH5Ge6sLCD88WyL9o="; 36 + "edgeql-parser-0.1.0" = "sha256-Y3gXxPuR7qnTL4fu2nZIa3e20YV1fLvm2jHAng+Ke2Q="; 37 "indexmap-2.0.0-pre" = "sha256-QMOmoUHE1F/sp+NeDpgRGqqacWLHWG02YgZc5vAdXZY="; 38 "rexpect-0.5.0" = "sha256-vstAL/fJWWx7WbmRxNItKpzvgGF3SvJDs5isq9ym/OA="; 39 "rustyline-8.0.0" = "sha256-CrICwQbHPzS4QdVIEHxt2euX+g+0pFYe84NfMp1daEc="; 40 "serde_str-1.0.0" = "sha256-CMBh5lxdQb2085y0jc/DrV6B8iiXvVO2aoZH/lFFjak="; 41 };
+23 -2
pkgs/tools/package-management/nixpkgs-review/default.nix
··· 2 , python3 3 , fetchFromGitHub 4 5 , bubblewrap 6 , nix-output-monitor 7 , cacert 8 , git 9 , nix 10 11 , withSandboxSupport ? false 12 , withNom ? false 13 }: 14 15 python3.pkgs.buildPythonApplication rec { 16 pname = "nixpkgs-review"; 17 - version = "2.9.3"; 18 19 src = fetchFromGitHub { 20 owner = "Mic92"; 21 repo = "nixpkgs-review"; 22 rev = version; 23 - sha256 = "sha256-Pcyhrw6oR+tLf/qgLnb7qx3003ldv3KuDVg6QsEhQp0="; 24 }; 25 26 makeWrapperArgs = 27 let 28 binPath = [ nix git ] ··· 37 ]; 38 39 doCheck = false; 40 41 meta = with lib; { 42 description = "Review pull-requests on https://github.com/NixOS/nixpkgs";
··· 2 , python3 3 , fetchFromGitHub 4 5 + , installShellFiles 6 , bubblewrap 7 , nix-output-monitor 8 , cacert 9 , git 10 , nix 11 12 + , withAutocomplete ? true 13 , withSandboxSupport ? false 14 , withNom ? false 15 }: 16 17 python3.pkgs.buildPythonApplication rec { 18 pname = "nixpkgs-review"; 19 + version = "2.10.0"; 20 + format = "pyproject"; 21 22 src = fetchFromGitHub { 23 owner = "Mic92"; 24 repo = "nixpkgs-review"; 25 rev = version; 26 + hash = "sha256-uMcTwRmELk/vFI7vU4+UUvBDhlF+gVgohIXE0Sm1/d8="; 27 }; 28 29 + nativeBuildInputs = [ 30 + installShellFiles 31 + python3.pkgs.setuptools 32 + ] ++ lib.optionals withAutocomplete [ 33 + python3.pkgs.argcomplete 34 + ]; 35 + 36 + propagatedBuildInputs = [ python3.pkgs.argcomplete ]; 37 + 38 makeWrapperArgs = 39 let 40 binPath = [ nix git ] ··· 49 ]; 50 51 doCheck = false; 52 + 53 + postInstall = lib.optionalString withAutocomplete '' 54 + for cmd in nix-review nixpkgs-review; do 55 + installShellCompletion --cmd $cmd \ 56 + --bash <(register-python-argcomplete $out/bin/$cmd) \ 57 + --fish <(register-python-argcomplete $out/bin/$cmd -s fish) \ 58 + --zsh <(register-python-argcomplete $out/bin/$cmd -s zsh) 59 + done 60 + ''; 61 62 meta = with lib; { 63 description = "Review pull-requests on https://github.com/NixOS/nixpkgs";
+639 -547
pkgs/tools/text/autocorrect/Cargo.lock
··· 3 version = 3 4 5 [[package]] 6 name = "adler" 7 version = "1.0.2" 8 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 10 11 [[package]] 12 name = "aho-corasick" 13 - version = "0.7.20" 14 source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 16 dependencies = [ 17 "memchr", 18 ] 19 20 [[package]] 21 - name = "atty" 22 - version = "0.2.14" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 25 dependencies = [ 26 - "hermit-abi 0.1.19", 27 - "libc", 28 - "winapi", 29 ] 30 31 [[package]] ··· 36 37 [[package]] 38 name = "autocorrect" 39 - version = "2.6.1" 40 - source = "registry+https://github.com/rust-lang/crates.io-index" 41 - checksum = "0be6666c6eabb199e7e968e8a64092fafedfc0ac33ba78438f5ce10a9f372e5e" 42 dependencies = [ 43 - "autocorrect-derive 0.2.0", 44 "diff", 45 "ignore", 46 "lazy_static", 47 "owo-colors", 48 "pest", 49 "pest_derive", 50 "regex", 51 "serde", 52 "serde_json", ··· 56 57 [[package]] 58 name = "autocorrect" 59 - version = "2.6.2" 60 dependencies = [ 61 - "autocorrect-derive 0.3.0", 62 - "criterion", 63 "diff", 64 "ignore", 65 - "indoc", 66 "lazy_static", 67 "owo-colors", 68 "pest", 69 "pest_derive", 70 - "pretty_assertions", 71 "regex", 72 "serde", 73 "serde_json", ··· 77 78 [[package]] 79 name = "autocorrect-cli" 80 - version = "2.6.2" 81 dependencies = [ 82 - "autocorrect 2.6.2", 83 - "clap 4.1.4", 84 "ignore", 85 "lazy_static", 86 "log", ··· 90 "self_update", 91 "sudo", 92 "threadpool", 93 "walkdir", 94 ] 95 96 [[package]] 97 name = "autocorrect-derive" 98 - version = "0.2.0" 99 - source = "registry+https://github.com/rust-lang/crates.io-index" 100 - checksum = "debd029444930ad4091ac6e8af942e13bee8a351ca0b402cf1d3b2afcf3e2d69" 101 dependencies = [ 102 - "syn", 103 ] 104 105 [[package]] 106 name = "autocorrect-derive" 107 version = "0.3.0" 108 dependencies = [ 109 "quote", 110 - "syn", 111 ] 112 113 [[package]] 114 name = "autocorrect-java" 115 - version = "2.6.2" 116 dependencies = [ 117 - "autocorrect 2.6.2", 118 "jni", 119 ] 120 121 [[package]] 122 name = "autocorrect-node" 123 - version = "2.6.2" 124 dependencies = [ 125 - "autocorrect 2.6.2", 126 "napi", 127 "napi-build", 128 "napi-derive", ··· 130 131 [[package]] 132 name = "autocorrect-py" 133 - version = "2.6.2" 134 dependencies = [ 135 - "autocorrect 2.6.2", 136 "pyo3", 137 ] 138 139 [[package]] 140 name = "autocorrect-rb" 141 - version = "2.6.2" 142 dependencies = [ 143 - "autocorrect 2.6.1", 144 "magnus", 145 ] 146 147 [[package]] 148 name = "autocorrect-wasm" 149 - version = "2.6.2" 150 dependencies = [ 151 - "autocorrect 2.6.2", 152 "serde", 153 "serde_json", 154 "wasm-bindgen", 155 ] 156 157 [[package]] 158 name = "base64" 159 - version = "0.21.0" 160 source = "registry+https://github.com/rust-lang/crates.io-index" 161 - checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 162 163 [[package]] 164 name = "bindgen" 165 - version = "0.60.1" 166 source = "registry+https://github.com/rust-lang/crates.io-index" 167 - checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6" 168 dependencies = [ 169 - "bitflags", 170 "cexpr", 171 "clang-sys", 172 "lazy_static", ··· 177 "regex", 178 "rustc-hash", 179 "shlex", 180 ] 181 182 [[package]] ··· 186 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 187 188 [[package]] 189 - name = "block-buffer" 190 - version = "0.10.3" 191 source = "registry+https://github.com/rust-lang/crates.io-index" 192 - checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 193 - dependencies = [ 194 - "generic-array", 195 - ] 196 197 [[package]] 198 - name = "bstr" 199 - version = "0.2.17" 200 source = "registry+https://github.com/rust-lang/crates.io-index" 201 - checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 202 dependencies = [ 203 - "lazy_static", 204 - "memchr", 205 - "regex-automata", 206 - "serde", 207 ] 208 209 [[package]] 210 name = "bstr" 211 - version = "1.2.0" 212 source = "registry+https://github.com/rust-lang/crates.io-index" 213 - checksum = "b7f0778972c64420fdedc63f09919c8a88bda7b25135357fd25a5d9f3257e832" 214 dependencies = [ 215 "memchr", 216 "serde", ··· 218 219 [[package]] 220 name = "bumpalo" 221 - version = "3.12.0" 222 source = "registry+https://github.com/rust-lang/crates.io-index" 223 - checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 224 225 [[package]] 226 name = "bytes" ··· 236 237 [[package]] 238 name = "cc" 239 - version = "1.0.79" 240 source = "registry+https://github.com/rust-lang/crates.io-index" 241 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 242 243 [[package]] 244 name = "cesu8" ··· 262 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 263 264 [[package]] 265 name = "clang-sys" 266 - version = "1.4.0" 267 source = "registry+https://github.com/rust-lang/crates.io-index" 268 - checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" 269 dependencies = [ 270 "glob", 271 "libc", ··· 274 275 [[package]] 276 name = "clap" 277 - version = "2.34.0" 278 source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 280 dependencies = [ 281 - "bitflags", 282 - "textwrap", 283 - "unicode-width", 284 ] 285 286 [[package]] 287 - name = "clap" 288 - version = "4.1.4" 289 source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76" 291 dependencies = [ 292 - "bitflags", 293 - "clap_derive", 294 "clap_lex", 295 - "is-terminal", 296 - "once_cell", 297 "strsim", 298 - "termcolor", 299 ] 300 301 [[package]] 302 name = "clap_derive" 303 - version = "4.1.0" 304 source = "registry+https://github.com/rust-lang/crates.io-index" 305 - checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8" 306 dependencies = [ 307 "heck", 308 - "proc-macro-error", 309 "proc-macro2", 310 "quote", 311 - "syn", 312 ] 313 314 [[package]] 315 name = "clap_lex" 316 - version = "0.3.1" 317 source = "registry+https://github.com/rust-lang/crates.io-index" 318 - checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade" 319 - dependencies = [ 320 - "os_str_bytes", 321 - ] 322 323 [[package]] 324 name = "combine" ··· 332 333 [[package]] 334 name = "console" 335 - version = "0.15.5" 336 source = "registry+https://github.com/rust-lang/crates.io-index" 337 - checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60" 338 dependencies = [ 339 "encode_unicode", 340 "lazy_static", 341 "libc", 342 - "windows-sys 0.42.0", 343 ] 344 345 [[package]] ··· 353 354 [[package]] 355 name = "cpufeatures" 356 - version = "0.2.5" 357 source = "registry+https://github.com/rust-lang/crates.io-index" 358 - checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 359 dependencies = [ 360 "libc", 361 ] ··· 371 372 [[package]] 373 name = "criterion" 374 - version = "0.3.6" 375 source = "registry+https://github.com/rust-lang/crates.io-index" 376 - checksum = "b01d6de93b2b6c65e17c634a26653a29d107b3c98c607c765bf38d041531cd8f" 377 dependencies = [ 378 - "atty", 379 "cast", 380 - "clap 2.34.0", 381 "criterion-plot", 382 - "csv", 383 "itertools", 384 - "lazy_static", 385 "num-traits", 386 "oorandom", 387 "plotters", 388 "rayon", 389 "regex", 390 "serde", 391 - "serde_cbor", 392 "serde_derive", 393 "serde_json", 394 "tinytemplate", ··· 397 398 [[package]] 399 name = "criterion-plot" 400 - version = "0.4.5" 401 source = "registry+https://github.com/rust-lang/crates.io-index" 402 - checksum = "2673cc8207403546f45f5fd319a974b1e6983ad1a3ee7e6041650013be041876" 403 dependencies = [ 404 "cast", 405 "itertools", ··· 407 408 [[package]] 409 name = "crossbeam-channel" 410 - version = "0.5.6" 411 source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 413 dependencies = [ 414 "cfg-if", 415 "crossbeam-utils", ··· 417 418 [[package]] 419 name = "crossbeam-deque" 420 - version = "0.8.2" 421 source = "registry+https://github.com/rust-lang/crates.io-index" 422 - checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 423 dependencies = [ 424 "cfg-if", 425 "crossbeam-epoch", ··· 428 429 [[package]] 430 name = "crossbeam-epoch" 431 - version = "0.9.13" 432 source = "registry+https://github.com/rust-lang/crates.io-index" 433 - checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 434 dependencies = [ 435 "autocfg", 436 "cfg-if", 437 "crossbeam-utils", 438 - "memoffset 0.7.1", 439 "scopeguard", 440 ] 441 442 [[package]] 443 name = "crossbeam-utils" 444 - version = "0.8.14" 445 source = "registry+https://github.com/rust-lang/crates.io-index" 446 - checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 447 dependencies = [ 448 "cfg-if", 449 ] ··· 459 ] 460 461 [[package]] 462 - name = "csv" 463 - version = "1.1.6" 464 - source = "registry+https://github.com/rust-lang/crates.io-index" 465 - checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" 466 - dependencies = [ 467 - "bstr 0.2.17", 468 - "csv-core", 469 - "itoa 0.4.8", 470 - "ryu", 471 - "serde", 472 - ] 473 - 474 - [[package]] 475 - name = "csv-core" 476 - version = "0.1.10" 477 - source = "registry+https://github.com/rust-lang/crates.io-index" 478 - checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" 479 - dependencies = [ 480 - "memchr", 481 - ] 482 - 483 - [[package]] 484 name = "ctor" 485 - version = "0.1.26" 486 source = "registry+https://github.com/rust-lang/crates.io-index" 487 - checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 488 dependencies = [ 489 "quote", 490 - "syn", 491 ] 492 493 [[package]] ··· 498 499 [[package]] 500 name = "digest" 501 - version = "0.10.6" 502 source = "registry+https://github.com/rust-lang/crates.io-index" 503 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 504 dependencies = [ 505 "block-buffer", 506 "crypto-common", ··· 508 509 [[package]] 510 name = "either" 511 - version = "1.8.1" 512 source = "registry+https://github.com/rust-lang/crates.io-index" 513 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 514 515 [[package]] 516 name = "encode_unicode" ··· 528 ] 529 530 [[package]] 531 name = "errno" 532 - version = "0.2.8" 533 source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 535 dependencies = [ 536 "errno-dragonfly", 537 "libc", 538 - "winapi", 539 ] 540 541 [[package]] ··· 550 551 [[package]] 552 name = "fastrand" 553 - version = "1.8.0" 554 source = "registry+https://github.com/rust-lang/crates.io-index" 555 - checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 556 - dependencies = [ 557 - "instant", 558 - ] 559 560 [[package]] 561 name = "filetime" 562 - version = "0.2.20" 563 source = "registry+https://github.com/rust-lang/crates.io-index" 564 - checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412" 565 dependencies = [ 566 "cfg-if", 567 "libc", 568 "redox_syscall", 569 - "windows-sys 0.45.0", 570 ] 571 572 [[package]] 573 name = "flate2" 574 - version = "1.0.25" 575 source = "registry+https://github.com/rust-lang/crates.io-index" 576 - checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 577 dependencies = [ 578 "crc32fast", 579 "miniz_oxide", ··· 587 588 [[package]] 589 name = "form_urlencoded" 590 - version = "1.1.0" 591 source = "registry+https://github.com/rust-lang/crates.io-index" 592 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 593 dependencies = [ 594 "percent-encoding", 595 ] 596 597 [[package]] 598 name = "futures-channel" 599 - version = "0.3.26" 600 source = "registry+https://github.com/rust-lang/crates.io-index" 601 - checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" 602 dependencies = [ 603 "futures-core", 604 ] 605 606 [[package]] 607 name = "futures-core" 608 - version = "0.3.26" 609 source = "registry+https://github.com/rust-lang/crates.io-index" 610 - checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" 611 612 [[package]] 613 name = "futures-io" 614 - version = "0.3.26" 615 source = "registry+https://github.com/rust-lang/crates.io-index" 616 - checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" 617 618 [[package]] 619 name = "futures-sink" 620 - version = "0.3.26" 621 source = "registry+https://github.com/rust-lang/crates.io-index" 622 - checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" 623 624 [[package]] 625 name = "futures-task" 626 - version = "0.3.26" 627 source = "registry+https://github.com/rust-lang/crates.io-index" 628 - checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" 629 630 [[package]] 631 name = "futures-util" 632 - version = "0.3.26" 633 source = "registry+https://github.com/rust-lang/crates.io-index" 634 - checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" 635 dependencies = [ 636 "futures-core", 637 "futures-io", 638 "futures-task", 639 "memchr", 640 "pin-project-lite", ··· 644 645 [[package]] 646 name = "generic-array" 647 - version = "0.14.6" 648 source = "registry+https://github.com/rust-lang/crates.io-index" 649 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 650 dependencies = [ 651 "typenum", 652 "version_check", 653 ] 654 655 [[package]] 656 name = "glob" 657 version = "0.3.1" 658 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 660 661 [[package]] 662 name = "globset" 663 - version = "0.4.10" 664 source = "registry+https://github.com/rust-lang/crates.io-index" 665 - checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" 666 dependencies = [ 667 "aho-corasick", 668 - "bstr 1.2.0", 669 "fnv", 670 "log", 671 "regex", ··· 673 674 [[package]] 675 name = "h2" 676 - version = "0.3.15" 677 source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4" 679 dependencies = [ 680 "bytes", 681 "fnv", ··· 683 "futures-sink", 684 "futures-util", 685 "http", 686 - "indexmap", 687 "slab", 688 "tokio", 689 "tokio-util", ··· 703 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 704 705 [[package]] 706 - name = "heck" 707 - version = "0.4.1" 708 source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 710 - 711 - [[package]] 712 - name = "hermit-abi" 713 - version = "0.1.19" 714 - source = "registry+https://github.com/rust-lang/crates.io-index" 715 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 716 - dependencies = [ 717 - "libc", 718 - ] 719 720 [[package]] 721 - name = "hermit-abi" 722 - version = "0.2.6" 723 source = "registry+https://github.com/rust-lang/crates.io-index" 724 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 725 - dependencies = [ 726 - "libc", 727 - ] 728 729 [[package]] 730 name = "hermit-abi" 731 - version = "0.3.1" 732 source = "registry+https://github.com/rust-lang/crates.io-index" 733 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 734 735 [[package]] 736 name = "http" 737 - version = "0.2.8" 738 source = "registry+https://github.com/rust-lang/crates.io-index" 739 - checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 740 dependencies = [ 741 "bytes", 742 "fnv", 743 - "itoa 1.0.5", 744 ] 745 746 [[package]] ··· 768 769 [[package]] 770 name = "hyper" 771 - version = "0.14.24" 772 source = "registry+https://github.com/rust-lang/crates.io-index" 773 - checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" 774 dependencies = [ 775 "bytes", 776 "futures-channel", ··· 781 "http-body", 782 "httparse", 783 "httpdate", 784 - "itoa 1.0.5", 785 "pin-project-lite", 786 "socket2", 787 "tokio", ··· 792 793 [[package]] 794 name = "hyper-rustls" 795 - version = "0.23.2" 796 source = "registry+https://github.com/rust-lang/crates.io-index" 797 - checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" 798 dependencies = [ 799 "http", 800 "hyper", 801 "rustls", ··· 805 806 [[package]] 807 name = "idna" 808 - version = "0.3.0" 809 source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 811 dependencies = [ 812 "unicode-bidi", 813 "unicode-normalization", ··· 832 833 [[package]] 834 name = "indexmap" 835 - version = "1.9.2" 836 source = "registry+https://github.com/rust-lang/crates.io-index" 837 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 838 dependencies = [ 839 "autocfg", 840 - "hashbrown", 841 ] 842 843 [[package]] ··· 859 checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" 860 861 [[package]] 862 - name = "instant" 863 - version = "0.1.12" 864 - source = "registry+https://github.com/rust-lang/crates.io-index" 865 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 866 - dependencies = [ 867 - "cfg-if", 868 - ] 869 - 870 - [[package]] 871 - name = "io-lifetimes" 872 - version = "1.0.5" 873 - source = "registry+https://github.com/rust-lang/crates.io-index" 874 - checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3" 875 - dependencies = [ 876 - "libc", 877 - "windows-sys 0.45.0", 878 - ] 879 - 880 - [[package]] 881 name = "ipnet" 882 - version = "2.7.1" 883 source = "registry+https://github.com/rust-lang/crates.io-index" 884 - checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" 885 886 [[package]] 887 name = "is-terminal" 888 - version = "0.4.3" 889 source = "registry+https://github.com/rust-lang/crates.io-index" 890 - checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef" 891 dependencies = [ 892 - "hermit-abi 0.3.1", 893 - "io-lifetimes", 894 "rustix", 895 - "windows-sys 0.45.0", 896 ] 897 898 [[package]] ··· 906 907 [[package]] 908 name = "itoa" 909 - version = "0.4.8" 910 source = "registry+https://github.com/rust-lang/crates.io-index" 911 - checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 912 - 913 - [[package]] 914 - name = "itoa" 915 - version = "1.0.5" 916 - source = "registry+https://github.com/rust-lang/crates.io-index" 917 - checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 918 919 [[package]] 920 name = "jni" ··· 938 939 [[package]] 940 name = "js-sys" 941 - version = "0.3.61" 942 source = "registry+https://github.com/rust-lang/crates.io-index" 943 - checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 944 dependencies = [ 945 "wasm-bindgen", 946 ] ··· 959 960 [[package]] 961 name = "libc" 962 - version = "0.2.139" 963 source = "registry+https://github.com/rust-lang/crates.io-index" 964 - checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 965 966 [[package]] 967 name = "libloading" ··· 975 976 [[package]] 977 name = "linux-raw-sys" 978 - version = "0.1.4" 979 source = "registry+https://github.com/rust-lang/crates.io-index" 980 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 981 982 [[package]] 983 name = "lock_api" 984 - version = "0.4.9" 985 source = "registry+https://github.com/rust-lang/crates.io-index" 986 - checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 987 dependencies = [ 988 "autocfg", 989 "scopeguard", ··· 991 992 [[package]] 993 name = "log" 994 - version = "0.4.17" 995 source = "registry+https://github.com/rust-lang/crates.io-index" 996 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 997 - dependencies = [ 998 - "cfg-if", 999 - ] 1000 1001 [[package]] 1002 name = "magnus" ··· 1017 dependencies = [ 1018 "proc-macro2", 1019 "quote", 1020 - "syn", 1021 ] 1022 1023 [[package]] ··· 1037 1038 [[package]] 1039 name = "memoffset" 1040 - version = "0.7.1" 1041 source = "registry+https://github.com/rust-lang/crates.io-index" 1042 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1043 dependencies = [ 1044 "autocfg", 1045 ] 1046 1047 [[package]] 1048 name = "mime" 1049 - version = "0.3.16" 1050 source = "registry+https://github.com/rust-lang/crates.io-index" 1051 - checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1052 1053 [[package]] 1054 name = "minimal-lexical" ··· 1058 1059 [[package]] 1060 name = "miniz_oxide" 1061 - version = "0.6.2" 1062 source = "registry+https://github.com/rust-lang/crates.io-index" 1063 - checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 1064 dependencies = [ 1065 "adler", 1066 ] 1067 1068 [[package]] 1069 name = "mio" 1070 - version = "0.8.5" 1071 source = "registry+https://github.com/rust-lang/crates.io-index" 1072 - checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" 1073 dependencies = [ 1074 "libc", 1075 - "log", 1076 "wasi", 1077 - "windows-sys 0.42.0", 1078 ] 1079 1080 [[package]] 1081 name = "napi" 1082 - version = "2.11.1" 1083 source = "registry+https://github.com/rust-lang/crates.io-index" 1084 - checksum = "2412d19892730f62fd592f8af41606ca6717ea1eca026103cd44b447829f00c1" 1085 dependencies = [ 1086 - "bitflags", 1087 "ctor", 1088 "napi-sys", 1089 "once_cell", 1090 - "thread_local", 1091 ] 1092 1093 [[package]] ··· 1098 1099 [[package]] 1100 name = "napi-derive" 1101 - version = "2.11.0" 1102 source = "registry+https://github.com/rust-lang/crates.io-index" 1103 - checksum = "03f15c1ac0eac01eca2a24c27905ab47f7411acefd829d0d01fb131dc39befd7" 1104 dependencies = [ 1105 "convert_case", 1106 "napi-derive-backend", 1107 "proc-macro2", 1108 "quote", 1109 - "syn", 1110 ] 1111 1112 [[package]] 1113 name = "napi-derive-backend" 1114 - version = "1.0.44" 1115 source = "registry+https://github.com/rust-lang/crates.io-index" 1116 - checksum = "4930d5fa70f5663b9e7d6b4f0816b70d095574ee7f3c865fdb8c43b0f7e6406d" 1117 dependencies = [ 1118 "convert_case", 1119 "once_cell", 1120 "proc-macro2", 1121 "quote", 1122 "regex", 1123 - "syn", 1124 ] 1125 1126 [[package]] ··· 1144 1145 [[package]] 1146 name = "num-traits" 1147 - version = "0.2.15" 1148 source = "registry+https://github.com/rust-lang/crates.io-index" 1149 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1150 dependencies = [ 1151 "autocfg", 1152 ] 1153 1154 [[package]] 1155 name = "num_cpus" 1156 - version = "1.15.0" 1157 source = "registry+https://github.com/rust-lang/crates.io-index" 1158 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1159 dependencies = [ 1160 - "hermit-abi 0.2.6", 1161 "libc", 1162 ] 1163 ··· 1168 checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 1169 1170 [[package]] 1171 name = "once_cell" 1172 - version = "1.17.0" 1173 source = "registry+https://github.com/rust-lang/crates.io-index" 1174 - checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 1175 1176 [[package]] 1177 name = "oorandom" ··· 1180 checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 1181 1182 [[package]] 1183 - name = "os_str_bytes" 1184 - version = "6.4.1" 1185 - source = "registry+https://github.com/rust-lang/crates.io-index" 1186 - checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 1187 - 1188 - [[package]] 1189 - name = "output_vt100" 1190 - version = "0.1.3" 1191 - source = "registry+https://github.com/rust-lang/crates.io-index" 1192 - checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" 1193 - dependencies = [ 1194 - "winapi", 1195 - ] 1196 - 1197 - [[package]] 1198 name = "owo-colors" 1199 version = "3.5.0" 1200 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1212 1213 [[package]] 1214 name = "parking_lot_core" 1215 - version = "0.9.7" 1216 source = "registry+https://github.com/rust-lang/crates.io-index" 1217 - checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 1218 dependencies = [ 1219 "cfg-if", 1220 "libc", 1221 "redox_syscall", 1222 "smallvec", 1223 - "windows-sys 0.45.0", 1224 ] 1225 1226 [[package]] ··· 1231 1232 [[package]] 1233 name = "percent-encoding" 1234 - version = "2.2.0" 1235 source = "registry+https://github.com/rust-lang/crates.io-index" 1236 - checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1237 1238 [[package]] 1239 name = "pest" 1240 - version = "2.5.5" 1241 source = "registry+https://github.com/rust-lang/crates.io-index" 1242 - checksum = "028accff104c4e513bad663bbcd2ad7cfd5304144404c31ed0a77ac103d00660" 1243 dependencies = [ 1244 "thiserror", 1245 "ucd-trie", ··· 1247 1248 [[package]] 1249 name = "pest_derive" 1250 - version = "2.5.5" 1251 source = "registry+https://github.com/rust-lang/crates.io-index" 1252 - checksum = "2ac3922aac69a40733080f53c1ce7f91dcf57e1a5f6c52f421fadec7fbdc4b69" 1253 dependencies = [ 1254 "pest", 1255 "pest_generator", ··· 1257 1258 [[package]] 1259 name = "pest_generator" 1260 - version = "2.5.5" 1261 source = "registry+https://github.com/rust-lang/crates.io-index" 1262 - checksum = "d06646e185566b5961b4058dd107e0a7f56e77c3f484549fb119867773c0f202" 1263 dependencies = [ 1264 "pest", 1265 "pest_meta", 1266 "proc-macro2", 1267 "quote", 1268 - "syn", 1269 ] 1270 1271 [[package]] 1272 name = "pest_meta" 1273 - version = "2.5.5" 1274 source = "registry+https://github.com/rust-lang/crates.io-index" 1275 - checksum = "e6f60b2ba541577e2a0c307c8f39d1439108120eb7903adeb6497fa880c59616" 1276 dependencies = [ 1277 "once_cell", 1278 "pest", ··· 1281 1282 [[package]] 1283 name = "pin-project-lite" 1284 - version = "0.2.9" 1285 source = "registry+https://github.com/rust-lang/crates.io-index" 1286 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1287 1288 [[package]] 1289 name = "pin-utils" ··· 1293 1294 [[package]] 1295 name = "plotters" 1296 - version = "0.3.4" 1297 source = "registry+https://github.com/rust-lang/crates.io-index" 1298 - checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 1299 dependencies = [ 1300 "num-traits", 1301 "plotters-backend", ··· 1306 1307 [[package]] 1308 name = "plotters-backend" 1309 - version = "0.3.4" 1310 source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 1312 1313 [[package]] 1314 name = "plotters-svg" 1315 - version = "0.3.3" 1316 source = "registry+https://github.com/rust-lang/crates.io-index" 1317 - checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 1318 dependencies = [ 1319 "plotters-backend", 1320 ] 1321 1322 [[package]] 1323 name = "pretty_assertions" 1324 - version = "1.3.0" 1325 source = "registry+https://github.com/rust-lang/crates.io-index" 1326 - checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 1327 dependencies = [ 1328 - "ctor", 1329 "diff", 1330 - "output_vt100", 1331 "yansi", 1332 ] 1333 1334 [[package]] 1335 - name = "proc-macro-error" 1336 - version = "1.0.4" 1337 - source = "registry+https://github.com/rust-lang/crates.io-index" 1338 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1339 - dependencies = [ 1340 - "proc-macro-error-attr", 1341 - "proc-macro2", 1342 - "quote", 1343 - "syn", 1344 - "version_check", 1345 - ] 1346 - 1347 - [[package]] 1348 - name = "proc-macro-error-attr" 1349 - version = "1.0.4" 1350 - source = "registry+https://github.com/rust-lang/crates.io-index" 1351 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1352 - dependencies = [ 1353 - "proc-macro2", 1354 - "quote", 1355 - "version_check", 1356 - ] 1357 - 1358 - [[package]] 1359 name = "proc-macro2" 1360 - version = "1.0.51" 1361 source = "registry+https://github.com/rust-lang/crates.io-index" 1362 - checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" 1363 dependencies = [ 1364 "unicode-ident", 1365 ] ··· 1410 "proc-macro2", 1411 "pyo3-macros-backend", 1412 "quote", 1413 - "syn", 1414 ] 1415 1416 [[package]] ··· 1421 dependencies = [ 1422 "proc-macro2", 1423 "quote", 1424 - "syn", 1425 ] 1426 1427 [[package]] ··· 1435 1436 [[package]] 1437 name = "quote" 1438 - version = "1.0.23" 1439 source = "registry+https://github.com/rust-lang/crates.io-index" 1440 - checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 1441 dependencies = [ 1442 "proc-macro2", 1443 ] 1444 1445 [[package]] 1446 name = "rayon" 1447 - version = "1.6.1" 1448 source = "registry+https://github.com/rust-lang/crates.io-index" 1449 - checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" 1450 dependencies = [ 1451 "either", 1452 "rayon-core", ··· 1454 1455 [[package]] 1456 name = "rayon-core" 1457 - version = "1.10.2" 1458 source = "registry+https://github.com/rust-lang/crates.io-index" 1459 - checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b" 1460 dependencies = [ 1461 "crossbeam-channel", 1462 "crossbeam-deque", ··· 1466 1467 [[package]] 1468 name = "rb-sys" 1469 - version = "0.9.64" 1470 source = "registry+https://github.com/rust-lang/crates.io-index" 1471 - checksum = "cc8945662df8083245deda89e236647173cc7ad750f481ddcd7bbfd3afe3fa5e" 1472 dependencies = [ 1473 "rb-sys-build", 1474 ] 1475 1476 [[package]] 1477 name = "rb-sys-build" 1478 - version = "0.9.64" 1479 source = "registry+https://github.com/rust-lang/crates.io-index" 1480 - checksum = "ae8c3cdf9edc3908ee1555b7a1bca58ee1b499439b32cd1c1ec3e66736a8df48" 1481 dependencies = [ 1482 "bindgen", 1483 "regex", 1484 "shell-words", 1485 ] 1486 1487 [[package]] ··· 1492 1493 [[package]] 1494 name = "redox_syscall" 1495 - version = "0.2.16" 1496 source = "registry+https://github.com/rust-lang/crates.io-index" 1497 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1498 dependencies = [ 1499 - "bitflags", 1500 ] 1501 1502 [[package]] 1503 name = "regex" 1504 - version = "1.7.1" 1505 source = "registry+https://github.com/rust-lang/crates.io-index" 1506 - checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 1507 dependencies = [ 1508 "aho-corasick", 1509 "memchr", 1510 "regex-syntax", 1511 ] 1512 1513 [[package]] 1514 name = "regex-automata" 1515 - version = "0.1.10" 1516 source = "registry+https://github.com/rust-lang/crates.io-index" 1517 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1518 1519 [[package]] 1520 name = "regex-syntax" 1521 - version = "0.6.28" 1522 - source = "registry+https://github.com/rust-lang/crates.io-index" 1523 - checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 1524 - 1525 - [[package]] 1526 - name = "remove_dir_all" 1527 - version = "0.5.3" 1528 source = "registry+https://github.com/rust-lang/crates.io-index" 1529 - checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1530 - dependencies = [ 1531 - "winapi", 1532 - ] 1533 1534 [[package]] 1535 name = "reqwest" 1536 - version = "0.11.14" 1537 source = "registry+https://github.com/rust-lang/crates.io-index" 1538 - checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" 1539 dependencies = [ 1540 "base64", 1541 "bytes", ··· 1586 ] 1587 1588 [[package]] 1589 name = "rustc-hash" 1590 version = "1.1.0" 1591 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1593 1594 [[package]] 1595 name = "rustix" 1596 - version = "0.36.8" 1597 source = "registry+https://github.com/rust-lang/crates.io-index" 1598 - checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644" 1599 dependencies = [ 1600 - "bitflags", 1601 "errno", 1602 - "io-lifetimes", 1603 "libc", 1604 "linux-raw-sys", 1605 - "windows-sys 0.45.0", 1606 ] 1607 1608 [[package]] 1609 name = "rustls" 1610 - version = "0.20.8" 1611 source = "registry+https://github.com/rust-lang/crates.io-index" 1612 - checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 1613 dependencies = [ 1614 "log", 1615 "ring", 1616 "sct", 1617 - "webpki", 1618 ] 1619 1620 [[package]] 1621 name = "rustls-pemfile" 1622 - version = "1.0.2" 1623 source = "registry+https://github.com/rust-lang/crates.io-index" 1624 - checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 1625 dependencies = [ 1626 "base64", 1627 ] 1628 1629 [[package]] 1630 name = "ryu" 1631 - version = "1.0.12" 1632 source = "registry+https://github.com/rust-lang/crates.io-index" 1633 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 1634 1635 [[package]] 1636 name = "same-file" ··· 1643 1644 [[package]] 1645 name = "scopeguard" 1646 - version = "1.1.0" 1647 source = "registry+https://github.com/rust-lang/crates.io-index" 1648 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1649 1650 [[package]] 1651 name = "sct" ··· 1679 1680 [[package]] 1681 name = "semver" 1682 - version = "1.0.16" 1683 source = "registry+https://github.com/rust-lang/crates.io-index" 1684 - checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" 1685 1686 [[package]] 1687 name = "serde" 1688 - version = "1.0.152" 1689 source = "registry+https://github.com/rust-lang/crates.io-index" 1690 - checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 1691 dependencies = [ 1692 "serde_derive", 1693 ] 1694 1695 [[package]] 1696 - name = "serde_cbor" 1697 - version = "0.11.2" 1698 - source = "registry+https://github.com/rust-lang/crates.io-index" 1699 - checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" 1700 - dependencies = [ 1701 - "half", 1702 - "serde", 1703 - ] 1704 - 1705 - [[package]] 1706 name = "serde_derive" 1707 - version = "1.0.152" 1708 source = "registry+https://github.com/rust-lang/crates.io-index" 1709 - checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 1710 dependencies = [ 1711 "proc-macro2", 1712 "quote", 1713 - "syn", 1714 ] 1715 1716 [[package]] 1717 name = "serde_json" 1718 - version = "1.0.93" 1719 source = "registry+https://github.com/rust-lang/crates.io-index" 1720 - checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" 1721 dependencies = [ 1722 - "itoa 1.0.5", 1723 "ryu", 1724 "serde", 1725 ] 1726 1727 [[package]] 1728 name = "serde_repr" 1729 - version = "0.1.10" 1730 source = "registry+https://github.com/rust-lang/crates.io-index" 1731 - checksum = "9a5ec9fa74a20ebbe5d9ac23dac1fc96ba0ecfe9f50f2843b52e537b10fbcb4e" 1732 dependencies = [ 1733 "proc-macro2", 1734 "quote", 1735 - "syn", 1736 ] 1737 1738 [[package]] ··· 1742 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1743 dependencies = [ 1744 "form_urlencoded", 1745 - "itoa 1.0.5", 1746 "ryu", 1747 "serde", 1748 ] 1749 1750 [[package]] 1751 name = "serde_yaml" 1752 - version = "0.9.17" 1753 source = "registry+https://github.com/rust-lang/crates.io-index" 1754 - checksum = "8fb06d4b6cdaef0e0c51fa881acb721bed3c924cfaa71d9c94a3b771dfdf6567" 1755 dependencies = [ 1756 - "indexmap", 1757 - "itoa 1.0.5", 1758 "ryu", 1759 "serde", 1760 "unsafe-libyaml", ··· 1762 1763 [[package]] 1764 name = "sha2" 1765 - version = "0.10.6" 1766 source = "registry+https://github.com/rust-lang/crates.io-index" 1767 - checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 1768 dependencies = [ 1769 "cfg-if", 1770 "cpufeatures", ··· 1785 1786 [[package]] 1787 name = "slab" 1788 - version = "0.4.7" 1789 source = "registry+https://github.com/rust-lang/crates.io-index" 1790 - checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 1791 dependencies = [ 1792 "autocfg", 1793 ] 1794 1795 [[package]] 1796 name = "smallvec" 1797 - version = "1.10.0" 1798 source = "registry+https://github.com/rust-lang/crates.io-index" 1799 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 1800 1801 [[package]] 1802 name = "socket2" 1803 - version = "0.4.7" 1804 source = "registry+https://github.com/rust-lang/crates.io-index" 1805 - checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 1806 dependencies = [ 1807 "libc", 1808 "winapi", ··· 1832 1833 [[package]] 1834 name = "syn" 1835 - version = "1.0.107" 1836 source = "registry+https://github.com/rust-lang/crates.io-index" 1837 - checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 1838 dependencies = [ 1839 "proc-macro2", 1840 "quote", ··· 1843 1844 [[package]] 1845 name = "tar" 1846 - version = "0.4.38" 1847 source = "registry+https://github.com/rust-lang/crates.io-index" 1848 - checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 1849 dependencies = [ 1850 "filetime", 1851 "libc", ··· 1854 1855 [[package]] 1856 name = "target-lexicon" 1857 - version = "0.12.5" 1858 source = "registry+https://github.com/rust-lang/crates.io-index" 1859 - checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d" 1860 1861 [[package]] 1862 name = "tempfile" 1863 - version = "3.3.0" 1864 source = "registry+https://github.com/rust-lang/crates.io-index" 1865 - checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 1866 dependencies = [ 1867 "cfg-if", 1868 "fastrand", 1869 - "libc", 1870 "redox_syscall", 1871 - "remove_dir_all", 1872 - "winapi", 1873 - ] 1874 - 1875 - [[package]] 1876 - name = "termcolor" 1877 - version = "1.2.0" 1878 - source = "registry+https://github.com/rust-lang/crates.io-index" 1879 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 1880 - dependencies = [ 1881 - "winapi-util", 1882 - ] 1883 - 1884 - [[package]] 1885 - name = "textwrap" 1886 - version = "0.11.0" 1887 - source = "registry+https://github.com/rust-lang/crates.io-index" 1888 - checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 1889 - dependencies = [ 1890 - "unicode-width", 1891 ] 1892 1893 [[package]] 1894 name = "thiserror" 1895 - version = "1.0.38" 1896 source = "registry+https://github.com/rust-lang/crates.io-index" 1897 - checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 1898 dependencies = [ 1899 "thiserror-impl", 1900 ] 1901 1902 [[package]] 1903 name = "thiserror-impl" 1904 - version = "1.0.38" 1905 source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 1907 dependencies = [ 1908 "proc-macro2", 1909 "quote", 1910 - "syn", 1911 ] 1912 1913 [[package]] 1914 name = "thread_local" 1915 - version = "1.1.6" 1916 source = "registry+https://github.com/rust-lang/crates.io-index" 1917 - checksum = "50f297120ff9d4efe680df143d5631bba9c75fa371992b7fcb33eb3453cb0a07" 1918 dependencies = [ 1919 "cfg-if", 1920 "once_cell", ··· 1956 1957 [[package]] 1958 name = "tokio" 1959 - version = "1.25.0" 1960 source = "registry+https://github.com/rust-lang/crates.io-index" 1961 - checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af" 1962 dependencies = [ 1963 "autocfg", 1964 "bytes", 1965 "libc", 1966 - "memchr", 1967 "mio", 1968 "num_cpus", 1969 "pin-project-lite", 1970 "socket2", 1971 - "windows-sys 0.42.0", 1972 ] 1973 1974 [[package]] 1975 name = "tokio-rustls" 1976 - version = "0.23.4" 1977 source = "registry+https://github.com/rust-lang/crates.io-index" 1978 - checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 1979 dependencies = [ 1980 "rustls", 1981 "tokio", 1982 - "webpki", 1983 ] 1984 1985 [[package]] 1986 name = "tokio-util" 1987 - version = "0.7.6" 1988 source = "registry+https://github.com/rust-lang/crates.io-index" 1989 - checksum = "bc6a3b08b64e6dfad376fa2432c7b1f01522e37a623c3050bc95db2d3ff21583" 1990 dependencies = [ 1991 "bytes", 1992 "futures-core", ··· 2015 2016 [[package]] 2017 name = "tracing-core" 2018 - version = "0.1.30" 2019 source = "registry+https://github.com/rust-lang/crates.io-index" 2020 - checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 2021 dependencies = [ 2022 "once_cell", 2023 ] ··· 2036 2037 [[package]] 2038 name = "ucd-trie" 2039 - version = "0.1.5" 2040 source = "registry+https://github.com/rust-lang/crates.io-index" 2041 - checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 2042 2043 [[package]] 2044 name = "unicode-bidi" 2045 - version = "0.3.10" 2046 source = "registry+https://github.com/rust-lang/crates.io-index" 2047 - checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" 2048 2049 [[package]] 2050 name = "unicode-ident" 2051 - version = "1.0.6" 2052 source = "registry+https://github.com/rust-lang/crates.io-index" 2053 - checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 2054 2055 [[package]] 2056 name = "unicode-normalization" ··· 2068 checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 2069 2070 [[package]] 2071 - name = "unicode-width" 2072 - version = "0.1.10" 2073 - source = "registry+https://github.com/rust-lang/crates.io-index" 2074 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 2075 - 2076 - [[package]] 2077 name = "unindent" 2078 version = "0.1.11" 2079 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2081 2082 [[package]] 2083 name = "unsafe-libyaml" 2084 - version = "0.2.5" 2085 source = "registry+https://github.com/rust-lang/crates.io-index" 2086 - checksum = "bc7ed8ba44ca06be78ea1ad2c3682a43349126c8818054231ee6f4748012aed2" 2087 2088 [[package]] 2089 name = "untrusted" ··· 2093 2094 [[package]] 2095 name = "url" 2096 - version = "2.3.1" 2097 source = "registry+https://github.com/rust-lang/crates.io-index" 2098 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 2099 dependencies = [ 2100 "form_urlencoded", 2101 "idna", ··· 2103 ] 2104 2105 [[package]] 2106 name = "version_check" 2107 version = "0.9.4" 2108 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2110 2111 [[package]] 2112 name = "walkdir" 2113 - version = "2.3.2" 2114 source = "registry+https://github.com/rust-lang/crates.io-index" 2115 - checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 2116 dependencies = [ 2117 "same-file", 2118 - "winapi", 2119 "winapi-util", 2120 ] 2121 2122 [[package]] 2123 name = "want" 2124 - version = "0.3.0" 2125 source = "registry+https://github.com/rust-lang/crates.io-index" 2126 - checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 2127 dependencies = [ 2128 - "log", 2129 "try-lock", 2130 ] 2131 ··· 2137 2138 [[package]] 2139 name = "wasm-bindgen" 2140 - version = "0.2.84" 2141 source = "registry+https://github.com/rust-lang/crates.io-index" 2142 - checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 2143 dependencies = [ 2144 "cfg-if", 2145 "serde", ··· 2149 2150 [[package]] 2151 name = "wasm-bindgen-backend" 2152 - version = "0.2.84" 2153 source = "registry+https://github.com/rust-lang/crates.io-index" 2154 - checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 2155 dependencies = [ 2156 "bumpalo", 2157 "log", 2158 "once_cell", 2159 "proc-macro2", 2160 "quote", 2161 - "syn", 2162 "wasm-bindgen-shared", 2163 ] 2164 2165 [[package]] 2166 name = "wasm-bindgen-futures" 2167 - version = "0.4.34" 2168 source = "registry+https://github.com/rust-lang/crates.io-index" 2169 - checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 2170 dependencies = [ 2171 "cfg-if", 2172 "js-sys", ··· 2176 2177 [[package]] 2178 name = "wasm-bindgen-macro" 2179 - version = "0.2.84" 2180 source = "registry+https://github.com/rust-lang/crates.io-index" 2181 - checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 2182 dependencies = [ 2183 "quote", 2184 "wasm-bindgen-macro-support", ··· 2186 2187 [[package]] 2188 name = "wasm-bindgen-macro-support" 2189 - version = "0.2.84" 2190 source = "registry+https://github.com/rust-lang/crates.io-index" 2191 - checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 2192 dependencies = [ 2193 "proc-macro2", 2194 "quote", 2195 - "syn", 2196 "wasm-bindgen-backend", 2197 "wasm-bindgen-shared", 2198 ] 2199 2200 [[package]] 2201 name = "wasm-bindgen-shared" 2202 - version = "0.2.84" 2203 source = "registry+https://github.com/rust-lang/crates.io-index" 2204 - checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 2205 2206 [[package]] 2207 name = "web-sys" 2208 - version = "0.3.61" 2209 source = "registry+https://github.com/rust-lang/crates.io-index" 2210 - checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 2211 dependencies = [ 2212 "js-sys", 2213 "wasm-bindgen", ··· 2265 2266 [[package]] 2267 name = "windows-sys" 2268 - version = "0.42.0" 2269 source = "registry+https://github.com/rust-lang/crates.io-index" 2270 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 2271 dependencies = [ 2272 - "windows_aarch64_gnullvm", 2273 - "windows_aarch64_msvc", 2274 - "windows_i686_gnu", 2275 - "windows_i686_msvc", 2276 - "windows_x86_64_gnu", 2277 - "windows_x86_64_gnullvm", 2278 - "windows_x86_64_msvc", 2279 ] 2280 2281 [[package]] 2282 name = "windows-sys" 2283 - version = "0.45.0" 2284 source = "registry+https://github.com/rust-lang/crates.io-index" 2285 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2286 dependencies = [ 2287 - "windows-targets", 2288 ] 2289 2290 [[package]] 2291 name = "windows-targets" 2292 - version = "0.42.1" 2293 source = "registry+https://github.com/rust-lang/crates.io-index" 2294 - checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 2295 dependencies = [ 2296 - "windows_aarch64_gnullvm", 2297 - "windows_aarch64_msvc", 2298 - "windows_i686_gnu", 2299 - "windows_i686_msvc", 2300 - "windows_x86_64_gnu", 2301 - "windows_x86_64_gnullvm", 2302 - "windows_x86_64_msvc", 2303 ] 2304 2305 [[package]] 2306 name = "windows_aarch64_gnullvm" 2307 - version = "0.42.1" 2308 source = "registry+https://github.com/rust-lang/crates.io-index" 2309 - checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 2310 2311 [[package]] 2312 name = "windows_aarch64_msvc" 2313 - version = "0.42.1" 2314 source = "registry+https://github.com/rust-lang/crates.io-index" 2315 - checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 2316 2317 [[package]] 2318 name = "windows_i686_gnu" 2319 - version = "0.42.1" 2320 source = "registry+https://github.com/rust-lang/crates.io-index" 2321 - checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 2322 2323 [[package]] 2324 name = "windows_i686_msvc" 2325 - version = "0.42.1" 2326 source = "registry+https://github.com/rust-lang/crates.io-index" 2327 - checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 2328 2329 [[package]] 2330 name = "windows_x86_64_gnu" 2331 - version = "0.42.1" 2332 source = "registry+https://github.com/rust-lang/crates.io-index" 2333 - checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 2334 2335 [[package]] 2336 name = "windows_x86_64_gnullvm" 2337 - version = "0.42.1" 2338 source = "registry+https://github.com/rust-lang/crates.io-index" 2339 - checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 2340 2341 [[package]] 2342 name = "windows_x86_64_msvc" 2343 - version = "0.42.1" 2344 source = "registry+https://github.com/rust-lang/crates.io-index" 2345 - checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 2346 2347 [[package]] 2348 name = "winreg"
··· 3 version = 3 4 5 [[package]] 6 + name = "addr2line" 7 + version = "0.20.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 15 name = "adler" 16 version = "1.0.2" 17 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 19 20 [[package]] 21 name = "aho-corasick" 22 + version = "1.0.2" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 25 dependencies = [ 26 "memchr", 27 ] 28 29 [[package]] 30 + name = "anes" 31 + version = "0.1.6" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 34 + 35 + [[package]] 36 + name = "anstream" 37 + version = "0.3.2" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 40 + dependencies = [ 41 + "anstyle", 42 + "anstyle-parse", 43 + "anstyle-query", 44 + "anstyle-wincon", 45 + "colorchoice", 46 + "is-terminal", 47 + "utf8parse", 48 + ] 49 + 50 + [[package]] 51 + name = "anstyle" 52 + version = "1.0.1" 53 + source = "registry+https://github.com/rust-lang/crates.io-index" 54 + checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd" 55 + 56 + [[package]] 57 + name = "anstyle-parse" 58 + version = "0.2.1" 59 + source = "registry+https://github.com/rust-lang/crates.io-index" 60 + checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" 61 + dependencies = [ 62 + "utf8parse", 63 + ] 64 + 65 + [[package]] 66 + name = "anstyle-query" 67 + version = "1.0.0" 68 + source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 70 + dependencies = [ 71 + "windows-sys 0.48.0", 72 + ] 73 + 74 + [[package]] 75 + name = "anstyle-wincon" 76 + version = "1.0.1" 77 source = "registry+https://github.com/rust-lang/crates.io-index" 78 + checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 79 dependencies = [ 80 + "anstyle", 81 + "windows-sys 0.48.0", 82 ] 83 84 [[package]] ··· 89 90 [[package]] 91 name = "autocorrect" 92 + version = "2.8.4" 93 dependencies = [ 94 + "autocorrect-derive 0.3.0", 95 + "criterion", 96 "diff", 97 "ignore", 98 + "indoc", 99 "lazy_static", 100 "owo-colors", 101 "pest", 102 "pest_derive", 103 + "pretty_assertions", 104 "regex", 105 "serde", 106 "serde_json", ··· 110 111 [[package]] 112 name = "autocorrect" 113 + version = "2.8.4" 114 + source = "registry+https://github.com/rust-lang/crates.io-index" 115 + checksum = "7747f9e20a908aa4ef73f8333d4892c197a8cce1648bd0f3c7a83ec6559f6cde" 116 dependencies = [ 117 + "autocorrect-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 118 "diff", 119 "ignore", 120 "lazy_static", 121 "owo-colors", 122 "pest", 123 "pest_derive", 124 "regex", 125 "serde", 126 "serde_json", ··· 130 131 [[package]] 132 name = "autocorrect-cli" 133 + version = "2.8.4" 134 dependencies = [ 135 + "autocorrect 2.8.4", 136 + "clap", 137 "ignore", 138 "lazy_static", 139 "log", ··· 143 "self_update", 144 "sudo", 145 "threadpool", 146 + "tokio", 147 "walkdir", 148 ] 149 150 [[package]] 151 name = "autocorrect-derive" 152 + version = "0.3.0" 153 dependencies = [ 154 + "quote", 155 + "syn 1.0.109", 156 ] 157 158 [[package]] 159 name = "autocorrect-derive" 160 version = "0.3.0" 161 + source = "registry+https://github.com/rust-lang/crates.io-index" 162 + checksum = "b80889323facc446add06be71b9c4c000acd083b12563d9c914b86424bf2f17a" 163 dependencies = [ 164 "quote", 165 + "syn 1.0.109", 166 ] 167 168 [[package]] 169 name = "autocorrect-java" 170 + version = "2.8.4" 171 dependencies = [ 172 + "autocorrect 2.8.4", 173 "jni", 174 ] 175 176 [[package]] 177 name = "autocorrect-node" 178 + version = "2.8.4" 179 dependencies = [ 180 + "autocorrect 2.8.4", 181 + "autocorrect-cli", 182 "napi", 183 "napi-build", 184 "napi-derive", ··· 186 187 [[package]] 188 name = "autocorrect-py" 189 + version = "2.8.4" 190 dependencies = [ 191 + "autocorrect 2.8.4", 192 "pyo3", 193 ] 194 195 [[package]] 196 name = "autocorrect-rb" 197 + version = "2.8.4" 198 dependencies = [ 199 + "autocorrect 2.8.4 (registry+https://github.com/rust-lang/crates.io-index)", 200 "magnus", 201 ] 202 203 [[package]] 204 name = "autocorrect-wasm" 205 + version = "2.8.4" 206 dependencies = [ 207 + "autocorrect 2.8.4", 208 "serde", 209 "serde_json", 210 "wasm-bindgen", 211 ] 212 213 [[package]] 214 + name = "backtrace" 215 + version = "0.3.68" 216 + source = "registry+https://github.com/rust-lang/crates.io-index" 217 + checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" 218 + dependencies = [ 219 + "addr2line", 220 + "cc", 221 + "cfg-if", 222 + "libc", 223 + "miniz_oxide", 224 + "object", 225 + "rustc-demangle", 226 + ] 227 + 228 + [[package]] 229 name = "base64" 230 + version = "0.21.2" 231 source = "registry+https://github.com/rust-lang/crates.io-index" 232 + checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 233 234 [[package]] 235 name = "bindgen" 236 + version = "0.66.1" 237 source = "registry+https://github.com/rust-lang/crates.io-index" 238 + checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7" 239 dependencies = [ 240 + "bitflags 2.3.3", 241 "cexpr", 242 "clang-sys", 243 "lazy_static", ··· 248 "regex", 249 "rustc-hash", 250 "shlex", 251 + "syn 2.0.28", 252 ] 253 254 [[package]] ··· 258 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 259 260 [[package]] 261 + name = "bitflags" 262 + version = "2.3.3" 263 source = "registry+https://github.com/rust-lang/crates.io-index" 264 + checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" 265 266 [[package]] 267 + name = "block-buffer" 268 + version = "0.10.4" 269 source = "registry+https://github.com/rust-lang/crates.io-index" 270 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 271 dependencies = [ 272 + "generic-array", 273 ] 274 275 [[package]] 276 name = "bstr" 277 + version = "1.6.0" 278 source = "registry+https://github.com/rust-lang/crates.io-index" 279 + checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" 280 dependencies = [ 281 "memchr", 282 "serde", ··· 284 285 [[package]] 286 name = "bumpalo" 287 + version = "3.13.0" 288 source = "registry+https://github.com/rust-lang/crates.io-index" 289 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 290 291 [[package]] 292 name = "bytes" ··· 302 303 [[package]] 304 name = "cc" 305 + version = "1.0.81" 306 source = "registry+https://github.com/rust-lang/crates.io-index" 307 + checksum = "6c6b2562119bf28c3439f7f02db99faf0aa1a8cdfe5772a2ee155d32227239f0" 308 + dependencies = [ 309 + "libc", 310 + ] 311 312 [[package]] 313 name = "cesu8" ··· 331 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 332 333 [[package]] 334 + name = "ciborium" 335 + version = "0.2.1" 336 + source = "registry+https://github.com/rust-lang/crates.io-index" 337 + checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 338 + dependencies = [ 339 + "ciborium-io", 340 + "ciborium-ll", 341 + "serde", 342 + ] 343 + 344 + [[package]] 345 + name = "ciborium-io" 346 + version = "0.2.1" 347 + source = "registry+https://github.com/rust-lang/crates.io-index" 348 + checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 349 + 350 + [[package]] 351 + name = "ciborium-ll" 352 + version = "0.2.1" 353 + source = "registry+https://github.com/rust-lang/crates.io-index" 354 + checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 355 + dependencies = [ 356 + "ciborium-io", 357 + "half", 358 + ] 359 + 360 + [[package]] 361 name = "clang-sys" 362 + version = "1.6.1" 363 source = "registry+https://github.com/rust-lang/crates.io-index" 364 + checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" 365 dependencies = [ 366 "glob", 367 "libc", ··· 370 371 [[package]] 372 name = "clap" 373 + version = "4.3.19" 374 source = "registry+https://github.com/rust-lang/crates.io-index" 375 + checksum = "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d" 376 dependencies = [ 377 + "clap_builder", 378 + "clap_derive", 379 + "once_cell", 380 ] 381 382 [[package]] 383 + name = "clap_builder" 384 + version = "4.3.19" 385 source = "registry+https://github.com/rust-lang/crates.io-index" 386 + checksum = "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1" 387 dependencies = [ 388 + "anstream", 389 + "anstyle", 390 "clap_lex", 391 "strsim", 392 ] 393 394 [[package]] 395 name = "clap_derive" 396 + version = "4.3.12" 397 source = "registry+https://github.com/rust-lang/crates.io-index" 398 + checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050" 399 dependencies = [ 400 "heck", 401 "proc-macro2", 402 "quote", 403 + "syn 2.0.28", 404 ] 405 406 [[package]] 407 name = "clap_lex" 408 + version = "0.5.0" 409 source = "registry+https://github.com/rust-lang/crates.io-index" 410 + checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 411 + 412 + [[package]] 413 + name = "colorchoice" 414 + version = "1.0.0" 415 + source = "registry+https://github.com/rust-lang/crates.io-index" 416 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 417 418 [[package]] 419 name = "combine" ··· 427 428 [[package]] 429 name = "console" 430 + version = "0.15.7" 431 source = "registry+https://github.com/rust-lang/crates.io-index" 432 + checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 433 dependencies = [ 434 "encode_unicode", 435 "lazy_static", 436 "libc", 437 + "windows-sys 0.45.0", 438 ] 439 440 [[package]] ··· 448 449 [[package]] 450 name = "cpufeatures" 451 + version = "0.2.9" 452 source = "registry+https://github.com/rust-lang/crates.io-index" 453 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 454 dependencies = [ 455 "libc", 456 ] ··· 466 467 [[package]] 468 name = "criterion" 469 + version = "0.5.1" 470 source = "registry+https://github.com/rust-lang/crates.io-index" 471 + checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 472 dependencies = [ 473 + "anes", 474 "cast", 475 + "ciborium", 476 + "clap", 477 "criterion-plot", 478 + "is-terminal", 479 "itertools", 480 "num-traits", 481 + "once_cell", 482 "oorandom", 483 "plotters", 484 "rayon", 485 "regex", 486 "serde", 487 "serde_derive", 488 "serde_json", 489 "tinytemplate", ··· 492 493 [[package]] 494 name = "criterion-plot" 495 + version = "0.5.0" 496 source = "registry+https://github.com/rust-lang/crates.io-index" 497 + checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 498 dependencies = [ 499 "cast", 500 "itertools", ··· 502 503 [[package]] 504 name = "crossbeam-channel" 505 + version = "0.5.8" 506 source = "registry+https://github.com/rust-lang/crates.io-index" 507 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 508 dependencies = [ 509 "cfg-if", 510 "crossbeam-utils", ··· 512 513 [[package]] 514 name = "crossbeam-deque" 515 + version = "0.8.3" 516 source = "registry+https://github.com/rust-lang/crates.io-index" 517 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 518 dependencies = [ 519 "cfg-if", 520 "crossbeam-epoch", ··· 523 524 [[package]] 525 name = "crossbeam-epoch" 526 + version = "0.9.15" 527 source = "registry+https://github.com/rust-lang/crates.io-index" 528 + checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 529 dependencies = [ 530 "autocfg", 531 "cfg-if", 532 "crossbeam-utils", 533 + "memoffset 0.9.0", 534 "scopeguard", 535 ] 536 537 [[package]] 538 name = "crossbeam-utils" 539 + version = "0.8.16" 540 source = "registry+https://github.com/rust-lang/crates.io-index" 541 + checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 542 dependencies = [ 543 "cfg-if", 544 ] ··· 554 ] 555 556 [[package]] 557 name = "ctor" 558 + version = "0.2.4" 559 source = "registry+https://github.com/rust-lang/crates.io-index" 560 + checksum = "1f34ba9a9bcb8645379e9de8cb3ecfcf4d1c85ba66d90deb3259206fa5aa193b" 561 dependencies = [ 562 "quote", 563 + "syn 2.0.28", 564 ] 565 566 [[package]] ··· 571 572 [[package]] 573 name = "digest" 574 + version = "0.10.7" 575 source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 577 dependencies = [ 578 "block-buffer", 579 "crypto-common", ··· 581 582 [[package]] 583 name = "either" 584 + version = "1.9.0" 585 source = "registry+https://github.com/rust-lang/crates.io-index" 586 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 587 588 [[package]] 589 name = "encode_unicode" ··· 601 ] 602 603 [[package]] 604 + name = "equivalent" 605 + version = "1.0.1" 606 + source = "registry+https://github.com/rust-lang/crates.io-index" 607 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 608 + 609 + [[package]] 610 name = "errno" 611 + version = "0.3.2" 612 source = "registry+https://github.com/rust-lang/crates.io-index" 613 + checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 614 dependencies = [ 615 "errno-dragonfly", 616 "libc", 617 + "windows-sys 0.48.0", 618 ] 619 620 [[package]] ··· 629 630 [[package]] 631 name = "fastrand" 632 + version = "2.0.0" 633 source = "registry+https://github.com/rust-lang/crates.io-index" 634 + checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 635 636 [[package]] 637 name = "filetime" 638 + version = "0.2.22" 639 source = "registry+https://github.com/rust-lang/crates.io-index" 640 + checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 641 dependencies = [ 642 "cfg-if", 643 "libc", 644 "redox_syscall", 645 + "windows-sys 0.48.0", 646 ] 647 648 [[package]] 649 name = "flate2" 650 + version = "1.0.26" 651 source = "registry+https://github.com/rust-lang/crates.io-index" 652 + checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 653 dependencies = [ 654 "crc32fast", 655 "miniz_oxide", ··· 663 664 [[package]] 665 name = "form_urlencoded" 666 + version = "1.2.0" 667 source = "registry+https://github.com/rust-lang/crates.io-index" 668 + checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 669 dependencies = [ 670 "percent-encoding", 671 ] 672 673 [[package]] 674 name = "futures-channel" 675 + version = "0.3.28" 676 source = "registry+https://github.com/rust-lang/crates.io-index" 677 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 678 dependencies = [ 679 "futures-core", 680 ] 681 682 [[package]] 683 name = "futures-core" 684 + version = "0.3.28" 685 source = "registry+https://github.com/rust-lang/crates.io-index" 686 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 687 688 [[package]] 689 name = "futures-io" 690 + version = "0.3.28" 691 + source = "registry+https://github.com/rust-lang/crates.io-index" 692 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 693 + 694 + [[package]] 695 + name = "futures-macro" 696 + version = "0.3.28" 697 source = "registry+https://github.com/rust-lang/crates.io-index" 698 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 699 + dependencies = [ 700 + "proc-macro2", 701 + "quote", 702 + "syn 2.0.28", 703 + ] 704 705 [[package]] 706 name = "futures-sink" 707 + version = "0.3.28" 708 source = "registry+https://github.com/rust-lang/crates.io-index" 709 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 710 711 [[package]] 712 name = "futures-task" 713 + version = "0.3.28" 714 source = "registry+https://github.com/rust-lang/crates.io-index" 715 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 716 717 [[package]] 718 name = "futures-util" 719 + version = "0.3.28" 720 source = "registry+https://github.com/rust-lang/crates.io-index" 721 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 722 dependencies = [ 723 "futures-core", 724 "futures-io", 725 + "futures-macro", 726 "futures-task", 727 "memchr", 728 "pin-project-lite", ··· 732 733 [[package]] 734 name = "generic-array" 735 + version = "0.14.7" 736 source = "registry+https://github.com/rust-lang/crates.io-index" 737 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 738 dependencies = [ 739 "typenum", 740 "version_check", 741 ] 742 743 [[package]] 744 + name = "gimli" 745 + version = "0.27.3" 746 + source = "registry+https://github.com/rust-lang/crates.io-index" 747 + checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 748 + 749 + [[package]] 750 name = "glob" 751 version = "0.3.1" 752 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 754 755 [[package]] 756 name = "globset" 757 + version = "0.4.13" 758 source = "registry+https://github.com/rust-lang/crates.io-index" 759 + checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" 760 dependencies = [ 761 "aho-corasick", 762 + "bstr", 763 "fnv", 764 "log", 765 "regex", ··· 767 768 [[package]] 769 name = "h2" 770 + version = "0.3.20" 771 source = "registry+https://github.com/rust-lang/crates.io-index" 772 + checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" 773 dependencies = [ 774 "bytes", 775 "fnv", ··· 777 "futures-sink", 778 "futures-util", 779 "http", 780 + "indexmap 1.9.3", 781 "slab", 782 "tokio", 783 "tokio-util", ··· 797 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 798 799 [[package]] 800 + name = "hashbrown" 801 + version = "0.14.0" 802 source = "registry+https://github.com/rust-lang/crates.io-index" 803 + checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 804 805 [[package]] 806 + name = "heck" 807 + version = "0.4.1" 808 source = "registry+https://github.com/rust-lang/crates.io-index" 809 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 810 811 [[package]] 812 name = "hermit-abi" 813 + version = "0.3.2" 814 source = "registry+https://github.com/rust-lang/crates.io-index" 815 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 816 817 [[package]] 818 name = "http" 819 + version = "0.2.9" 820 source = "registry+https://github.com/rust-lang/crates.io-index" 821 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 822 dependencies = [ 823 "bytes", 824 "fnv", 825 + "itoa", 826 ] 827 828 [[package]] ··· 850 851 [[package]] 852 name = "hyper" 853 + version = "0.14.27" 854 source = "registry+https://github.com/rust-lang/crates.io-index" 855 + checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 856 dependencies = [ 857 "bytes", 858 "futures-channel", ··· 863 "http-body", 864 "httparse", 865 "httpdate", 866 + "itoa", 867 "pin-project-lite", 868 "socket2", 869 "tokio", ··· 874 875 [[package]] 876 name = "hyper-rustls" 877 + version = "0.24.1" 878 source = "registry+https://github.com/rust-lang/crates.io-index" 879 + checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" 880 dependencies = [ 881 + "futures-util", 882 "http", 883 "hyper", 884 "rustls", ··· 888 889 [[package]] 890 name = "idna" 891 + version = "0.4.0" 892 source = "registry+https://github.com/rust-lang/crates.io-index" 893 + checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 894 dependencies = [ 895 "unicode-bidi", 896 "unicode-normalization", ··· 915 916 [[package]] 917 name = "indexmap" 918 + version = "1.9.3" 919 source = "registry+https://github.com/rust-lang/crates.io-index" 920 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 921 dependencies = [ 922 "autocfg", 923 + "hashbrown 0.12.3", 924 + ] 925 + 926 + [[package]] 927 + name = "indexmap" 928 + version = "2.0.0" 929 + source = "registry+https://github.com/rust-lang/crates.io-index" 930 + checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 931 + dependencies = [ 932 + "equivalent", 933 + "hashbrown 0.14.0", 934 ] 935 936 [[package]] ··· 952 checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" 953 954 [[package]] 955 name = "ipnet" 956 + version = "2.8.0" 957 source = "registry+https://github.com/rust-lang/crates.io-index" 958 + checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 959 960 [[package]] 961 name = "is-terminal" 962 + version = "0.4.9" 963 source = "registry+https://github.com/rust-lang/crates.io-index" 964 + checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 965 dependencies = [ 966 + "hermit-abi", 967 "rustix", 968 + "windows-sys 0.48.0", 969 ] 970 971 [[package]] ··· 979 980 [[package]] 981 name = "itoa" 982 + version = "1.0.9" 983 source = "registry+https://github.com/rust-lang/crates.io-index" 984 + checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 985 986 [[package]] 987 name = "jni" ··· 1005 1006 [[package]] 1007 name = "js-sys" 1008 + version = "0.3.64" 1009 source = "registry+https://github.com/rust-lang/crates.io-index" 1010 + checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 1011 dependencies = [ 1012 "wasm-bindgen", 1013 ] ··· 1026 1027 [[package]] 1028 name = "libc" 1029 + version = "0.2.147" 1030 source = "registry+https://github.com/rust-lang/crates.io-index" 1031 + checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 1032 1033 [[package]] 1034 name = "libloading" ··· 1042 1043 [[package]] 1044 name = "linux-raw-sys" 1045 + version = "0.4.5" 1046 source = "registry+https://github.com/rust-lang/crates.io-index" 1047 + checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 1048 1049 [[package]] 1050 name = "lock_api" 1051 + version = "0.4.10" 1052 source = "registry+https://github.com/rust-lang/crates.io-index" 1053 + checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 1054 dependencies = [ 1055 "autocfg", 1056 "scopeguard", ··· 1058 1059 [[package]] 1060 name = "log" 1061 + version = "0.4.19" 1062 source = "registry+https://github.com/rust-lang/crates.io-index" 1063 + checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 1064 1065 [[package]] 1066 name = "magnus" ··· 1081 dependencies = [ 1082 "proc-macro2", 1083 "quote", 1084 + "syn 1.0.109", 1085 ] 1086 1087 [[package]] ··· 1101 1102 [[package]] 1103 name = "memoffset" 1104 + version = "0.9.0" 1105 source = "registry+https://github.com/rust-lang/crates.io-index" 1106 + checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1107 dependencies = [ 1108 "autocfg", 1109 ] 1110 1111 [[package]] 1112 name = "mime" 1113 + version = "0.3.17" 1114 source = "registry+https://github.com/rust-lang/crates.io-index" 1115 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1116 1117 [[package]] 1118 name = "minimal-lexical" ··· 1122 1123 [[package]] 1124 name = "miniz_oxide" 1125 + version = "0.7.1" 1126 source = "registry+https://github.com/rust-lang/crates.io-index" 1127 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1128 dependencies = [ 1129 "adler", 1130 ] 1131 1132 [[package]] 1133 name = "mio" 1134 + version = "0.8.8" 1135 source = "registry+https://github.com/rust-lang/crates.io-index" 1136 + checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1137 dependencies = [ 1138 "libc", 1139 "wasi", 1140 + "windows-sys 0.48.0", 1141 ] 1142 1143 [[package]] 1144 name = "napi" 1145 + version = "2.13.2" 1146 source = "registry+https://github.com/rust-lang/crates.io-index" 1147 + checksum = "0ede2d12cd6fce44da537a4be1f5510c73be2506c2e32dfaaafd1f36968f3a0e" 1148 dependencies = [ 1149 + "bitflags 2.3.3", 1150 "ctor", 1151 + "napi-derive", 1152 "napi-sys", 1153 "once_cell", 1154 + "tokio", 1155 ] 1156 1157 [[package]] ··· 1162 1163 [[package]] 1164 name = "napi-derive" 1165 + version = "2.13.0" 1166 source = "registry+https://github.com/rust-lang/crates.io-index" 1167 + checksum = "da1c6a8fa84d549aa8708fcd062372bf8ec6e849de39016ab921067d21bde367" 1168 dependencies = [ 1169 + "cfg-if", 1170 "convert_case", 1171 "napi-derive-backend", 1172 "proc-macro2", 1173 "quote", 1174 + "syn 1.0.109", 1175 ] 1176 1177 [[package]] 1178 name = "napi-derive-backend" 1179 + version = "1.0.52" 1180 source = "registry+https://github.com/rust-lang/crates.io-index" 1181 + checksum = "20bbc7c69168d06a848f925ec5f0e0997f98e8c8d4f2cc30157f0da51c009e17" 1182 dependencies = [ 1183 "convert_case", 1184 "once_cell", 1185 "proc-macro2", 1186 "quote", 1187 "regex", 1188 + "semver", 1189 + "syn 1.0.109", 1190 ] 1191 1192 [[package]] ··· 1210 1211 [[package]] 1212 name = "num-traits" 1213 + version = "0.2.16" 1214 source = "registry+https://github.com/rust-lang/crates.io-index" 1215 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 1216 dependencies = [ 1217 "autocfg", 1218 ] 1219 1220 [[package]] 1221 name = "num_cpus" 1222 + version = "1.16.0" 1223 source = "registry+https://github.com/rust-lang/crates.io-index" 1224 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1225 dependencies = [ 1226 + "hermit-abi", 1227 "libc", 1228 ] 1229 ··· 1234 checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 1235 1236 [[package]] 1237 + name = "object" 1238 + version = "0.31.1" 1239 + source = "registry+https://github.com/rust-lang/crates.io-index" 1240 + checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" 1241 + dependencies = [ 1242 + "memchr", 1243 + ] 1244 + 1245 + [[package]] 1246 name = "once_cell" 1247 + version = "1.18.0" 1248 source = "registry+https://github.com/rust-lang/crates.io-index" 1249 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1250 1251 [[package]] 1252 name = "oorandom" ··· 1255 checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 1256 1257 [[package]] 1258 name = "owo-colors" 1259 version = "3.5.0" 1260 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1272 1273 [[package]] 1274 name = "parking_lot_core" 1275 + version = "0.9.8" 1276 source = "registry+https://github.com/rust-lang/crates.io-index" 1277 + checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 1278 dependencies = [ 1279 "cfg-if", 1280 "libc", 1281 "redox_syscall", 1282 "smallvec", 1283 + "windows-targets 0.48.1", 1284 ] 1285 1286 [[package]] ··· 1291 1292 [[package]] 1293 name = "percent-encoding" 1294 + version = "2.3.0" 1295 source = "registry+https://github.com/rust-lang/crates.io-index" 1296 + checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 1297 1298 [[package]] 1299 name = "pest" 1300 + version = "2.7.2" 1301 source = "registry+https://github.com/rust-lang/crates.io-index" 1302 + checksum = "1acb4a4365a13f749a93f1a094a7805e5cfa0955373a9de860d962eaa3a5fe5a" 1303 dependencies = [ 1304 "thiserror", 1305 "ucd-trie", ··· 1307 1308 [[package]] 1309 name = "pest_derive" 1310 + version = "2.7.2" 1311 source = "registry+https://github.com/rust-lang/crates.io-index" 1312 + checksum = "666d00490d4ac815001da55838c500eafb0320019bbaa44444137c48b443a853" 1313 dependencies = [ 1314 "pest", 1315 "pest_generator", ··· 1317 1318 [[package]] 1319 name = "pest_generator" 1320 + version = "2.7.2" 1321 source = "registry+https://github.com/rust-lang/crates.io-index" 1322 + checksum = "68ca01446f50dbda87c1786af8770d535423fa8a53aec03b8f4e3d7eb10e0929" 1323 dependencies = [ 1324 "pest", 1325 "pest_meta", 1326 "proc-macro2", 1327 "quote", 1328 + "syn 2.0.28", 1329 ] 1330 1331 [[package]] 1332 name = "pest_meta" 1333 + version = "2.7.2" 1334 source = "registry+https://github.com/rust-lang/crates.io-index" 1335 + checksum = "56af0a30af74d0445c0bf6d9d051c979b516a1a5af790d251daee76005420a48" 1336 dependencies = [ 1337 "once_cell", 1338 "pest", ··· 1341 1342 [[package]] 1343 name = "pin-project-lite" 1344 + version = "0.2.10" 1345 source = "registry+https://github.com/rust-lang/crates.io-index" 1346 + checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 1347 1348 [[package]] 1349 name = "pin-utils" ··· 1353 1354 [[package]] 1355 name = "plotters" 1356 + version = "0.3.5" 1357 source = "registry+https://github.com/rust-lang/crates.io-index" 1358 + checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" 1359 dependencies = [ 1360 "num-traits", 1361 "plotters-backend", ··· 1366 1367 [[package]] 1368 name = "plotters-backend" 1369 + version = "0.3.5" 1370 source = "registry+https://github.com/rust-lang/crates.io-index" 1371 + checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" 1372 1373 [[package]] 1374 name = "plotters-svg" 1375 + version = "0.3.5" 1376 source = "registry+https://github.com/rust-lang/crates.io-index" 1377 + checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" 1378 dependencies = [ 1379 "plotters-backend", 1380 ] 1381 1382 [[package]] 1383 name = "pretty_assertions" 1384 + version = "1.4.0" 1385 source = "registry+https://github.com/rust-lang/crates.io-index" 1386 + checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" 1387 dependencies = [ 1388 "diff", 1389 "yansi", 1390 ] 1391 1392 [[package]] 1393 name = "proc-macro2" 1394 + version = "1.0.66" 1395 source = "registry+https://github.com/rust-lang/crates.io-index" 1396 + checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 1397 dependencies = [ 1398 "unicode-ident", 1399 ] ··· 1444 "proc-macro2", 1445 "pyo3-macros-backend", 1446 "quote", 1447 + "syn 1.0.109", 1448 ] 1449 1450 [[package]] ··· 1455 dependencies = [ 1456 "proc-macro2", 1457 "quote", 1458 + "syn 1.0.109", 1459 ] 1460 1461 [[package]] ··· 1469 1470 [[package]] 1471 name = "quote" 1472 + version = "1.0.32" 1473 source = "registry+https://github.com/rust-lang/crates.io-index" 1474 + checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" 1475 dependencies = [ 1476 "proc-macro2", 1477 ] 1478 1479 [[package]] 1480 name = "rayon" 1481 + version = "1.7.0" 1482 source = "registry+https://github.com/rust-lang/crates.io-index" 1483 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 1484 dependencies = [ 1485 "either", 1486 "rayon-core", ··· 1488 1489 [[package]] 1490 name = "rayon-core" 1491 + version = "1.11.0" 1492 source = "registry+https://github.com/rust-lang/crates.io-index" 1493 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 1494 dependencies = [ 1495 "crossbeam-channel", 1496 "crossbeam-deque", ··· 1500 1501 [[package]] 1502 name = "rb-sys" 1503 + version = "0.9.81" 1504 source = "registry+https://github.com/rust-lang/crates.io-index" 1505 + checksum = "a57240b308b155b09dce81e32829966a99f52d1088b45957e4283e526c5317a1" 1506 dependencies = [ 1507 "rb-sys-build", 1508 ] 1509 1510 [[package]] 1511 name = "rb-sys-build" 1512 + version = "0.9.81" 1513 source = "registry+https://github.com/rust-lang/crates.io-index" 1514 + checksum = "f24ce877a4c5d07f06f6aa6fec3ac95e4b357b9f73b0f5445d8cbb7266d410e8" 1515 dependencies = [ 1516 "bindgen", 1517 + "lazy_static", 1518 + "proc-macro2", 1519 + "quote", 1520 "regex", 1521 "shell-words", 1522 + "syn 2.0.28", 1523 ] 1524 1525 [[package]] ··· 1530 1531 [[package]] 1532 name = "redox_syscall" 1533 + version = "0.3.5" 1534 source = "registry+https://github.com/rust-lang/crates.io-index" 1535 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1536 dependencies = [ 1537 + "bitflags 1.3.2", 1538 ] 1539 1540 [[package]] 1541 name = "regex" 1542 + version = "1.9.2" 1543 source = "registry+https://github.com/rust-lang/crates.io-index" 1544 + checksum = "5bc4f4d719ae1d92dc7e5ef3865f93af6e28c7af68ebd7a68a367932b88c1e2c" 1545 dependencies = [ 1546 "aho-corasick", 1547 "memchr", 1548 + "regex-automata", 1549 "regex-syntax", 1550 ] 1551 1552 [[package]] 1553 name = "regex-automata" 1554 + version = "0.3.5" 1555 source = "registry+https://github.com/rust-lang/crates.io-index" 1556 + checksum = "26bb2039bb570943fc65037c16640a64fba171d3760138656fdfe62b3bd24239" 1557 + dependencies = [ 1558 + "aho-corasick", 1559 + "memchr", 1560 + "regex-syntax", 1561 + ] 1562 1563 [[package]] 1564 name = "regex-syntax" 1565 + version = "0.7.4" 1566 source = "registry+https://github.com/rust-lang/crates.io-index" 1567 + checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 1568 1569 [[package]] 1570 name = "reqwest" 1571 + version = "0.11.18" 1572 source = "registry+https://github.com/rust-lang/crates.io-index" 1573 + checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 1574 dependencies = [ 1575 "base64", 1576 "bytes", ··· 1621 ] 1622 1623 [[package]] 1624 + name = "rustc-demangle" 1625 + version = "0.1.23" 1626 + source = "registry+https://github.com/rust-lang/crates.io-index" 1627 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1628 + 1629 + [[package]] 1630 name = "rustc-hash" 1631 version = "1.1.0" 1632 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1634 1635 [[package]] 1636 name = "rustix" 1637 + version = "0.38.7" 1638 source = "registry+https://github.com/rust-lang/crates.io-index" 1639 + checksum = "172891ebdceb05aa0005f533a6cbfca599ddd7d966f6f5d4d9b2e70478e70399" 1640 dependencies = [ 1641 + "bitflags 2.3.3", 1642 "errno", 1643 "libc", 1644 "linux-raw-sys", 1645 + "windows-sys 0.48.0", 1646 ] 1647 1648 [[package]] 1649 name = "rustls" 1650 + version = "0.21.6" 1651 source = "registry+https://github.com/rust-lang/crates.io-index" 1652 + checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb" 1653 dependencies = [ 1654 "log", 1655 "ring", 1656 + "rustls-webpki", 1657 "sct", 1658 ] 1659 1660 [[package]] 1661 name = "rustls-pemfile" 1662 + version = "1.0.3" 1663 source = "registry+https://github.com/rust-lang/crates.io-index" 1664 + checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 1665 dependencies = [ 1666 "base64", 1667 ] 1668 1669 [[package]] 1670 + name = "rustls-webpki" 1671 + version = "0.101.2" 1672 + source = "registry+https://github.com/rust-lang/crates.io-index" 1673 + checksum = "513722fd73ad80a71f72b61009ea1b584bcfa1483ca93949c8f290298837fa59" 1674 + dependencies = [ 1675 + "ring", 1676 + "untrusted", 1677 + ] 1678 + 1679 + [[package]] 1680 name = "ryu" 1681 + version = "1.0.15" 1682 source = "registry+https://github.com/rust-lang/crates.io-index" 1683 + checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 1684 1685 [[package]] 1686 name = "same-file" ··· 1693 1694 [[package]] 1695 name = "scopeguard" 1696 + version = "1.2.0" 1697 source = "registry+https://github.com/rust-lang/crates.io-index" 1698 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1699 1700 [[package]] 1701 name = "sct" ··· 1729 1730 [[package]] 1731 name = "semver" 1732 + version = "1.0.18" 1733 source = "registry+https://github.com/rust-lang/crates.io-index" 1734 + checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 1735 1736 [[package]] 1737 name = "serde" 1738 + version = "1.0.181" 1739 source = "registry+https://github.com/rust-lang/crates.io-index" 1740 + checksum = "6d3e73c93c3240c0bda063c239298e633114c69a888c3e37ca8bb33f343e9890" 1741 dependencies = [ 1742 "serde_derive", 1743 ] 1744 1745 [[package]] 1746 name = "serde_derive" 1747 + version = "1.0.181" 1748 source = "registry+https://github.com/rust-lang/crates.io-index" 1749 + checksum = "be02f6cb0cd3a5ec20bbcfbcbd749f57daddb1a0882dc2e46a6c236c90b977ed" 1750 dependencies = [ 1751 "proc-macro2", 1752 "quote", 1753 + "syn 2.0.28", 1754 ] 1755 1756 [[package]] 1757 name = "serde_json" 1758 + version = "1.0.104" 1759 source = "registry+https://github.com/rust-lang/crates.io-index" 1760 + checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" 1761 dependencies = [ 1762 + "itoa", 1763 "ryu", 1764 "serde", 1765 ] 1766 1767 [[package]] 1768 name = "serde_repr" 1769 + version = "0.1.16" 1770 source = "registry+https://github.com/rust-lang/crates.io-index" 1771 + checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 1772 dependencies = [ 1773 "proc-macro2", 1774 "quote", 1775 + "syn 2.0.28", 1776 ] 1777 1778 [[package]] ··· 1782 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1783 dependencies = [ 1784 "form_urlencoded", 1785 + "itoa", 1786 "ryu", 1787 "serde", 1788 ] 1789 1790 [[package]] 1791 name = "serde_yaml" 1792 + version = "0.9.25" 1793 source = "registry+https://github.com/rust-lang/crates.io-index" 1794 + checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574" 1795 dependencies = [ 1796 + "indexmap 2.0.0", 1797 + "itoa", 1798 "ryu", 1799 "serde", 1800 "unsafe-libyaml", ··· 1802 1803 [[package]] 1804 name = "sha2" 1805 + version = "0.10.7" 1806 source = "registry+https://github.com/rust-lang/crates.io-index" 1807 + checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 1808 dependencies = [ 1809 "cfg-if", 1810 "cpufeatures", ··· 1825 1826 [[package]] 1827 name = "slab" 1828 + version = "0.4.8" 1829 source = "registry+https://github.com/rust-lang/crates.io-index" 1830 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 1831 dependencies = [ 1832 "autocfg", 1833 ] 1834 1835 [[package]] 1836 name = "smallvec" 1837 + version = "1.11.0" 1838 source = "registry+https://github.com/rust-lang/crates.io-index" 1839 + checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 1840 1841 [[package]] 1842 name = "socket2" 1843 + version = "0.4.9" 1844 source = "registry+https://github.com/rust-lang/crates.io-index" 1845 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 1846 dependencies = [ 1847 "libc", 1848 "winapi", ··· 1872 1873 [[package]] 1874 name = "syn" 1875 + version = "1.0.109" 1876 + source = "registry+https://github.com/rust-lang/crates.io-index" 1877 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1878 + dependencies = [ 1879 + "proc-macro2", 1880 + "quote", 1881 + "unicode-ident", 1882 + ] 1883 + 1884 + [[package]] 1885 + name = "syn" 1886 + version = "2.0.28" 1887 source = "registry+https://github.com/rust-lang/crates.io-index" 1888 + checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567" 1889 dependencies = [ 1890 "proc-macro2", 1891 "quote", ··· 1894 1895 [[package]] 1896 name = "tar" 1897 + version = "0.4.39" 1898 source = "registry+https://github.com/rust-lang/crates.io-index" 1899 + checksum = "ec96d2ffad078296368d46ff1cb309be1c23c513b4ab0e22a45de0185275ac96" 1900 dependencies = [ 1901 "filetime", 1902 "libc", ··· 1905 1906 [[package]] 1907 name = "target-lexicon" 1908 + version = "0.12.11" 1909 source = "registry+https://github.com/rust-lang/crates.io-index" 1910 + checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" 1911 1912 [[package]] 1913 name = "tempfile" 1914 + version = "3.7.0" 1915 source = "registry+https://github.com/rust-lang/crates.io-index" 1916 + checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998" 1917 dependencies = [ 1918 "cfg-if", 1919 "fastrand", 1920 "redox_syscall", 1921 + "rustix", 1922 + "windows-sys 0.48.0", 1923 ] 1924 1925 [[package]] 1926 name = "thiserror" 1927 + version = "1.0.44" 1928 source = "registry+https://github.com/rust-lang/crates.io-index" 1929 + checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" 1930 dependencies = [ 1931 "thiserror-impl", 1932 ] 1933 1934 [[package]] 1935 name = "thiserror-impl" 1936 + version = "1.0.44" 1937 source = "registry+https://github.com/rust-lang/crates.io-index" 1938 + checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" 1939 dependencies = [ 1940 "proc-macro2", 1941 "quote", 1942 + "syn 2.0.28", 1943 ] 1944 1945 [[package]] 1946 name = "thread_local" 1947 + version = "1.1.7" 1948 source = "registry+https://github.com/rust-lang/crates.io-index" 1949 + checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 1950 dependencies = [ 1951 "cfg-if", 1952 "once_cell", ··· 1988 1989 [[package]] 1990 name = "tokio" 1991 + version = "1.29.1" 1992 source = "registry+https://github.com/rust-lang/crates.io-index" 1993 + checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" 1994 dependencies = [ 1995 "autocfg", 1996 + "backtrace", 1997 "bytes", 1998 "libc", 1999 "mio", 2000 "num_cpus", 2001 "pin-project-lite", 2002 "socket2", 2003 + "tokio-macros", 2004 + "windows-sys 0.48.0", 2005 + ] 2006 + 2007 + [[package]] 2008 + name = "tokio-macros" 2009 + version = "2.1.0" 2010 + source = "registry+https://github.com/rust-lang/crates.io-index" 2011 + checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 2012 + dependencies = [ 2013 + "proc-macro2", 2014 + "quote", 2015 + "syn 2.0.28", 2016 ] 2017 2018 [[package]] 2019 name = "tokio-rustls" 2020 + version = "0.24.1" 2021 source = "registry+https://github.com/rust-lang/crates.io-index" 2022 + checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 2023 dependencies = [ 2024 "rustls", 2025 "tokio", 2026 ] 2027 2028 [[package]] 2029 name = "tokio-util" 2030 + version = "0.7.8" 2031 source = "registry+https://github.com/rust-lang/crates.io-index" 2032 + checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 2033 dependencies = [ 2034 "bytes", 2035 "futures-core", ··· 2058 2059 [[package]] 2060 name = "tracing-core" 2061 + version = "0.1.31" 2062 source = "registry+https://github.com/rust-lang/crates.io-index" 2063 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 2064 dependencies = [ 2065 "once_cell", 2066 ] ··· 2079 2080 [[package]] 2081 name = "ucd-trie" 2082 + version = "0.1.6" 2083 source = "registry+https://github.com/rust-lang/crates.io-index" 2084 + checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 2085 2086 [[package]] 2087 name = "unicode-bidi" 2088 + version = "0.3.13" 2089 source = "registry+https://github.com/rust-lang/crates.io-index" 2090 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 2091 2092 [[package]] 2093 name = "unicode-ident" 2094 + version = "1.0.11" 2095 source = "registry+https://github.com/rust-lang/crates.io-index" 2096 + checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 2097 2098 [[package]] 2099 name = "unicode-normalization" ··· 2111 checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 2112 2113 [[package]] 2114 name = "unindent" 2115 version = "0.1.11" 2116 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2118 2119 [[package]] 2120 name = "unsafe-libyaml" 2121 + version = "0.2.9" 2122 source = "registry+https://github.com/rust-lang/crates.io-index" 2123 + checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" 2124 2125 [[package]] 2126 name = "untrusted" ··· 2130 2131 [[package]] 2132 name = "url" 2133 + version = "2.4.0" 2134 source = "registry+https://github.com/rust-lang/crates.io-index" 2135 + checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 2136 dependencies = [ 2137 "form_urlencoded", 2138 "idna", ··· 2140 ] 2141 2142 [[package]] 2143 + name = "utf8parse" 2144 + version = "0.2.1" 2145 + source = "registry+https://github.com/rust-lang/crates.io-index" 2146 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 2147 + 2148 + [[package]] 2149 name = "version_check" 2150 version = "0.9.4" 2151 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2153 2154 [[package]] 2155 name = "walkdir" 2156 + version = "2.3.3" 2157 source = "registry+https://github.com/rust-lang/crates.io-index" 2158 + checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 2159 dependencies = [ 2160 "same-file", 2161 "winapi-util", 2162 ] 2163 2164 [[package]] 2165 name = "want" 2166 + version = "0.3.1" 2167 source = "registry+https://github.com/rust-lang/crates.io-index" 2168 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2169 dependencies = [ 2170 "try-lock", 2171 ] 2172 ··· 2178 2179 [[package]] 2180 name = "wasm-bindgen" 2181 + version = "0.2.87" 2182 source = "registry+https://github.com/rust-lang/crates.io-index" 2183 + checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 2184 dependencies = [ 2185 "cfg-if", 2186 "serde", ··· 2190 2191 [[package]] 2192 name = "wasm-bindgen-backend" 2193 + version = "0.2.87" 2194 source = "registry+https://github.com/rust-lang/crates.io-index" 2195 + checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 2196 dependencies = [ 2197 "bumpalo", 2198 "log", 2199 "once_cell", 2200 "proc-macro2", 2201 "quote", 2202 + "syn 2.0.28", 2203 "wasm-bindgen-shared", 2204 ] 2205 2206 [[package]] 2207 name = "wasm-bindgen-futures" 2208 + version = "0.4.37" 2209 source = "registry+https://github.com/rust-lang/crates.io-index" 2210 + checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 2211 dependencies = [ 2212 "cfg-if", 2213 "js-sys", ··· 2217 2218 [[package]] 2219 name = "wasm-bindgen-macro" 2220 + version = "0.2.87" 2221 source = "registry+https://github.com/rust-lang/crates.io-index" 2222 + checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 2223 dependencies = [ 2224 "quote", 2225 "wasm-bindgen-macro-support", ··· 2227 2228 [[package]] 2229 name = "wasm-bindgen-macro-support" 2230 + version = "0.2.87" 2231 source = "registry+https://github.com/rust-lang/crates.io-index" 2232 + checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 2233 dependencies = [ 2234 "proc-macro2", 2235 "quote", 2236 + "syn 2.0.28", 2237 "wasm-bindgen-backend", 2238 "wasm-bindgen-shared", 2239 ] 2240 2241 [[package]] 2242 name = "wasm-bindgen-shared" 2243 + version = "0.2.87" 2244 source = "registry+https://github.com/rust-lang/crates.io-index" 2245 + checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 2246 2247 [[package]] 2248 name = "web-sys" 2249 + version = "0.3.64" 2250 source = "registry+https://github.com/rust-lang/crates.io-index" 2251 + checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 2252 dependencies = [ 2253 "js-sys", 2254 "wasm-bindgen", ··· 2306 2307 [[package]] 2308 name = "windows-sys" 2309 + version = "0.45.0" 2310 source = "registry+https://github.com/rust-lang/crates.io-index" 2311 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2312 dependencies = [ 2313 + "windows-targets 0.42.2", 2314 ] 2315 2316 [[package]] 2317 name = "windows-sys" 2318 + version = "0.48.0" 2319 source = "registry+https://github.com/rust-lang/crates.io-index" 2320 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2321 dependencies = [ 2322 + "windows-targets 0.48.1", 2323 ] 2324 2325 [[package]] 2326 name = "windows-targets" 2327 + version = "0.42.2" 2328 source = "registry+https://github.com/rust-lang/crates.io-index" 2329 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 2330 dependencies = [ 2331 + "windows_aarch64_gnullvm 0.42.2", 2332 + "windows_aarch64_msvc 0.42.2", 2333 + "windows_i686_gnu 0.42.2", 2334 + "windows_i686_msvc 0.42.2", 2335 + "windows_x86_64_gnu 0.42.2", 2336 + "windows_x86_64_gnullvm 0.42.2", 2337 + "windows_x86_64_msvc 0.42.2", 2338 ] 2339 2340 [[package]] 2341 + name = "windows-targets" 2342 + version = "0.48.1" 2343 + source = "registry+https://github.com/rust-lang/crates.io-index" 2344 + checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 2345 + dependencies = [ 2346 + "windows_aarch64_gnullvm 0.48.0", 2347 + "windows_aarch64_msvc 0.48.0", 2348 + "windows_i686_gnu 0.48.0", 2349 + "windows_i686_msvc 0.48.0", 2350 + "windows_x86_64_gnu 0.48.0", 2351 + "windows_x86_64_gnullvm 0.48.0", 2352 + "windows_x86_64_msvc 0.48.0", 2353 + ] 2354 + 2355 + [[package]] 2356 + name = "windows_aarch64_gnullvm" 2357 + version = "0.42.2" 2358 + source = "registry+https://github.com/rust-lang/crates.io-index" 2359 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 2360 + 2361 + [[package]] 2362 name = "windows_aarch64_gnullvm" 2363 + version = "0.48.0" 2364 + source = "registry+https://github.com/rust-lang/crates.io-index" 2365 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 2366 + 2367 + [[package]] 2368 + name = "windows_aarch64_msvc" 2369 + version = "0.42.2" 2370 source = "registry+https://github.com/rust-lang/crates.io-index" 2371 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 2372 2373 [[package]] 2374 name = "windows_aarch64_msvc" 2375 + version = "0.48.0" 2376 source = "registry+https://github.com/rust-lang/crates.io-index" 2377 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2378 2379 [[package]] 2380 name = "windows_i686_gnu" 2381 + version = "0.42.2" 2382 source = "registry+https://github.com/rust-lang/crates.io-index" 2383 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 2384 + 2385 + [[package]] 2386 + name = "windows_i686_gnu" 2387 + version = "0.48.0" 2388 + source = "registry+https://github.com/rust-lang/crates.io-index" 2389 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2390 2391 [[package]] 2392 name = "windows_i686_msvc" 2393 + version = "0.42.2" 2394 source = "registry+https://github.com/rust-lang/crates.io-index" 2395 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 2396 + 2397 + [[package]] 2398 + name = "windows_i686_msvc" 2399 + version = "0.48.0" 2400 + source = "registry+https://github.com/rust-lang/crates.io-index" 2401 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2402 2403 [[package]] 2404 name = "windows_x86_64_gnu" 2405 + version = "0.42.2" 2406 + source = "registry+https://github.com/rust-lang/crates.io-index" 2407 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 2408 + 2409 + [[package]] 2410 + name = "windows_x86_64_gnu" 2411 + version = "0.48.0" 2412 + source = "registry+https://github.com/rust-lang/crates.io-index" 2413 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2414 + 2415 + [[package]] 2416 + name = "windows_x86_64_gnullvm" 2417 + version = "0.42.2" 2418 source = "registry+https://github.com/rust-lang/crates.io-index" 2419 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 2420 2421 [[package]] 2422 name = "windows_x86_64_gnullvm" 2423 + version = "0.48.0" 2424 source = "registry+https://github.com/rust-lang/crates.io-index" 2425 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2426 2427 [[package]] 2428 name = "windows_x86_64_msvc" 2429 + version = "0.42.2" 2430 source = "registry+https://github.com/rust-lang/crates.io-index" 2431 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 2432 + 2433 + [[package]] 2434 + name = "windows_x86_64_msvc" 2435 + version = "0.48.0" 2436 + source = "registry+https://github.com/rust-lang/crates.io-index" 2437 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2438 2439 [[package]] 2440 name = "winreg"
+2 -2
pkgs/tools/text/autocorrect/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "autocorrect"; 5 - version = "2.6.2"; 6 7 src = fetchFromGitHub { 8 owner = "huacnlee"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-QHQQrUQCfDAlAtDcfrAkOwRhQkO+HcwnPfJ5+jb1290="; 12 }; 13 14 cargoLock = {
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "autocorrect"; 5 + version = "2.8.4"; 6 7 src = fetchFromGitHub { 8 owner = "huacnlee"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-njgngDowyRfOY9+BnBSNWow5GkdGhRu2YPXkA6n23qE="; 12 }; 13 14 cargoLock = {
+5 -2
pkgs/tools/text/d2/default.nix
··· 25 ldflags = [ 26 "-s" 27 "-w" 28 - "-X oss.terrastruct.com/d2/lib/version.Version=${version}" 29 ]; 30 31 nativeBuildInputs = [ installShellFiles ]; ··· 41 export TESTDATA_ACCEPT=1 42 ''; 43 44 - passthru.tests.version = testers.testVersion { package = d2; }; 45 46 meta = with lib; { 47 description = "A modern diagram scripting language that turns text to diagrams";
··· 25 ldflags = [ 26 "-s" 27 "-w" 28 + "-X oss.terrastruct.com/d2/lib/version.Version=v${version}" 29 ]; 30 31 nativeBuildInputs = [ installShellFiles ]; ··· 41 export TESTDATA_ACCEPT=1 42 ''; 43 44 + passthru.tests.version = testers.testVersion { 45 + package = d2; 46 + version = "v${version}"; 47 + }; 48 49 meta = with lib; { 50 description = "A modern diagram scripting language that turns text to diagrams";
+3 -3
pkgs/tools/text/diffsitter/default.nix
··· 32 in 33 rustPlatform.buildRustPackage rec { 34 pname = "diffsitter"; 35 - version = "0.8.0"; 36 37 src = fetchFromGitHub { 38 owner = "afnanenayet"; 39 repo = pname; 40 rev = "v${version}"; 41 - sha256 = "sha256-KrmK0RJdNJcZGM/7IxDP5IbJMTY3v6MkHA1SQW+U3hw="; 42 fetchSubmodules = false; 43 }; 44 45 - cargoHash = "sha256-3HALOoa3QDl9KE2UHxszzDw/VuDLLmjccXQvBBrfrHA="; 46 47 buildNoDefaultFeatures = true; 48 buildFeatures = [
··· 32 in 33 rustPlatform.buildRustPackage rec { 34 pname = "diffsitter"; 35 + version = "0.8.1"; 36 37 src = fetchFromGitHub { 38 owner = "afnanenayet"; 39 repo = pname; 40 rev = "v${version}"; 41 + sha256 = "sha256-8nKZ8zcZSSF7Qd36kA9IQjio+TIhlQWRgMqKrsdInj4="; 42 fetchSubmodules = false; 43 }; 44 45 + cargoHash = "sha256-LEBAMb9tROpjrWEfucw+2ZaytnoyJE477IH3MyeUGEA="; 46 47 buildNoDefaultFeatures = true; 48 buildFeatures = [
+2 -2
pkgs/tools/virtualization/govc/default.nix
··· 2 3 buildGoModule rec { 4 pname = "govc"; 5 - version = "0.30.6"; 6 7 subPackages = [ "govc" ]; 8 ··· 10 rev = "v${version}"; 11 owner = "vmware"; 12 repo = "govmomi"; 13 - sha256 = "sha256-gk8V7/4N8+KDy0lRu04xwbrnXQWxZQTkvdb2ZI3AfM8="; 14 }; 15 16 vendorHash = "sha256-iLmQdjN0EXJuwC3NT5FKdHhJ4KvNAvnsBGAO9bypdqg=";
··· 2 3 buildGoModule rec { 4 pname = "govc"; 5 + version = "0.30.7"; 6 7 subPackages = [ "govc" ]; 8 ··· 10 rev = "v${version}"; 11 owner = "vmware"; 12 repo = "govmomi"; 13 + sha256 = "sha256-8cBS92O5AEeXQyLwOTAWbjvj1oPJiHLBooRgl5pt0Mk="; 14 }; 15 16 vendorHash = "sha256-iLmQdjN0EXJuwC3NT5FKdHhJ4KvNAvnsBGAO9bypdqg=";
+2 -2
pkgs/tools/virtualization/jumppad/default.nix
··· 2 3 buildGoModule rec { 4 pname = "jumppad"; 5 - version = "0.5.31"; 6 7 src = fetchFromGitHub { 8 owner = "jumppad-labs"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-2BdhJ11Mwd2w8VZfGcGJc6GuaKrVKjCqXLDggiiwyt0="; 12 }; 13 vendorHash = "sha256-LneL4SzvcThfqqWdKpAU3mFAW1FVRTU9/T3l+yKBSME="; 14
··· 2 3 buildGoModule rec { 4 pname = "jumppad"; 5 + version = "0.5.35"; 6 7 src = fetchFromGitHub { 8 owner = "jumppad-labs"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-ZqP1m2Fbm9bn9uxJ7Ll4Vqa+STIrxX0jALGZJmOyAT8="; 12 }; 13 vendorHash = "sha256-LneL4SzvcThfqqWdKpAU3mFAW1FVRTU9/T3l+yKBSME="; 14
+10 -17
pkgs/top-level/all-packages.nix
··· 1786 1787 headset-charge-indicator = callPackage ../tools/audio/headset-charge-indicator { }; 1788 1789 hexdiff = callPackage ../tools/misc/hexdiff { }; 1790 1791 httm = darwin.apple_sdk_11_0.callPackage ../tools/filesystems/httm { }; ··· 3710 3711 github-copilot-intellij-agent = callPackage ../development/tools/github-copilot-intellij-agent { }; 3712 3713 - github-desktop = callPackage ../applications/version-management/github-desktop { 3714 - openssl = openssl_1_1; 3715 - curl = curl.override { openssl = openssl_1_1; }; 3716 - }; 3717 3718 github-to-sqlite = with python3Packages; toPythonApplication github-to-sqlite; 3719 ··· 15422 inherit (darwin.apple_sdk.frameworks) CoreServices; 15423 }; 15424 15425 - inherit (callPackages ../development/compilers/crystal { 15426 - llvmPackages = llvmPackages_13; 15427 - stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; 15428 - }) 15429 crystal_1_2 15430 - crystal_1_7; 15431 - 15432 - inherit (callPackages ../development/compilers/crystal { 15433 - llvmPackages = llvmPackages_15; 15434 - stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; 15435 - }) 15436 crystal_1_9 15437 - crystal_1_8 15438 crystal; 15439 15440 crystal2nix = callPackage ../development/compilers/crystal2nix { }; ··· 16610 blaze = callPackage ../development/libraries/blaze { }; 16611 16612 pony-corral = callPackage ../development/compilers/ponyc/pony-corral.nix { }; 16613 16614 qbe = callPackage ../development/compilers/qbe { }; 16615 ··· 38038 38039 stone-kingdoms = callPackage ../games/stone-kingdoms { }; 38040 38041 - streamlit = python3Packages.callPackage ../applications/science/machine-learning/streamlit { }; 38042 - 38043 stt = callPackage ../tools/audio/stt { }; 38044 38045 stuntrally = callPackage ../games/stuntrally ··· 38773 nengo-gui = callPackage ../applications/science/machine-learning/nengo-gui { }; 38774 38775 sc2-headless = callPackage ../applications/science/machine-learning/sc2-headless { }; 38776 38777 uarmsolver = callPackage ../applications/science/machine-learning/uarmsolver { }; 38778
··· 1786 1787 headset-charge-indicator = callPackage ../tools/audio/headset-charge-indicator { }; 1788 1789 + heh = callPackage ../applications/editors/heh { }; 1790 + 1791 hexdiff = callPackage ../tools/misc/hexdiff { }; 1792 1793 httm = darwin.apple_sdk_11_0.callPackage ../tools/filesystems/httm { }; ··· 3712 3713 github-copilot-intellij-agent = callPackage ../development/tools/github-copilot-intellij-agent { }; 3714 3715 + github-desktop = callPackage ../applications/version-management/github-desktop { }; 3716 3717 github-to-sqlite = with python3Packages; toPythonApplication github-to-sqlite; 3718 ··· 15421 inherit (darwin.apple_sdk.frameworks) CoreServices; 15422 }; 15423 15424 + inherit (darwin.apple_sdk_11_0.callPackage ../development/compilers/crystal { }) 15425 crystal_1_2 15426 + crystal_1_7 15427 + crystal_1_8 15428 crystal_1_9 15429 crystal; 15430 15431 crystal2nix = callPackage ../development/compilers/crystal2nix { }; ··· 16601 blaze = callPackage ../development/libraries/blaze { }; 16602 16603 pony-corral = callPackage ../development/compilers/ponyc/pony-corral.nix { }; 16604 + 16605 + prqlc = callPackage ../development/tools/database/prqlc { }; 16606 16607 qbe = callPackage ../development/compilers/qbe { }; 16608 ··· 38031 38032 stone-kingdoms = callPackage ../games/stone-kingdoms { }; 38033 38034 stt = callPackage ../tools/audio/stt { }; 38035 38036 stuntrally = callPackage ../games/stuntrally ··· 38764 nengo-gui = callPackage ../applications/science/machine-learning/nengo-gui { }; 38765 38766 sc2-headless = callPackage ../applications/science/machine-learning/sc2-headless { }; 38767 + 38768 + streamlit = with python3Packages; toPythonApplication streamlit; 38769 38770 uarmsolver = callPackage ../applications/science/machine-learning/uarmsolver { }; 38771
+6
pkgs/top-level/python-packages.nix
··· 4179 4180 georss-wa-dfes-client = callPackage ../development/python-modules/georss-wa-dfes-client { }; 4181 4182 getmac = callPackage ../development/python-modules/getmac { }; 4183 4184 getkey = callPackage ../development/python-modules/getkey { }; ··· 9571 9572 pyrad = callPackage ../development/python-modules/pyrad { }; 9573 9574 pyradios = callPackage ../development/python-modules/pyradios { }; 9575 9576 pyrainbird = callPackage ../development/python-modules/pyrainbird { }; ··· 12169 streaming-form-data = callPackage ../development/python-modules/streaming-form-data { }; 12170 12171 streamlabswater = callPackage ../development/python-modules/streamlabswater { }; 12172 12173 streamz = callPackage ../development/python-modules/streamz { }; 12174
··· 4179 4180 georss-wa-dfes-client = callPackage ../development/python-modules/georss-wa-dfes-client { }; 4181 4182 + getjump = callPackage ../development/python-modules/getjump { }; 4183 + 4184 getmac = callPackage ../development/python-modules/getmac { }; 4185 4186 getkey = callPackage ../development/python-modules/getkey { }; ··· 9573 9574 pyrad = callPackage ../development/python-modules/pyrad { }; 9575 9576 + pyradiomics = callPackage ../development/python-modules/pyradiomics { }; 9577 + 9578 pyradios = callPackage ../development/python-modules/pyradios { }; 9579 9580 pyrainbird = callPackage ../development/python-modules/pyrainbird { }; ··· 12173 streaming-form-data = callPackage ../development/python-modules/streaming-form-data { }; 12174 12175 streamlabswater = callPackage ../development/python-modules/streamlabswater { }; 12176 + 12177 + streamlit = callPackage ../development/python-modules/streamlit { }; 12178 12179 streamz = callPackage ../development/python-modules/streamz { }; 12180