Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 42e44c05 259981b0

+2780 -1868
+1 -1
doc/languages-frameworks/dart.section.md
··· 103 104 flutter.buildFlutterApplication { 105 pname = "firmware-updater"; 106 - version = "unstable-2023-04-30"; 107 108 # To build for the Web, use the targetFlutterPlatform argument. 109 # targetFlutterPlatform = "web";
··· 103 104 flutter.buildFlutterApplication { 105 pname = "firmware-updater"; 106 + version = "0-unstable-2023-04-30"; 107 108 # To build for the Web, use the targetFlutterPlatform argument. 109 # targetFlutterPlatform = "web";
+6
maintainers/maintainer-list.nix
··· 11278 githubId = 7910815; 11279 name = "Alex McGrath"; 11280 }; 11281 lynty = { 11282 email = "ltdong93+nix@gmail.com"; 11283 github = "Lynty";
··· 11278 githubId = 7910815; 11279 name = "Alex McGrath"; 11280 }; 11281 + lychee = { 11282 + email = "itslychee+nixpkgs@protonmail.com"; 11283 + githubId = 82718618; 11284 + github = "itslychee"; 11285 + name = "Lychee"; 11286 + }; 11287 lynty = { 11288 email = "ltdong93+nix@gmail.com"; 11289 github = "Lynty";
+7
nixos/doc/manual/release-notes/rl-2405.section.md
··· 97 98 - `idris2` was updated to v0.7.0. This version introduces breaking changes. Check out the [changelog](https://github.com/idris-lang/Idris2/blob/v0.7.0/CHANGELOG.md#v070) for details. 99 100 - `nitter` requires a `guest_accounts.jsonl` to be provided as a path or loaded into the default location at `/var/lib/nitter/guest_accounts.jsonl`. See [Guest Account Branch Deployment](https://github.com/zedeus/nitter/wiki/Guest-Account-Branch-Deployment) for details. 101 102 - `services.aria2.rpcSecret` has been replaced with `services.aria2.rpcSecretFile`. ··· 138 ''; 139 140 ``` 141 - The `kanata` package has been updated to v1.5.0, which includes [breaking changes](https://github.com/jtroo/kanata/releases/tag/v1.5.0). 142 143 - The `craftos-pc` package has been updated to v2.8, which includes [breaking changes](https://github.com/MCJack123/craftos2/releases/tag/v2.8).
··· 97 98 - `idris2` was updated to v0.7.0. This version introduces breaking changes. Check out the [changelog](https://github.com/idris-lang/Idris2/blob/v0.7.0/CHANGELOG.md#v070) for details. 99 100 + - `neo4j` has been updated to 5, you may want to read the [release notes for Neo4j 5](https://neo4j.com/release-notes/database/neo4j-5/) 101 + 102 + - `services.neo4j.allowUpgrade` was removed and no longer has any effect. Neo4j 5 supports automatic rolling upgrades. 103 + 104 - `nitter` requires a `guest_accounts.jsonl` to be provided as a path or loaded into the default location at `/var/lib/nitter/guest_accounts.jsonl`. See [Guest Account Branch Deployment](https://github.com/zedeus/nitter/wiki/Guest-Account-Branch-Deployment) for details. 105 106 - `services.aria2.rpcSecret` has been replaced with `services.aria2.rpcSecretFile`. ··· 142 ''; 143 144 ``` 145 + 146 + - The package `optparse-bash` is now dropped due to upstream inactivity. Alternatives available in Nixpkgs include [`argc`](https://github.com/sigoden/argc), [`argbash`](https://github.com/matejak/argbash), [`bashly`](https://github.com/DannyBen/bashly) and [`gum`](https://github.com/charmbracelet/gum), to name a few. 147 + 148 - The `kanata` package has been updated to v1.5.0, which includes [breaking changes](https://github.com/jtroo/kanata/releases/tag/v1.5.0). 149 150 - The `craftos-pc` package has been updated to v2.8, which includes [breaking changes](https://github.com/MCJack123/craftos2/releases/tag/v2.8).
+1 -1
nixos/modules/module-list.nix
··· 429 ./services/databases/couchdb.nix 430 ./services/databases/dgraph.nix 431 ./services/databases/dragonflydb.nix 432 ./services/databases/ferretdb.nix 433 ./services/databases/firebird.nix 434 ./services/databases/foundationdb.nix ··· 679 ./services/misc/dwm-status.nix 680 ./services/misc/dysnomia.nix 681 ./services/misc/errbot.nix 682 - ./services/misc/etcd.nix 683 ./services/misc/etebase-server.nix 684 ./services/misc/etesync-dav.nix 685 ./services/misc/evdevremapkeys.nix
··· 429 ./services/databases/couchdb.nix 430 ./services/databases/dgraph.nix 431 ./services/databases/dragonflydb.nix 432 + ./services/databases/etcd.nix 433 ./services/databases/ferretdb.nix 434 ./services/databases/firebird.nix 435 ./services/databases/foundationdb.nix ··· 680 ./services/misc/dwm-status.nix 681 ./services/misc/dysnomia.nix 682 ./services/misc/errbot.nix 683 ./services/misc/etebase-server.nix 684 ./services/misc/etesync-dav.nix 685 ./services/misc/evdevremapkeys.nix
+33 -42
nixos/modules/services/databases/neo4j.nix
··· 35 36 serverConfig = pkgs.writeText "neo4j.conf" '' 37 # General 38 - dbms.allow_upgrade=${boolToString cfg.allowUpgrade} 39 - dbms.default_listen_address=${cfg.defaultListenAddress} 40 - dbms.databases.default_to_read_only=${boolToString cfg.readOnly} 41 ${optionalString (cfg.workerCount > 0) '' 42 dbms.threads.worker_count=${toString cfg.workerCount} 43 ''} 44 45 # Directories (readonly) 46 - dbms.directories.certificates=${cfg.directories.certificates} 47 - dbms.directories.plugins=${cfg.directories.plugins} 48 - dbms.directories.lib=${cfg.package}/share/neo4j/lib 49 ${optionalString (cfg.constrainLoadCsv) '' 50 - dbms.directories.import=${cfg.directories.imports} 51 ''} 52 53 # Directories (read and write) 54 - dbms.directories.data=${cfg.directories.data} 55 - dbms.directories.logs=${cfg.directories.home}/logs 56 - dbms.directories.run=${cfg.directories.home}/run 57 58 # HTTP Connector 59 ${optionalString (cfg.http.enable) '' 60 - dbms.connector.http.enabled=${boolToString cfg.http.enable} 61 - dbms.connector.http.listen_address=${cfg.http.listenAddress} 62 - dbms.connector.http.advertised_address=${cfg.http.listenAddress} 63 ''} 64 65 # HTTPS Connector 66 - dbms.connector.https.enabled=${boolToString cfg.https.enable} 67 - dbms.connector.https.listen_address=${cfg.https.listenAddress} 68 - dbms.connector.https.advertised_address=${cfg.https.listenAddress} 69 70 # BOLT Connector 71 - dbms.connector.bolt.enabled=${boolToString cfg.bolt.enable} 72 - dbms.connector.bolt.listen_address=${cfg.bolt.listenAddress} 73 - dbms.connector.bolt.advertised_address=${cfg.bolt.listenAddress} 74 - dbms.connector.bolt.tls_level=${cfg.bolt.tlsLevel} 75 76 # SSL Policies 77 ${concatStringsSep "\n" sslPolicies} 78 79 # Default retention policy from neo4j.conf 80 - dbms.tx_log.rotation.retention_policy=1 days 81 82 # Default JVM parameters from neo4j.conf 83 - dbms.jvm.additional=-XX:+UseG1GC 84 - dbms.jvm.additional=-XX:-OmitStackTraceInFastThrow 85 - dbms.jvm.additional=-XX:+AlwaysPreTouch 86 - dbms.jvm.additional=-XX:+UnlockExperimentalVMOptions 87 - dbms.jvm.additional=-XX:+TrustFinalNonStaticFields 88 - dbms.jvm.additional=-XX:+DisableExplicitGC 89 - dbms.jvm.additional=-Djdk.tls.ephemeralDHKeySize=2048 90 - dbms.jvm.additional=-Djdk.tls.rejectClientInitiatedRenegotiation=true 91 - dbms.jvm.additional=-Dunsupported.dbms.udc.source=tarball 92 93 - #dbms.memory.heap.initial_size=12000m 94 - #dbms.memory.heap.max_size=12000m 95 - #dbms.memory.pagecache.size=4g 96 - #dbms.tx_state.max_off_heap_memory=8000m 97 98 # Extra Configuration 99 ${cfg.extraServerConfig} ··· 124 default = false; 125 description = lib.mdDoc '' 126 Whether to enable Neo4j Community Edition. 127 - ''; 128 - }; 129 - 130 - allowUpgrade = mkOption { 131 - type = types.bool; 132 - default = false; 133 - description = lib.mdDoc '' 134 - Allow upgrade of Neo4j database files from an older version. 135 ''; 136 }; 137
··· 35 36 serverConfig = pkgs.writeText "neo4j.conf" '' 37 # General 38 + server.default_listen_address=${cfg.defaultListenAddress} 39 + server.databases.default_to_read_only=${boolToString cfg.readOnly} 40 ${optionalString (cfg.workerCount > 0) '' 41 dbms.threads.worker_count=${toString cfg.workerCount} 42 ''} 43 44 # Directories (readonly) 45 + # dbms.directories.certificates=${cfg.directories.certificates} 46 + server.directories.plugins=${cfg.directories.plugins} 47 + server.directories.lib=${cfg.package}/share/neo4j/lib 48 ${optionalString (cfg.constrainLoadCsv) '' 49 + server.directories.import=${cfg.directories.imports} 50 ''} 51 52 # Directories (read and write) 53 + server.directories.data=${cfg.directories.data} 54 + server.directories.logs=${cfg.directories.home}/logs 55 + server.directories.run=${cfg.directories.home}/run 56 57 # HTTP Connector 58 ${optionalString (cfg.http.enable) '' 59 + server.http.enabled=${boolToString cfg.http.enable} 60 + server.http.listen_address=${cfg.http.listenAddress} 61 + server.http.advertised_address=${cfg.http.listenAddress} 62 ''} 63 64 # HTTPS Connector 65 + server.https.enabled=${boolToString cfg.https.enable} 66 + server.https.listen_address=${cfg.https.listenAddress} 67 + server.https.advertised_address=${cfg.https.listenAddress} 68 69 # BOLT Connector 70 + server.bolt.enabled=${boolToString cfg.bolt.enable} 71 + server.bolt.listen_address=${cfg.bolt.listenAddress} 72 + server.bolt.advertised_address=${cfg.bolt.listenAddress} 73 + server.bolt.tls_level=${cfg.bolt.tlsLevel} 74 75 # SSL Policies 76 ${concatStringsSep "\n" sslPolicies} 77 78 # Default retention policy from neo4j.conf 79 + db.tx_log.rotation.retention_policy=1 days 80 81 # Default JVM parameters from neo4j.conf 82 + server.jvm.additional=-XX:+UseG1GC 83 + server.jvm.additional=-XX:-OmitStackTraceInFastThrow 84 + server.jvm.additional=-XX:+AlwaysPreTouch 85 + server.jvm.additional=-XX:+UnlockExperimentalVMOptions 86 + server.jvm.additional=-XX:+TrustFinalNonStaticFields 87 + server.jvm.additional=-XX:+DisableExplicitGC 88 + server.jvm.additional=-Djdk.tls.ephemeralDHKeySize=2048 89 + server.jvm.additional=-Djdk.tls.rejectClientInitiatedRenegotiation=true 90 + server.jvm.additional=-Dunsupported.dbms.udc.source=tarball 91 92 + #server.memory.off_heap.transaction_max_size=12000m 93 + #server.memory.heap.max_size=12000m 94 + #server.memory.pagecache.size=4g 95 + #server.tx_state.max_off_heap_memory=8000m 96 97 # Extra Configuration 98 ${cfg.extraServerConfig} ··· 123 default = false; 124 description = lib.mdDoc '' 125 Whether to enable Neo4j Community Edition. 126 ''; 127 }; 128
+24 -1
nixos/modules/services/misc/etcd.nix nixos/modules/services/databases/etcd.nix
··· 99 type = types.nullOr types.path; 100 }; 101 102 peerCertFile = mkOption { 103 description = lib.mdDoc "Cert file to use for peer to peer communication"; 104 default = cfg.certFile; ··· 160 systemd.services.etcd = { 161 description = "etcd key-value store"; 162 wantedBy = [ "multi-user.target" ]; 163 - after = [ "network.target" ]; 164 165 environment = (filterAttrs (n: v: v != null) { 166 ETCD_NAME = cfg.name; ··· 190 191 serviceConfig = { 192 Type = "notify"; 193 ExecStart = "${cfg.package}/bin/etcd"; 194 User = "etcd"; 195 LimitNOFILE = 40000; ··· 197 }; 198 199 environment.systemPackages = [ cfg.package ]; 200 201 users.users.etcd = { 202 isSystemUser = true;
··· 99 type = types.nullOr types.path; 100 }; 101 102 + openFirewall = mkOption { 103 + type = types.bool; 104 + default = false; 105 + description = lib.mdDoc '' 106 + Open etcd ports in the firewall. 107 + Ports opened: 108 + - 2379/tcp for client requests 109 + - 2380/tcp for peer communication 110 + ''; 111 + }; 112 + 113 peerCertFile = mkOption { 114 description = lib.mdDoc "Cert file to use for peer to peer communication"; 115 default = cfg.certFile; ··· 171 systemd.services.etcd = { 172 description = "etcd key-value store"; 173 wantedBy = [ "multi-user.target" ]; 174 + after = [ "network-online.target" ] 175 + ++ lib.optional config.networking.firewall.enable "firewall.service"; 176 + wants = [ "network-online.target" ] 177 + ++ lib.optional config.networking.firewall.enable "firewall.service"; 178 179 environment = (filterAttrs (n: v: v != null) { 180 ETCD_NAME = cfg.name; ··· 204 205 serviceConfig = { 206 Type = "notify"; 207 + Restart = "always"; 208 + RestartSec = "30s"; 209 ExecStart = "${cfg.package}/bin/etcd"; 210 User = "etcd"; 211 LimitNOFILE = 40000; ··· 213 }; 214 215 environment.systemPackages = [ cfg.package ]; 216 + 217 + networking.firewall = lib.mkIf cfg.openFirewall { 218 + allowedTCPPorts = [ 219 + 2379 # for client requests 220 + 2380 # for peer communication 221 + ]; 222 + }; 223 224 users.users.etcd = { 225 isSystemUser = true;
+2 -2
pkgs/applications/audio/carla/default.nix
··· 26 27 stdenv.mkDerivation (finalAttrs: { 28 pname = "carla"; 29 - version = "2.5.7"; 30 31 src = fetchFromGitHub { 32 owner = "falkTX"; 33 repo = finalAttrs.pname; 34 rev = "v${finalAttrs.version}"; 35 - hash = "sha256-WDwYfDR760Maz3oWNPcPbl8L+0MIRbeqNVGH9Gg4ZYc="; 36 }; 37 38 nativeBuildInputs = [
··· 26 27 stdenv.mkDerivation (finalAttrs: { 28 pname = "carla"; 29 + version = "2.5.8"; 30 31 src = fetchFromGitHub { 32 owner = "falkTX"; 33 repo = finalAttrs.pname; 34 rev = "v${finalAttrs.version}"; 35 + hash = "sha256-H15T/z/IRfgWdqToTzq2eJ7q3n9Kj44IZXsd4uaipuU="; 36 }; 37 38 nativeBuildInputs = [
+2 -2
pkgs/applications/audio/g4music/default.nix
··· 15 }: 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "g4music"; 18 - version = "3.4-1"; 19 20 src = fetchFromGitLab { 21 domain = "gitlab.gnome.org"; 22 owner = "neithern"; 23 repo = "g4music"; 24 rev = "v${finalAttrs.version}"; 25 - hash = "sha256-uklgxhyrnFQSUcttXvYQtm2BybRkdTK1IfaRpOp0sOE="; 26 }; 27 28 nativeBuildInputs = [
··· 15 }: 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "g4music"; 18 + version = "3.5.1"; 19 20 src = fetchFromGitLab { 21 domain = "gitlab.gnome.org"; 22 owner = "neithern"; 23 repo = "g4music"; 24 rev = "v${finalAttrs.version}"; 25 + hash = "sha256-4UM1CspevlDHpuyvSekMM73XyxVqpdUDtJ7im7hnxHY="; 26 }; 27 28 nativeBuildInputs = [
+2 -2
pkgs/applications/audio/gbsplay/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gbsplay"; 5 - version = "0.0.94"; 6 7 src = fetchFromGitHub { 8 owner = "mmitch"; 9 repo = "gbsplay"; 10 rev = version; 11 - sha256 = "VpaXbjotmc/Ref1geiKkBX9UhbPxfAGkFAdKVxP8Uxo="; 12 }; 13 14 configureFlags = [
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gbsplay"; 5 + version = "0.0.95"; 6 7 src = fetchFromGitHub { 8 owner = "mmitch"; 9 repo = "gbsplay"; 10 rev = version; 11 + sha256 = "sha256-s6TGAWwIm2raXk3kA3D0/fg+Hn3O/lerPlxGOryXIBQ="; 12 }; 13 14 configureFlags = [
+2 -2
pkgs/applications/audio/mopidy/iris.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "Mopidy-Iris"; 5 - version = "3.64.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "062x73glhn1x4wgc7zmb9y3cq15d5grgqf5drdpbp6p3cgk4s2vc"; 10 }; 11 12 propagatedBuildInputs = [
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "Mopidy-Iris"; 5 + version = "3.69.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-PEAXnapiyxozijR053I7zQYRYLeDOV719L0QbO2r4r4="; 10 }; 11 12 propagatedBuildInputs = [
+2 -2
pkgs/applications/audio/mopidy/mopify.nix
··· 2 3 pythonPackages.buildPythonApplication rec { 4 pname = "Mopidy-Mopify"; 5 - version = "1.6.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "93ad2b3d38b1450c8f2698bb908b0b077a96b3f64cdd6486519e518132e23a5c"; 10 }; 11 12 propagatedBuildInputs = with pythonPackages; [ mopidy configobj ];
··· 2 3 pythonPackages.buildPythonApplication rec { 4 pname = "Mopidy-Mopify"; 5 + version = "1.7.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-RlCC+39zC+LeA/QDWPHYx5TrEwOgVrnvcH1Xg12qSLE="; 10 }; 11 12 propagatedBuildInputs = with pythonPackages; [ mopidy configobj ];
+2 -2
pkgs/applications/audio/mopidy/notify.nix
··· 2 3 pythonPackages.buildPythonApplication rec { 4 pname = "Mopidy-Notify"; 5 - version = "0.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "sha256-lzZupjlS0kbNvsn18serOoMfu0sRb0nRwpowvOPvt/g="; 10 }; 11 12 propagatedBuildInputs = [
··· 2 3 pythonPackages.buildPythonApplication rec { 4 pname = "Mopidy-Notify"; 5 + version = "0.2.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-8FT4O4k0wEsdHA1vJaOW9UamJ3QLyO47HwL5XcSU3Pc="; 10 }; 11 12 propagatedBuildInputs = [
+2 -2
pkgs/applications/audio/mopidy/youtube.nix
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "mopidy-youtube"; 9 - version = "3.6"; 10 format = "setuptools"; 11 12 src = fetchFromGitHub { 13 owner = "natumbri"; 14 repo = pname; 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-Mp8eCVNGokJRwmYiZYCYRwV1QVDV02Uqfh6fGcPgJss="; 17 }; 18 19 propagatedBuildInputs = with python3.pkgs; [
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "mopidy-youtube"; 9 + version = "3.7"; 10 format = "setuptools"; 11 12 src = fetchFromGitHub { 13 owner = "natumbri"; 14 repo = pname; 15 rev = "refs/tags/v${version}"; 16 + hash = "sha256-iFt7r8Ljymc+grNJiOClTHkZOeo7AcYpcNc8tLMPROk="; 17 }; 18 19 propagatedBuildInputs = with python3.pkgs; [
+2 -2
pkgs/applications/audio/open-stage-control/default.nix
··· 12 13 buildNpmPackage rec { 14 pname = "open-stage-control"; 15 - version = "1.25.6"; 16 17 src = fetchFromGitHub { 18 owner = "jean-emmanuel"; 19 repo = "open-stage-control"; 20 rev = "v${version}"; 21 - hash = "sha256-ZjNnchI8W0Xeuz1DHf3Q0cIL97BFXb3zY/HWQnrqqnk="; 22 }; 23 24 # Remove some Electron stuff from package.json
··· 12 13 buildNpmPackage rec { 14 pname = "open-stage-control"; 15 + version = "1.25.7"; 16 17 src = fetchFromGitHub { 18 owner = "jean-emmanuel"; 19 repo = "open-stage-control"; 20 rev = "v${version}"; 21 + hash = "sha256-BvWr+AhNGh2t4DleKFqgCqijma4CcXOSMoDtSeEUiEc="; 22 }; 23 24 # Remove some Electron stuff from package.json
+2 -2
pkgs/applications/audio/picard/default.nix
··· 20 in 21 pythonPackages.buildPythonApplication rec { 22 pname = "picard"; 23 - version = "2.10"; 24 format = "setuptools"; 25 26 src = fetchFromGitHub { 27 owner = "metabrainz"; 28 repo = "picard"; 29 rev = "refs/tags/release-${version}"; 30 - hash = "sha256-wgIJ813mOSpFzFJESDwNvRSZcX42MTtOyFgSeeRR28g="; 31 }; 32 33 nativeBuildInputs = [
··· 20 in 21 pythonPackages.buildPythonApplication rec { 22 pname = "picard"; 23 + version = "2.11"; 24 format = "setuptools"; 25 26 src = fetchFromGitHub { 27 owner = "metabrainz"; 28 repo = "picard"; 29 rev = "refs/tags/release-${version}"; 30 + hash = "sha256-2RGKHJKJ/QXR6Rehch4r1UtI+frRXa4G+n0bUmCGSu8="; 31 }; 32 33 nativeBuildInputs = [
+2 -2
pkgs/applications/audio/praat/default.nix
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "praat"; 14 - version = "6.4.03"; 15 16 src = fetchFromGitHub { 17 owner = "praat"; 18 repo = "praat"; 19 rev = "v${finalAttrs.version}"; 20 - hash = "sha256-eiZBe/tBX5ax23jsj1AY9O2BBLvEyiDQ6WS1ZtOBQNU="; 21 }; 22 23 nativeBuildInputs = [
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "praat"; 14 + version = "6.4.05"; 15 16 src = fetchFromGitHub { 17 owner = "praat"; 18 repo = "praat"; 19 rev = "v${finalAttrs.version}"; 20 + hash = "sha256-ctCDxE//vH4i22bKYBs14pdmp+1M6K+w7Tm22ZoGOf8="; 21 }; 22 23 nativeBuildInputs = [
+2 -2
pkgs/applications/audio/qjackctl/default.nix
··· 5 }: 6 7 mkDerivation rec { 8 - version = "0.9.12"; 9 pname = "qjackctl"; 10 11 # some dependencies such as killall have to be installed additionally ··· 14 owner = "rncbc"; 15 repo = "qjackctl"; 16 rev = "${pname}_${lib.replaceStrings ["."] ["_"] version}"; 17 - sha256 = "sha256-S8fEg8joFHgk6MKWeSxPyTM8O6Ffx5NG90OabPPDs7s="; 18 }; 19 20 buildInputs = [
··· 5 }: 6 7 mkDerivation rec { 8 + version = "0.9.13"; 9 pname = "qjackctl"; 10 11 # some dependencies such as killall have to be installed additionally ··· 14 owner = "rncbc"; 15 repo = "qjackctl"; 16 rev = "${pname}_${lib.replaceStrings ["."] ["_"] version}"; 17 + sha256 = "sha256-tCABvZzAmDKgOfTylOf2uZsKeib8PgvdQd1niaI8RxM="; 18 }; 19 20 buildInputs = [
+2 -2
pkgs/applications/audio/roomeqwizard/default.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "roomeqwizard"; 17 - version = "5.30.5"; 18 19 src = fetchurl { 20 url = "https://www.roomeqwizard.com/installers/REW_linux_no_jre_${lib.replaceStrings [ "." ] [ "_" ] version}.sh"; 21 - sha256 = "sha256-lxOI6vvPFtC/oYs2cKV0IhRbvaFzK8wBmSXPUwhAsi0="; 22 }; 23 24 dontUnpack = true;
··· 14 15 stdenv.mkDerivation rec { 16 pname = "roomeqwizard"; 17 + version = "5.30.8"; 18 19 src = fetchurl { 20 url = "https://www.roomeqwizard.com/installers/REW_linux_no_jre_${lib.replaceStrings [ "." ] [ "_" ] version}.sh"; 21 + sha256 = "sha256-ZHxMwbT2SoWEIuBJEuuVhU26V4NAbJKqx3lawedIwYo="; 22 }; 23 24 dontUnpack = true;
+2 -2
pkgs/applications/audio/schismtracker/default.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "schismtracker"; 14 - version = "20231029"; 15 16 src = fetchFromGitHub { 17 owner = pname; 18 repo = pname; 19 rev = version; 20 - sha256 = "sha256-ELCV5c79fFX1C4+S9bnDFOx3jAs/R2TERH1Q9fkBGnY="; 21 }; 22 23 configureFlags = [ "--enable-dependency-tracking" ]
··· 11 12 stdenv.mkDerivation rec { 13 pname = "schismtracker"; 14 + version = "20240129"; 15 16 src = fetchFromGitHub { 17 owner = pname; 18 repo = pname; 19 rev = version; 20 + sha256 = "sha256-msi638LQM0LPfUineINRW8l8BcPKIeRBEDtV5L6anGk="; 21 }; 22 23 configureFlags = [ "--enable-dependency-tracking" ]
+3 -3
pkgs/applications/audio/songrec/default.nix
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "songrec"; 15 - version = "0.4.1"; 16 17 src = fetchFromGitHub { 18 owner = "marin-m"; 19 repo = pname; 20 rev = version; 21 - hash = "sha256-QgmeO6dE5d0X7iMjqvDz/i9tKEzGNzTYqZRXRgYepCg="; 22 }; 23 24 - cargoHash = "sha256-K6dkKtrHQVJfFo3yCWFb0zO4fJDunygU7hCnjAi4svc="; 25 26 nativeBuildInputs = [ pkg-config ]; 27
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "songrec"; 15 + version = "0.4.2"; 16 17 src = fetchFromGitHub { 18 owner = "marin-m"; 19 repo = pname; 20 rev = version; 21 + hash = "sha256-S44gtyz6L6uaLm3q75y8S4NJb77Vfy+Sd+J06IroHIM="; 22 }; 23 24 + cargoHash = "sha256-f2xAWh+y0Jw7QVLZBkajMLN3ocCyRsR480ai7+07LM4="; 25 26 nativeBuildInputs = [ pkg-config ]; 27
+1
pkgs/applications/audio/soundkonverter/default.nix
··· 74 wrapProgram $out/bin/soundkonverter --prefix PATH : ${lib.makeBinPath runtimeDeps } 75 ''; 76 meta = { 77 license = lib.licenses.gpl2; 78 maintainers = [ lib.maintainers.schmittlauch ]; 79 description = "Audio file converter, CD ripper and Replay Gain tool";
··· 74 wrapProgram $out/bin/soundkonverter --prefix PATH : ${lib.makeBinPath runtimeDeps } 75 ''; 76 meta = { 77 + homepage = "https://github.com/dfaust/soundkonverter"; 78 license = lib.licenses.gpl2; 79 maintainers = [ lib.maintainers.schmittlauch ]; 80 description = "Audio file converter, CD ripper and Replay Gain tool";
+2 -2
pkgs/applications/blockchains/besu/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "besu"; 5 - version = "23.10.3"; 6 7 src = fetchurl { 8 url = "https://hyperledger.jfrog.io/artifactory/${pname}-binaries/${pname}/${version}/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-c8g0zzLHu+JV19jMfKXR6w34QwuRFJNcjc86Z1sqy8I="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "besu"; 5 + version = "24.1.1"; 6 7 src = fetchurl { 8 url = "https://hyperledger.jfrog.io/artifactory/${pname}-binaries/${pname}/${version}/${pname}-${version}.tar.gz"; 9 + sha256 = "sha256-Sw3dWiW+LfXSMkv/k1eF62Pk46X0IWFOppC6y1ucs0Q="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/applications/blockchains/exodus/default.nix
··· 27 28 stdenv.mkDerivation rec { 29 pname = "exodus"; 30 - version = "23.12.21"; 31 32 src = fetchurl { 33 name = "exodus-linux-x64-${version}.zip"; 34 url = "https://downloads.exodus.com/releases/${pname}-linux-x64-${version}.zip"; 35 curlOptsList = [ "--user-agent" "Mozilla/5.0" ]; 36 - sha256 = "sha256-sQKbwrnq/hSkeF99KA3cIA757IMr1g3xfe7FsgtyvOA="; 37 }; 38 39 nativeBuildInputs = [ unzip ];
··· 27 28 stdenv.mkDerivation rec { 29 pname = "exodus"; 30 + version = "24.1.15"; 31 32 src = fetchurl { 33 name = "exodus-linux-x64-${version}.zip"; 34 url = "https://downloads.exodus.com/releases/${pname}-linux-x64-${version}.zip"; 35 curlOptsList = [ "--user-agent" "Mozilla/5.0" ]; 36 + sha256 = "sha256-KfUlYnonlyI/5sWIM9CS/eo9a4KWeG7Gqe/KkAqSbbY="; 37 }; 38 39 nativeBuildInputs = [ unzip ];
+3 -3
pkgs/applications/editors/amp/default.nix
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "amp"; 6 - version = "0.6.2"; 7 8 src = fetchFromGitHub { 9 owner = "jmacdonald"; 10 repo = pname; 11 rev = version; 12 - sha256 = "0l1vpcfq6jrq2dkrmsa4ghwdpp7c54f46gz3n7nk0i41b12hnigw"; 13 }; 14 15 - cargoSha256 = "19r3xvysragmf02zk2l5s2hjg92gxdygsh52y7za81x443lvjyvq"; 16 17 nativeBuildInputs = [ cmake pkg-config python3 ]; 18 buildInputs = [ openssl xorg.libxcb libgit2 ] ++ lib.optionals stdenv.isDarwin
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "amp"; 6 + version = "0.7.0"; 7 8 src = fetchFromGitHub { 9 owner = "jmacdonald"; 10 repo = pname; 11 rev = version; 12 + sha256 = "sha256-xNadwz2agPbxvgUqrUf1+KsWTmeNh8hJIWcNwTzzM/M="; 13 }; 14 15 + cargoHash = "sha256-4c72l3R9OyxvslKC4RrIu/Ka3grGxIUCY6iF/NHS5X8="; 16 17 nativeBuildInputs = [ cmake pkg-config python3 ]; 18 buildInputs = [ openssl xorg.libxcb libgit2 ] ++ lib.optionals stdenv.isDarwin
+2 -2
pkgs/applications/editors/manuskript/default.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "manuskript"; 5 - version = "0.14.0"; 6 7 format = "other"; 8 ··· 10 repo = pname; 11 owner = "olivierkes"; 12 rev = "refs/tags/${version}"; 13 - hash = "sha256-mWLkah4eO1i5sp79xGLCIkr26TpbXxuVxIJ6gudKGWI="; 14 }; 15 16 nativeBuildInputs = [ wrapQtAppsHook ];
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "manuskript"; 5 + version = "0.16.1"; 6 7 format = "other"; 8 ··· 10 repo = pname; 11 owner = "olivierkes"; 12 rev = "refs/tags/${version}"; 13 + hash = "sha256-/Ryvv5mHdZ3iwMpZjOa62h8D2B00pzknJ70DfjDTPPA="; 14 }; 15 16 nativeBuildInputs = [ wrapQtAppsHook ];
+2 -2
pkgs/applications/editors/nvpy/default.nix
··· 3 let 4 pythonPackages = python3Packages; 5 in pythonPackages.buildPythonApplication rec { 6 - version = "2.2.0"; 7 pname = "nvpy"; 8 9 src = fetchFromGitHub { 10 owner = "cpbotha"; 11 repo = pname; 12 rev = "refs/tags/v${version}"; 13 - sha256 = "sha256-eWvD1k0wbzo0G46/LEOlHl1wLvc4JHLL1fg6wuCHiQY="; 14 }; 15 16
··· 3 let 4 pythonPackages = python3Packages; 5 in pythonPackages.buildPythonApplication rec { 6 + version = "2.3.1"; 7 pname = "nvpy"; 8 9 src = fetchFromGitHub { 10 owner = "cpbotha"; 11 repo = pname; 12 rev = "refs/tags/v${version}"; 13 + sha256 = "sha256-guNdLu/bCk89o5M3gQU7J0W4h7eZdLHM0FG5IAPLE7c="; 14 }; 15 16
+8 -8
pkgs/applications/editors/vscode/vscode.nix
··· 30 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 31 32 sha256 = { 33 - x86_64-linux = "0v702nvv971rwv1grp921ys2d1ig0aq0di7idc1lfikl5ka9b4wa"; 34 - x86_64-darwin = "1cz1817gy8kx3pkfn80jdgsxmvfyrwiwbmq9mp0079s1zzcdy31k"; 35 - aarch64-linux = "0bgdiv7nchwlird53r6q5k8ixljaf682w5ki2kx4bgsii83ih4px"; 36 - aarch64-darwin = "0c5hy5z6k8jjdas7hn29wrmrxwixgrb5jdm1vfdbgqg43sslpgm4"; 37 - armv7l-linux = "0h8y7mwfhf0ygnywwapblxgiskp9xjh3lpnvwhwbir3bs3v37bhh"; 38 }.${system} or throwSystem; 39 in 40 callPackage ./generic.nix rec { 41 # Please backport all compatible updates to the stable release. 42 # This is important for the extension ecosystem. 43 - version = "1.85.2"; 44 pname = "vscode" + lib.optionalString isInsiders "-insiders"; 45 46 # This is used for VS Code - Remote SSH test 47 - rev = "8b3775030ed1a69b13e4f4c628c612102e30a681"; 48 49 executableName = "code" + lib.optionalString isInsiders "-insiders"; 50 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 68 src = fetchurl { 69 name = "vscode-server-${rev}.tar.gz"; 70 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 71 - sha256 = "1gaq9f4jzdzhfxixb9al5f5pgn1w7lpccacvvy19hq89jzixbix0"; 72 }; 73 }; 74
··· 30 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 31 32 sha256 = { 33 + x86_64-linux = "0qykchhd6cplyip4gp5s1fpv664xw2y5z0z7n6zwhwpfrld8piwb"; 34 + x86_64-darwin = "0mris80k62yabaz2avh4q2vjpnqcwa77phx3icdif0c19w185pqw"; 35 + aarch64-linux = "0rbj0l9wdbkxgzy9j9qvx0237g5nx4np0ank4x6jbxhlbs8xdw39"; 36 + aarch64-darwin = "1j1wd1ssyrd6651k7ias22phcb358k6aigdirfzczam303cxr0hw"; 37 + armv7l-linux = "1c6bikdhgd6w5njqza5xmhi7iz4kzydcfb2i7jqklb514knqxc8f"; 38 }.${system} or throwSystem; 39 in 40 callPackage ./generic.nix rec { 41 # Please backport all compatible updates to the stable release. 42 # This is important for the extension ecosystem. 43 + version = "1.86.0"; 44 pname = "vscode" + lib.optionalString isInsiders "-insiders"; 45 46 # This is used for VS Code - Remote SSH test 47 + rev = "05047486b6df5eb8d44b2ecd70ea3bdf775fd937"; 48 49 executableName = "code" + lib.optionalString isInsiders "-insiders"; 50 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 68 src = fetchurl { 69 name = "vscode-server-${rev}.tar.gz"; 70 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 71 + sha256 = "0d3g6csi2aplsy5j3v84m65mhlg0krpb2sndk0nh7gafyc5gnn28"; 72 }; 73 }; 74
+3 -3
pkgs/applications/emulators/ryujinx/default.nix
··· 28 29 buildDotnetModule rec { 30 pname = "ryujinx"; 31 - version = "1.1.1102"; # 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 = "f11d663df73f68350820dfa65aa51a8a9b9ffd0f"; 37 - sha256 = "15yai8zwwy2537ng6iqyg2jhv0q2w1c9rahkdkbvgkwiycsl7rjy"; 38 }; 39 40 dotnet-sdk = dotnetCorePackages.sdk_8_0;
··· 28 29 buildDotnetModule rec { 30 pname = "ryujinx"; 31 + version = "1.1.1155"; # 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 = "d704bcd93b90c288e6e200378373403525b59220"; 37 + sha256 = "0vf964rgr5jry8aszzbjm3jh7qd0d8b6rpzibb7b564awzy6kzda"; 38 }; 39 40 dotnet-sdk = dotnetCorePackages.sdk_8_0;
+42 -38
pkgs/applications/emulators/ryujinx/deps.nix
··· 2 # Please dont edit it manually, your changes might get overwritten! 3 4 { fetchNuGet }: [ 5 - (fetchNuGet { pname = "Avalonia"; version = "11.0.5"; sha256 = "1l8vpw7dmkgll197i42r98ikkl0g08469wkl1kxkcv8f0allgah6"; }) 6 (fetchNuGet { pname = "Avalonia.Angle.Windows.Natives"; version = "2.1.0.2023020321"; sha256 = "1az4s1g22ipak9a3xfh55z2h3rm6lpqh7svbpw6ag4ysrgsjjsjd"; }) 7 (fetchNuGet { pname = "Avalonia.BuildServices"; version = "0.0.29"; sha256 = "05mm7f0jssih3gbzqfgjnfq5cnqa85ihsg0z1897ciihv8qd3waq"; }) 8 (fetchNuGet { pname = "Avalonia.Controls.ColorPicker"; version = "11.0.4"; sha256 = "1sqdcaknqazq4mw2x1jb6pfmfnyhpkd4xh6fl4ld85qikzzj7796"; }) 9 - (fetchNuGet { pname = "Avalonia.Controls.ColorPicker"; version = "11.0.5"; sha256 = "0w1909yjg1s1h6zzxbfw1dazvlknpgk9v7d03ik7ihd14lxzr1i2"; }) 10 - (fetchNuGet { pname = "Avalonia.Controls.DataGrid"; version = "11.0.5"; sha256 = "14nr767zhxcqwis901sn5s9qala0wf2ip4pic3ncdvkhyhq6w9fs"; }) 11 (fetchNuGet { pname = "Avalonia.Controls.ItemsRepeater"; version = "11.0.0-rc2.1"; sha256 = "0pmc0fi2abn9qaqwx9lvqnd1a5a8lzp8zin72d3k3xjsh1w1g0n8"; }) 12 (fetchNuGet { pname = "Avalonia.Controls.ItemsRepeater"; version = "11.0.4"; sha256 = "1p7mz33a6dn6ghvwajxdghq15mn5f6isvvqzxcjbnhh3m5c1zhrz"; }) 13 - (fetchNuGet { pname = "Avalonia.Desktop"; version = "11.0.5"; sha256 = "1zqp8whkvm95zxhjpwska7rhkbxjfkv2fz3821pn782931pn59ah"; }) 14 - (fetchNuGet { pname = "Avalonia.Diagnostics"; version = "11.0.5"; sha256 = "1plr03dgq24gjlcx39qlbcg2ywh7in58yfkkq9snvnagh8yk3ifi"; }) 15 - (fetchNuGet { pname = "Avalonia.FreeDesktop"; version = "11.0.5"; sha256 = "0sn6c3mqvc62vhy8ssmz515wbcaq418qfrck67zysp2qzw5iyv9v"; }) 16 - (fetchNuGet { pname = "Avalonia.Markup.Xaml.Loader"; version = "11.0.5"; sha256 = "1z68j7xvjngdqfswnxnpqlv8qcgk41z9lfdfvknlckkb3g1kzhr6"; }) 17 - (fetchNuGet { pname = "Avalonia.Native"; version = "11.0.5"; sha256 = "1n41g1z36sgvhfl7bdavc3j7ccr3qkbqjc4znimqazzyfifh0m99"; }) 18 (fetchNuGet { pname = "Avalonia.Remote.Protocol"; version = "11.0.4"; sha256 = "096436hhg45v02pp4f43mf00xn6blx7x66sb8fq5j4jn7479fynp"; }) 19 - (fetchNuGet { pname = "Avalonia.Remote.Protocol"; version = "11.0.5"; sha256 = "0a6a8lbpna3z5bcall7a953r3xjibcl90ic21gimwhipyp29sfn1"; }) 20 (fetchNuGet { pname = "Avalonia.Skia"; version = "11.0.0"; sha256 = "1ra1kd0kkblppr5zy7rzdbwllggrzvp9lkxblf9mg3y8rnp6fk83"; }) 21 (fetchNuGet { pname = "Avalonia.Skia"; version = "11.0.4"; sha256 = "1ysmq4f8bxabpq3nhcrrvgwvxb9z7gx9565bvdyksdhsq16wyxym"; }) 22 - (fetchNuGet { pname = "Avalonia.Skia"; version = "11.0.5"; sha256 = "008pqpim91i6mya0nfn3g9gclh0dw5mqmhi2fdalbh62sa8a18xc"; }) 23 - (fetchNuGet { pname = "Avalonia.Svg"; version = "11.0.0.3"; sha256 = "1v91g3wv4s3la09syrzk30q7vwyv5vh71zczddsanmp2gj2v90c4"; }) 24 - (fetchNuGet { pname = "Avalonia.Svg.Skia"; version = "11.0.0.3"; sha256 = "0iz0gr8zsxyky0gbb7yc57qp7qcyjpjl29ncpjzg897wxcnmsjg1"; }) 25 - (fetchNuGet { pname = "Avalonia.Themes.Simple"; version = "11.0.5"; sha256 = "1i6xpihpw32i9mywzzhw0nyc2gkifmri6ylila21y8xb0jdazdyv"; }) 26 - (fetchNuGet { pname = "Avalonia.Win32"; version = "11.0.5"; sha256 = "03rbx4msnl8jvw1017wi88rxvgg8iz7idy7wajp3nzk9m0c4pilx"; }) 27 - (fetchNuGet { pname = "Avalonia.X11"; version = "11.0.5"; sha256 = "1bixdr5yzd9spyjc4n2kf1bwg52q3p5akj9xsr25xp310j3kgyxf"; }) 28 (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; sha256 = "1sldkj8lakggn4hnyabjj1fppqh50fkdrr1k99d4gswpbk5kv582"; }) 29 (fetchNuGet { pname = "Concentus"; version = "1.1.7"; sha256 = "0y5z444wrbhlmsqpy2sxmajl1fbf74843lvgj3y6vz260dn2q0l0"; }) 30 (fetchNuGet { pname = "DiscordRichPresence"; version = "1.2.1.24"; sha256 = "0maw0yd6xgwy0cgk593z3zva0r5j267zpdmmpq8avj3zbna6n4x1"; }) 31 - (fetchNuGet { pname = "DynamicData"; version = "7.14.2"; sha256 = "07k79w4702masq71rk865mi3h1kaxamyp7dgl08ny4n22gg8482k"; }) 32 (fetchNuGet { pname = "ExCSS"; version = "4.2.3"; sha256 = "1likxhccg4l4g4i65z4dfzp9059hij6h1q7prx2sgakvk8zzmw9k"; }) 33 - (fetchNuGet { pname = "FluentAvaloniaUI"; version = "2.0.4"; sha256 = "1xizjlk34xi4z837j6lbv4mc5vfb8gimkxicxcz0012wkzlmmzb1"; }) 34 (fetchNuGet { pname = "FSharp.Core"; version = "7.0.200"; sha256 = "1ji816r8idwjmxk8bzyq1z32ybz7xdg3nb0a7pnvqr8vys11bkgb"; }) 35 (fetchNuGet { pname = "GtkSharp.Dependencies"; version = "1.1.1"; sha256 = "0ffywnc3ca1lwhxdnk99l238vsprsrsh678bgm238lb7ja7m52pw"; }) 36 (fetchNuGet { pname = "HarfBuzzSharp"; version = "2.8.2.3"; sha256 = "115aybicqs9ijjlcv6k6r5v0agkjm1bm1nkd0rj3jglv8s0xvmp2"; }) 37 (fetchNuGet { pname = "HarfBuzzSharp"; version = "7.3.0"; sha256 = "1rqcmdyzxz9kc0k8594hbpksjc23mkakmjybi4b8702qycxx0lrf"; }) 38 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Linux"; version = "2.8.2.3"; sha256 = "1f18ahwkaginrg0vwsi6s56lvnqvvxv7pzklfs5lnknasxy1a76z"; }) 39 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.macOS"; version = "2.8.2.3"; sha256 = "052d8frpkj4ijs6fm6xp55xbv95b1s9biqwa0w8zp3rgm88m9236"; }) 40 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.macOS"; version = "7.3.0"; sha256 = "1b5ng37bwk75cifw7p1hzn8z6sswi8h7h510qgwlbvgmlrs5r0ga"; }) 41 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.WebAssembly"; version = "2.8.2.3"; sha256 = "043hv36bg5240znbm8x5la7py17m4jfzy57q3ka32f6zjld83j36"; }) 42 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Win32"; version = "2.8.2.3"; sha256 = "08khd2jqm8sw58ljz5srangzfm2sz3gd2q1jzc5fr80lj8rv6r74"; }) 43 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Win32"; version = "7.3.0"; sha256 = "1hyvmz7rfbrxbcpnwyvb64gdk1hifcpz3rln58yyb7g1pnbpnw2s"; }) 44 (fetchNuGet { pname = "jp2masa.Avalonia.Flexbox"; version = "0.3.0-beta.4"; sha256 = "17847ssn15l755zmspvb69wsfbj9ayvy9xl8zgjx6wvvwp6x89cp"; }) ··· 48 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.0.0"; sha256 = "0bbl0jpqywqmzz2gagld1p2gvdfldjfjmm25hil9wj2nq1zc4di8"; }) 49 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.4"; sha256 = "0wd6v57p53ahz5z9zg4iyzmy3src7rlsncyqpcag02jjj1yx6g58"; }) 50 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "3.8.0"; sha256 = "12n7rvr39bzkf2maw7zplw8rwpxpxss4ich3bb2pw770rx4nyvyw"; }) 51 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.7.0"; sha256 = "1zj4wwsad2j7y1byigm3c386rv56xr05mwxjlgqh0h0n5w5yjc4w"; }) 52 (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "3.8.0"; sha256 = "1kmry65csvfn72zzc16vj1nfbfwam28wcmlrk3m5rzb8ydbzgylb"; }) 53 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.7.0"; sha256 = "1lz3ha3pp58hd4y031z64slcf9rh7g1cgkrlrbhi4vpa67xhynnh"; }) 54 (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp.Scripting"; version = "3.8.0"; sha256 = "0w0yx0lpg54iw5jazqk46h48gx43ij32gwac8iywdj6kxfxm03vw"; }) 55 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Scripting.Common"; version = "3.8.0"; sha256 = "0hjgxcsj5zy27lqk0986m59n5dbplx2vjjla2lsvg4bwg8qa7bpk"; }) 56 (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.8.0"; sha256 = "173wjadp3gan4x2jfjchngnc4ca4mb95h1sbb28jydfkfw0z1zvj"; }) ··· 58 (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.7.0"; sha256 = "0gd67zlw554j098kabg887b5a6pq9kzavpa3jjy5w53ccjzjfy8j"; }) 59 (fetchNuGet { pname = "Microsoft.DotNet.PlatformAbstractions"; version = "3.1.6"; sha256 = "0b9myd7gqbpaw9pkd2bx45jhik9mwj0f1ss57sk2cxmag2lkdws5"; }) 60 (fetchNuGet { pname = "Microsoft.Extensions.DependencyModel"; version = "6.0.0"; sha256 = "08c4fh1n8vsish1vh7h73mva34g0as4ph29s4lvps7kmjb4z64nl"; }) 61 - (fetchNuGet { pname = "Microsoft.IdentityModel.Abstractions"; version = "7.0.3"; sha256 = "0njmg2lygnirnfjv9gck2f5lq4ly5rgws9cpf8qj3kwcwxfp0b9s"; }) 62 - (fetchNuGet { pname = "Microsoft.IdentityModel.JsonWebTokens"; version = "7.0.3"; sha256 = "1ayh85xqdq8rqjk2iqcn7iaczcl7d8qg6bxk0b4rgx59fmsmbqj7"; }) 63 - (fetchNuGet { pname = "Microsoft.IdentityModel.Logging"; version = "7.0.3"; sha256 = "13cjqmf59k895q6gkd5ycl89mnpalckda7rhsdl11jdyr32hsfnv"; }) 64 - (fetchNuGet { pname = "Microsoft.IdentityModel.Tokens"; version = "7.0.3"; sha256 = "1pmhd0imh9wlhvbvvwjrpjsqvzagi2ly22nddwr4r0pi234khyz1"; }) 65 - (fetchNuGet { pname = "Microsoft.IO.RecyclableMemoryStream"; version = "2.3.2"; sha256 = "115bm7dljchr7c02hiv1r3l21r22wpml1j26fyn2amaflaihpq4l"; }) 66 (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.8.0"; sha256 = "1syvl3g0hbrcgfi9rq6pld8s8hqqww4dflf1lxn59ccddyyx0gmv"; }) 67 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) 68 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; }) ··· 76 (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "4.5.0"; sha256 = "1zapbz161ji8h82xiajgriq6zgzmb1f3ar517p2h63plhsq5gh2q"; }) 77 (fetchNuGet { pname = "Microsoft.Win32.SystemEvents"; version = "8.0.0"; sha256 = "05392f41ijgn17y8pbjcx535l1k09krnq3xdp60kyq568sn6xk2i"; }) 78 (fetchNuGet { pname = "MsgPack.Cli"; version = "1.0.1"; sha256 = "1dk2bs3g16lsxcjjm7gfx6jxa4667wccw94jlh2ql7y7smvh9z8r"; }) 79 - (fetchNuGet { pname = "NetCoreServer"; version = "7.0.0"; sha256 = "0rhc03cm9rq5d0dl5m3m2ia68b4q5bf4vycv5f475dh1as7sh37w"; }) 80 (fetchNuGet { pname = "NETStandard.Library"; version = "1.6.0"; sha256 = "0nmmv4yw7gw04ik8ialj3ak0j6pxa9spih67hnn1h2c38ba8h58k"; }) 81 (fetchNuGet { pname = "NETStandard.Library"; version = "2.0.0"; sha256 = "1bc4ba8ahgk15m8k4nd7x406nhi0kwqzbgjk2dmw52ss553xz7iy"; }) 82 (fetchNuGet { pname = "NETStandard.Library"; version = "2.0.3"; sha256 = "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y"; }) ··· 84 (fetchNuGet { pname = "NuGet.Frameworks"; version = "6.5.0"; sha256 = "0s37d1p4md0k6d4cy6sq36f2dgkd9qfbzapxhkvi8awwh0vrynhj"; }) 85 (fetchNuGet { pname = "NUnit"; version = "3.13.3"; sha256 = "0wdzfkygqnr73s6lpxg5b1pwaqz9f414fxpvpdmf72bvh4jaqzv6"; }) 86 (fetchNuGet { pname = "NUnit3TestAdapter"; version = "4.1.0"; sha256 = "1z5g15npmsjszhfmkrdmp4ds7jpxzhxblss2rjl5mfn5sihy4cww"; }) 87 - (fetchNuGet { pname = "OpenTK.Audio.OpenAL"; version = "4.8.1"; sha256 = "0rhjdl24f8682bfdcbkslxlsiga9yii81fkc1cmjy8a73wf27wvj"; }) 88 - (fetchNuGet { pname = "OpenTK.Core"; version = "4.8.1"; sha256 = "1wmyyh4kpxsl9hg3zhjg9iafwv9d78fdn5prb7yz7hz2cmbsashx"; }) 89 - (fetchNuGet { pname = "OpenTK.Graphics"; version = "4.8.1"; sha256 = "0kapiban123fl2054kf0ilsh1ria8dc05z20ig4xglw3rbvm386p"; }) 90 - (fetchNuGet { pname = "OpenTK.Mathematics"; version = "4.8.1"; sha256 = "0gpzhc2l33ibc6dq8kncza9hyiv97yiby95vcxlcmwbqfwf68gln"; }) 91 (fetchNuGet { pname = "OpenTK.redist.glfw"; version = "3.3.8.39"; sha256 = "05z0hcignvzk8ffg6mn8m10sv5wppicibjz7zncsj3h3z8cin3vf"; }) 92 - (fetchNuGet { pname = "OpenTK.Windowing.GraphicsLibraryFramework"; version = "4.8.1"; sha256 = "03s9lki64vm5w4xd4vj6qri3cxxwmwcgi4i8l1a1vy96np2a2vnq"; }) 93 (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; }) 94 (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tools"; version = "4.3.0"; sha256 = "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk"; }) 95 (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn"; }) ··· 146 (fetchNuGet { pname = "securifybv.ShellLink"; version = "0.1.0"; sha256 = "1v52d01590m8y06bybis6hlg296wk3y7ilqyh01ram62v5wrjvq2"; }) 147 (fetchNuGet { pname = "shaderc.net"; version = "0.1.0"; sha256 = "0f35s9h0vj9f1rx9bssj66hibc3j9bzrb4wgb5q2jwkf5xncxbpq"; }) 148 (fetchNuGet { pname = "SharpZipLib"; version = "1.4.2"; sha256 = "0ijrzz2szxjmv2cipk7rpmg14dfaigdkg7xabjvb38ih56m9a27y"; }) 149 - (fetchNuGet { pname = "ShimSkiaSharp"; version = "1.0.0.3"; sha256 = "03q6m6c323asqd8lji2ndm8wdqbi69vwq3ji0fgsscdmyzwb3wpq"; }) 150 (fetchNuGet { pname = "Silk.NET.Core"; version = "2.16.0"; sha256 = "1mkqc2aicvknmpyfry2v7jjxh3apaxa6dmk1vfbwxnkysl417x0k"; }) 151 (fetchNuGet { pname = "Silk.NET.Vulkan"; version = "2.16.0"; sha256 = "0sg5mxv7ga5pq6wc0lz52j07fxrcfmb0an30r4cxsxk66298z2wy"; }) 152 (fetchNuGet { pname = "Silk.NET.Vulkan.Extensions.EXT"; version = "2.16.0"; sha256 = "05918f6fl8byla2m7qjp7dvxww2rbpj2sqd4xq26rl885fmddfvf"; }) ··· 156 (fetchNuGet { pname = "SixLabors.ImageSharp.Drawing"; version = "1.0.0-beta11"; sha256 = "0hl0rs3kr1zdnx3gdssxgli6fyvmwzcfp99f4db71s0i8j8b2bp5"; }) 157 (fetchNuGet { pname = "SkiaSharp"; version = "2.88.3"; sha256 = "1yq694myq2rhfp2hwwpyzcg1pzpxcp7j72wib8p9pw9dfj7008sv"; }) 158 (fetchNuGet { pname = "SkiaSharp"; version = "2.88.6"; sha256 = "0xs11zjw9ha68maw3l825kfwlrid43qwy0mswljxhpjh0y1k6k6b"; }) 159 (fetchNuGet { pname = "SkiaSharp.HarfBuzz"; version = "2.88.6"; sha256 = "1h61vk9ibavwwrxqgclzsxmchighvfaqlcqrj0dpi2fzw57f54c2"; }) 160 (fetchNuGet { pname = "SkiaSharp.NativeAssets.Linux"; version = "2.88.3"; sha256 = "0dajvr60nwvnv7s6kcqgw1w97zxdpz1c5lb7kcq7r0hi0l05ck3q"; }) 161 - (fetchNuGet { pname = "SkiaSharp.NativeAssets.Linux"; version = "2.88.6"; sha256 = "0cg38xgddww1y93xrnbfn40sin63yl39j5zm7gm5pdgp5si0cf2n"; }) 162 (fetchNuGet { pname = "SkiaSharp.NativeAssets.macOS"; version = "2.88.3"; sha256 = "191ajgi6fnfqcvqvkayjsxasiz6l0bv3pps8vv9abbyc4b12qvph"; }) 163 (fetchNuGet { pname = "SkiaSharp.NativeAssets.macOS"; version = "2.88.6"; sha256 = "1fp9h8c8k6sbsh48b69dc6461isd4dajq7yw5i7j6fhkas78q4zf"; }) 164 (fetchNuGet { pname = "SkiaSharp.NativeAssets.WebAssembly"; version = "2.88.3"; sha256 = "1w5njksq3amrrp7fqxw89nv6ar2kgc5yx092i4rxv7hrjbd1aagx"; }) 165 - (fetchNuGet { pname = "SkiaSharp.NativeAssets.WebAssembly"; version = "2.88.6"; sha256 = "02wpxwqwknhdhkl00in766samqfzi7r6jmhxs4d047v0fmygv1h8"; }) 166 (fetchNuGet { pname = "SkiaSharp.NativeAssets.Win32"; version = "2.88.3"; sha256 = "03wwfbarsxjnk70qhqyd1dw65098dncqk2m0vksx92j70i7lry6q"; }) 167 (fetchNuGet { pname = "SkiaSharp.NativeAssets.Win32"; version = "2.88.6"; sha256 = "1w2mwcwkqvrg4x4ybc4674xnkqwh1n2ihg520gqgpnqfc11ghc4n"; }) 168 (fetchNuGet { pname = "SPB"; version = "0.0.4-build28"; sha256 = "1ran6qwzlkv6xpvnp7n0nkva0zfrzwlcxj7zfzz9v8mpicqs297x"; }) 169 - (fetchNuGet { pname = "Svg.Custom"; version = "1.0.0.3"; sha256 = "1m9jpz87hl074k111bi208az05a50f8ka44pn442pgf2741sih61"; }) 170 - (fetchNuGet { pname = "Svg.Model"; version = "1.0.0.3"; sha256 = "1iwcyqynscjijaandl87agqncc3x3kbpwka63yzqljjph2d0wg2h"; }) 171 - (fetchNuGet { pname = "Svg.Skia"; version = "1.0.0.3"; sha256 = "06jcw0qp74i5h1m7n6lssm2c4r7hnccwdbzvxix035pz78knv2mf"; }) 172 (fetchNuGet { pname = "System.AppContext"; version = "4.1.0"; sha256 = "0fv3cma1jp4vgj7a8hqc9n7hr1f1kjp541s6z0q1r6nazb4iz9mz"; }) 173 (fetchNuGet { pname = "System.Buffers"; version = "4.0.0"; sha256 = "13s659bcmg9nwb6z78971z1lr6bmh2wghxi1ayqyzl4jijd351gr"; }) 174 (fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; sha256 = "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy"; }) ··· 187 (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.0.0"; sha256 = "1n6c3fbz7v8d3pn77h4v5wvsfrfg7v1c57lg3nff3cjyh597v23m"; }) 188 (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.0.1"; sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; }) 189 (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.1.0"; sha256 = "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394"; }) 190 - (fetchNuGet { pname = "System.Drawing.Common"; version = "8.0.0"; sha256 = "1j4rsm36bnwqmh5br9mzmj0ikjnc39k26q6l9skjlrnw8hlngwy4"; }) 191 (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.3.0"; sha256 = "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk"; }) 192 (fetchNuGet { pname = "System.Globalization"; version = "4.0.11"; sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d"; }) 193 (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; }) 194 (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.0.1"; sha256 = "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh"; }) 195 (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.0.1"; sha256 = "0hjhdb5ri8z9l93bw04s7ynwrjrhx2n0p34sf33a9hl9phz69fyc"; }) 196 - (fetchNuGet { pname = "System.IdentityModel.Tokens.Jwt"; version = "7.0.3"; sha256 = "1fls88ffq34j1gr6zay1crm27v3sjs5fa4mvj9akqjq05bxanlhk"; }) 197 (fetchNuGet { pname = "System.IO"; version = "4.1.0"; sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; }) 198 (fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; }) 199 (fetchNuGet { pname = "System.IO.Compression"; version = "4.1.0"; sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji"; })
··· 2 # Please dont edit it manually, your changes might get overwritten! 3 4 { fetchNuGet }: [ 5 + (fetchNuGet { pname = "Avalonia"; version = "11.0.7"; sha256 = "1rh7c4ia0n7v8kd5kspj15sh49hc5gy3fcnm7nb2xsarv9gvmwcg"; }) 6 (fetchNuGet { pname = "Avalonia.Angle.Windows.Natives"; version = "2.1.0.2023020321"; sha256 = "1az4s1g22ipak9a3xfh55z2h3rm6lpqh7svbpw6ag4ysrgsjjsjd"; }) 7 (fetchNuGet { pname = "Avalonia.BuildServices"; version = "0.0.29"; sha256 = "05mm7f0jssih3gbzqfgjnfq5cnqa85ihsg0z1897ciihv8qd3waq"; }) 8 (fetchNuGet { pname = "Avalonia.Controls.ColorPicker"; version = "11.0.4"; sha256 = "1sqdcaknqazq4mw2x1jb6pfmfnyhpkd4xh6fl4ld85qikzzj7796"; }) 9 + (fetchNuGet { pname = "Avalonia.Controls.ColorPicker"; version = "11.0.7"; sha256 = "1386lhzkc5mal70imw3vxfkbz7z94njylg662ymr2m3hhwz34w3l"; }) 10 + (fetchNuGet { pname = "Avalonia.Controls.DataGrid"; version = "11.0.7"; sha256 = "080w1k4mia6kkl9lw5hl03n75xrkd2rlh5901jrpk11jyy36w00s"; }) 11 (fetchNuGet { pname = "Avalonia.Controls.ItemsRepeater"; version = "11.0.0-rc2.1"; sha256 = "0pmc0fi2abn9qaqwx9lvqnd1a5a8lzp8zin72d3k3xjsh1w1g0n8"; }) 12 (fetchNuGet { pname = "Avalonia.Controls.ItemsRepeater"; version = "11.0.4"; sha256 = "1p7mz33a6dn6ghvwajxdghq15mn5f6isvvqzxcjbnhh3m5c1zhrz"; }) 13 + (fetchNuGet { pname = "Avalonia.Desktop"; version = "11.0.7"; sha256 = "0z5jypzqxh83r1pzvl1k7x1wxhnr3f0knp4wr0fkcgj97k2bnjy1"; }) 14 + (fetchNuGet { pname = "Avalonia.Diagnostics"; version = "11.0.7"; sha256 = "1n9bdmbc9m0r7x7iqkin4b8c6pdf19lbsvl258ncymhln6j8y0xw"; }) 15 + (fetchNuGet { pname = "Avalonia.FreeDesktop"; version = "11.0.7"; sha256 = "0xd3gmgh2rd1krd1q7yh3vrqggxap23fgfph2vfkfg3cxgyyfcml"; }) 16 + (fetchNuGet { pname = "Avalonia.Markup.Xaml.Loader"; version = "11.0.7"; sha256 = "1k5zfwhjkqbk2jb2h5gbvf85q3shz411hgf5xa80yi5wxw1d2nr6"; }) 17 + (fetchNuGet { pname = "Avalonia.Native"; version = "11.0.7"; sha256 = "164zyd1aaa42xryci82km2fznzmjag9s1f3i8yjyg2ip5agkh289"; }) 18 (fetchNuGet { pname = "Avalonia.Remote.Protocol"; version = "11.0.4"; sha256 = "096436hhg45v02pp4f43mf00xn6blx7x66sb8fq5j4jn7479fynp"; }) 19 + (fetchNuGet { pname = "Avalonia.Remote.Protocol"; version = "11.0.7"; sha256 = "0a5a1wz9ka1r7ch0c2b5nvnsgm49kdhlj16rvrvhdz30qf9m671n"; }) 20 (fetchNuGet { pname = "Avalonia.Skia"; version = "11.0.0"; sha256 = "1ra1kd0kkblppr5zy7rzdbwllggrzvp9lkxblf9mg3y8rnp6fk83"; }) 21 (fetchNuGet { pname = "Avalonia.Skia"; version = "11.0.4"; sha256 = "1ysmq4f8bxabpq3nhcrrvgwvxb9z7gx9565bvdyksdhsq16wyxym"; }) 22 + (fetchNuGet { pname = "Avalonia.Skia"; version = "11.0.7"; sha256 = "1v3g13a447k5dmd0n26aibjwxawx3vqn8g2jmwpw533rx1f509h5"; }) 23 + (fetchNuGet { pname = "Avalonia.Svg"; version = "11.0.0.13"; sha256 = "1cf2y8bhb5xcpkrzbkfw1lr8iwz99p0lv34sh51xd9inx0rnvm4g"; }) 24 + (fetchNuGet { pname = "Avalonia.Svg.Skia"; version = "11.0.0.13"; sha256 = "0hbc1m5lv8l9fflz8z46f9pwrrd4hisn8qp38944388r9ay0v4ip"; }) 25 + (fetchNuGet { pname = "Avalonia.Themes.Simple"; version = "11.0.7"; sha256 = "0ggrsir3zskg22as65f3i93f4dmhqm5lqq0irb1rqi8dfficsmzx"; }) 26 + (fetchNuGet { pname = "Avalonia.Win32"; version = "11.0.7"; sha256 = "0zbh1cd8zykc5rrannz6i9pyiiygm041db3nrpzyi43xsknnhl7r"; }) 27 + (fetchNuGet { pname = "Avalonia.X11"; version = "11.0.7"; sha256 = "03skfjxw2xpynl8j2gjpb4v1v642qw1qnx9lcq9whgmlj03yz9nc"; }) 28 (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; sha256 = "1sldkj8lakggn4hnyabjj1fppqh50fkdrr1k99d4gswpbk5kv582"; }) 29 (fetchNuGet { pname = "Concentus"; version = "1.1.7"; sha256 = "0y5z444wrbhlmsqpy2sxmajl1fbf74843lvgj3y6vz260dn2q0l0"; }) 30 (fetchNuGet { pname = "DiscordRichPresence"; version = "1.2.1.24"; sha256 = "0maw0yd6xgwy0cgk593z3zva0r5j267zpdmmpq8avj3zbna6n4x1"; }) 31 + (fetchNuGet { pname = "DynamicData"; version = "8.3.27"; sha256 = "19y1zk2zga464jfv77qir8nlw7mx8lsfpgdswkgz5s3pbhpmzxl8"; }) 32 (fetchNuGet { pname = "ExCSS"; version = "4.2.3"; sha256 = "1likxhccg4l4g4i65z4dfzp9059hij6h1q7prx2sgakvk8zzmw9k"; }) 33 + (fetchNuGet { pname = "FluentAvaloniaUI"; version = "2.0.5"; sha256 = "1fk38vm4fqrhwv7zcffg34dfrgdwfqndpyjpyblyx7xj3nlpm8hi"; }) 34 (fetchNuGet { pname = "FSharp.Core"; version = "7.0.200"; sha256 = "1ji816r8idwjmxk8bzyq1z32ybz7xdg3nb0a7pnvqr8vys11bkgb"; }) 35 (fetchNuGet { pname = "GtkSharp.Dependencies"; version = "1.1.1"; sha256 = "0ffywnc3ca1lwhxdnk99l238vsprsrsh678bgm238lb7ja7m52pw"; }) 36 (fetchNuGet { pname = "HarfBuzzSharp"; version = "2.8.2.3"; sha256 = "115aybicqs9ijjlcv6k6r5v0agkjm1bm1nkd0rj3jglv8s0xvmp2"; }) 37 (fetchNuGet { pname = "HarfBuzzSharp"; version = "7.3.0"; sha256 = "1rqcmdyzxz9kc0k8594hbpksjc23mkakmjybi4b8702qycxx0lrf"; }) 38 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Linux"; version = "2.8.2.3"; sha256 = "1f18ahwkaginrg0vwsi6s56lvnqvvxv7pzklfs5lnknasxy1a76z"; }) 39 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Linux"; version = "7.3.0"; sha256 = "0i9gaiyjgmcpnfn1fixbxq8shqlh4ahng7j4dxlf38zlln1f6h80"; }) 40 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.macOS"; version = "2.8.2.3"; sha256 = "052d8frpkj4ijs6fm6xp55xbv95b1s9biqwa0w8zp3rgm88m9236"; }) 41 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.macOS"; version = "7.3.0"; sha256 = "1b5ng37bwk75cifw7p1hzn8z6sswi8h7h510qgwlbvgmlrs5r0ga"; }) 42 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.WebAssembly"; version = "2.8.2.3"; sha256 = "043hv36bg5240znbm8x5la7py17m4jfzy57q3ka32f6zjld83j36"; }) 43 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.WebAssembly"; version = "7.3.0"; sha256 = "0dcmclnyryb82wzsky1dn0gbjsvx84mfx46v984f5fmg4v238lpm"; }) 44 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Win32"; version = "2.8.2.3"; sha256 = "08khd2jqm8sw58ljz5srangzfm2sz3gd2q1jzc5fr80lj8rv6r74"; }) 45 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Win32"; version = "7.3.0"; sha256 = "1hyvmz7rfbrxbcpnwyvb64gdk1hifcpz3rln58yyb7g1pnbpnw2s"; }) 46 (fetchNuGet { pname = "jp2masa.Avalonia.Flexbox"; version = "0.3.0-beta.4"; sha256 = "17847ssn15l755zmspvb69wsfbj9ayvy9xl8zgjx6wvvwp6x89cp"; }) ··· 50 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.0.0"; sha256 = "0bbl0jpqywqmzz2gagld1p2gvdfldjfjmm25hil9wj2nq1zc4di8"; }) 51 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.4"; sha256 = "0wd6v57p53ahz5z9zg4iyzmy3src7rlsncyqpcag02jjj1yx6g58"; }) 52 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "3.8.0"; sha256 = "12n7rvr39bzkf2maw7zplw8rwpxpxss4ich3bb2pw770rx4nyvyw"; }) 53 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.8.0"; sha256 = "0gmbxn91h4r23fhzpl1dh56cpva4sg2h659kdbdazayrajfj50fw"; }) 54 (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "3.8.0"; sha256 = "1kmry65csvfn72zzc16vj1nfbfwam28wcmlrk3m5rzb8ydbzgylb"; }) 55 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.8.0"; sha256 = "0idaksbib90zgi8xlycmdzk77dlxichspp23wpnfrzfxkdfafqrj"; }) 56 (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp.Scripting"; version = "3.8.0"; sha256 = "0w0yx0lpg54iw5jazqk46h48gx43ij32gwac8iywdj6kxfxm03vw"; }) 57 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Scripting.Common"; version = "3.8.0"; sha256 = "0hjgxcsj5zy27lqk0986m59n5dbplx2vjjla2lsvg4bwg8qa7bpk"; }) 58 (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.8.0"; sha256 = "173wjadp3gan4x2jfjchngnc4ca4mb95h1sbb28jydfkfw0z1zvj"; }) ··· 60 (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.7.0"; sha256 = "0gd67zlw554j098kabg887b5a6pq9kzavpa3jjy5w53ccjzjfy8j"; }) 61 (fetchNuGet { pname = "Microsoft.DotNet.PlatformAbstractions"; version = "3.1.6"; sha256 = "0b9myd7gqbpaw9pkd2bx45jhik9mwj0f1ss57sk2cxmag2lkdws5"; }) 62 (fetchNuGet { pname = "Microsoft.Extensions.DependencyModel"; version = "6.0.0"; sha256 = "08c4fh1n8vsish1vh7h73mva34g0as4ph29s4lvps7kmjb4z64nl"; }) 63 + (fetchNuGet { pname = "Microsoft.IdentityModel.Abstractions"; version = "7.3.0"; sha256 = "1x183b0gz1vcfiljggrn30g6jvixlwks0lfpl4hl9nnjbpg0fdvq"; }) 64 + (fetchNuGet { pname = "Microsoft.IdentityModel.JsonWebTokens"; version = "7.3.0"; sha256 = "03nnqmz0w42wiqgf5y0wkn6w0n3m93q8ihqmrrz7rdh85v06f999"; }) 65 + (fetchNuGet { pname = "Microsoft.IdentityModel.Logging"; version = "7.3.0"; sha256 = "1b24pf0ippwbdjc3k1wzr13lr1zqlcbymi2hpvfmxmk4i6vzn4mv"; }) 66 + (fetchNuGet { pname = "Microsoft.IdentityModel.Tokens"; version = "7.3.0"; sha256 = "1qdcqcnczaqfd0cii3bcymbc7rvkypm25idxgx7hfc81h9ysh79h"; }) 67 + (fetchNuGet { pname = "Microsoft.IO.RecyclableMemoryStream"; version = "3.0.0"; sha256 = "1zl39k27r4zq75r1x1zr1yl4nzxpkxdnnv6dwd4qp0xr22my85aq"; }) 68 (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.8.0"; sha256 = "1syvl3g0hbrcgfi9rq6pld8s8hqqww4dflf1lxn59ccddyyx0gmv"; }) 69 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) 70 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; }) ··· 78 (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "4.5.0"; sha256 = "1zapbz161ji8h82xiajgriq6zgzmb1f3ar517p2h63plhsq5gh2q"; }) 79 (fetchNuGet { pname = "Microsoft.Win32.SystemEvents"; version = "8.0.0"; sha256 = "05392f41ijgn17y8pbjcx535l1k09krnq3xdp60kyq568sn6xk2i"; }) 80 (fetchNuGet { pname = "MsgPack.Cli"; version = "1.0.1"; sha256 = "1dk2bs3g16lsxcjjm7gfx6jxa4667wccw94jlh2ql7y7smvh9z8r"; }) 81 + (fetchNuGet { pname = "NetCoreServer"; version = "8.0.7"; sha256 = "171mn5b56ikkjvsx3hvgmh3lga9c2ja31as0hnfr3040rdrj4ij5"; }) 82 (fetchNuGet { pname = "NETStandard.Library"; version = "1.6.0"; sha256 = "0nmmv4yw7gw04ik8ialj3ak0j6pxa9spih67hnn1h2c38ba8h58k"; }) 83 (fetchNuGet { pname = "NETStandard.Library"; version = "2.0.0"; sha256 = "1bc4ba8ahgk15m8k4nd7x406nhi0kwqzbgjk2dmw52ss553xz7iy"; }) 84 (fetchNuGet { pname = "NETStandard.Library"; version = "2.0.3"; sha256 = "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y"; }) ··· 86 (fetchNuGet { pname = "NuGet.Frameworks"; version = "6.5.0"; sha256 = "0s37d1p4md0k6d4cy6sq36f2dgkd9qfbzapxhkvi8awwh0vrynhj"; }) 87 (fetchNuGet { pname = "NUnit"; version = "3.13.3"; sha256 = "0wdzfkygqnr73s6lpxg5b1pwaqz9f414fxpvpdmf72bvh4jaqzv6"; }) 88 (fetchNuGet { pname = "NUnit3TestAdapter"; version = "4.1.0"; sha256 = "1z5g15npmsjszhfmkrdmp4ds7jpxzhxblss2rjl5mfn5sihy4cww"; }) 89 + (fetchNuGet { pname = "OpenTK.Audio.OpenAL"; version = "4.8.2"; sha256 = "1r89s76nq5v4pc1p77avq3vdp2k9n0byf7clcdwc0d0k6s4r34lb"; }) 90 + (fetchNuGet { pname = "OpenTK.Core"; version = "4.8.2"; sha256 = "10mgcgz7dk2sqwc3fd4la69mp5p91qy6b49ycpnw3jvp7mbbim77"; }) 91 + (fetchNuGet { pname = "OpenTK.Graphics"; version = "4.8.2"; sha256 = "13d6dkrpv5p1xaj6bxxwc5wjw3p08dhif4k61jq3wfixsfm5gnhc"; }) 92 + (fetchNuGet { pname = "OpenTK.Mathematics"; version = "4.8.2"; sha256 = "12klcy0ifx9hmn1bhk5fnmp6xasck15xiirpda2ai7rpisrjvysc"; }) 93 (fetchNuGet { pname = "OpenTK.redist.glfw"; version = "3.3.8.39"; sha256 = "05z0hcignvzk8ffg6mn8m10sv5wppicibjz7zncsj3h3z8cin3vf"; }) 94 + (fetchNuGet { pname = "OpenTK.Windowing.GraphicsLibraryFramework"; version = "4.8.2"; sha256 = "11jc154j5r1jvcxa7by42xkyj5dkiv4q6yffkr6r1vmn9yshclvb"; }) 95 (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; }) 96 (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tools"; version = "4.3.0"; sha256 = "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk"; }) 97 (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn"; }) ··· 148 (fetchNuGet { pname = "securifybv.ShellLink"; version = "0.1.0"; sha256 = "1v52d01590m8y06bybis6hlg296wk3y7ilqyh01ram62v5wrjvq2"; }) 149 (fetchNuGet { pname = "shaderc.net"; version = "0.1.0"; sha256 = "0f35s9h0vj9f1rx9bssj66hibc3j9bzrb4wgb5q2jwkf5xncxbpq"; }) 150 (fetchNuGet { pname = "SharpZipLib"; version = "1.4.2"; sha256 = "0ijrzz2szxjmv2cipk7rpmg14dfaigdkg7xabjvb38ih56m9a27y"; }) 151 + (fetchNuGet { pname = "ShimSkiaSharp"; version = "1.0.0.13"; sha256 = "1bkpx7zk5vh2rymam165kkqky2768nasgzqcil8kxzryqd853af4"; }) 152 (fetchNuGet { pname = "Silk.NET.Core"; version = "2.16.0"; sha256 = "1mkqc2aicvknmpyfry2v7jjxh3apaxa6dmk1vfbwxnkysl417x0k"; }) 153 (fetchNuGet { pname = "Silk.NET.Vulkan"; version = "2.16.0"; sha256 = "0sg5mxv7ga5pq6wc0lz52j07fxrcfmb0an30r4cxsxk66298z2wy"; }) 154 (fetchNuGet { pname = "Silk.NET.Vulkan.Extensions.EXT"; version = "2.16.0"; sha256 = "05918f6fl8byla2m7qjp7dvxww2rbpj2sqd4xq26rl885fmddfvf"; }) ··· 158 (fetchNuGet { pname = "SixLabors.ImageSharp.Drawing"; version = "1.0.0-beta11"; sha256 = "0hl0rs3kr1zdnx3gdssxgli6fyvmwzcfp99f4db71s0i8j8b2bp5"; }) 159 (fetchNuGet { pname = "SkiaSharp"; version = "2.88.3"; sha256 = "1yq694myq2rhfp2hwwpyzcg1pzpxcp7j72wib8p9pw9dfj7008sv"; }) 160 (fetchNuGet { pname = "SkiaSharp"; version = "2.88.6"; sha256 = "0xs11zjw9ha68maw3l825kfwlrid43qwy0mswljxhpjh0y1k6k6b"; }) 161 + (fetchNuGet { pname = "SkiaSharp"; version = "2.88.7"; sha256 = "0f6wbk9dnjiffb9ycjachy1m9zw3pai2m503nym07qgb0izxm792"; }) 162 (fetchNuGet { pname = "SkiaSharp.HarfBuzz"; version = "2.88.6"; sha256 = "1h61vk9ibavwwrxqgclzsxmchighvfaqlcqrj0dpi2fzw57f54c2"; }) 163 (fetchNuGet { pname = "SkiaSharp.NativeAssets.Linux"; version = "2.88.3"; sha256 = "0dajvr60nwvnv7s6kcqgw1w97zxdpz1c5lb7kcq7r0hi0l05ck3q"; }) 164 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.Linux"; version = "2.88.7"; sha256 = "0p0z6nxkkmabv46wmxhs3yr0xy24i6jzn54gk0hsm3h1a8vi3m21"; }) 165 (fetchNuGet { pname = "SkiaSharp.NativeAssets.macOS"; version = "2.88.3"; sha256 = "191ajgi6fnfqcvqvkayjsxasiz6l0bv3pps8vv9abbyc4b12qvph"; }) 166 (fetchNuGet { pname = "SkiaSharp.NativeAssets.macOS"; version = "2.88.6"; sha256 = "1fp9h8c8k6sbsh48b69dc6461isd4dajq7yw5i7j6fhkas78q4zf"; }) 167 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.macOS"; version = "2.88.7"; sha256 = "05xwa1izzvqz4gznvx2x31qnpvl1lc65hm5p9sscjg5afisya0ss"; }) 168 (fetchNuGet { pname = "SkiaSharp.NativeAssets.WebAssembly"; version = "2.88.3"; sha256 = "1w5njksq3amrrp7fqxw89nv6ar2kgc5yx092i4rxv7hrjbd1aagx"; }) 169 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.WebAssembly"; version = "2.88.7"; sha256 = "1k2hfasgbv01navc55zzwdwzfxcw4186jni35c00zykgwhbwb250"; }) 170 (fetchNuGet { pname = "SkiaSharp.NativeAssets.Win32"; version = "2.88.3"; sha256 = "03wwfbarsxjnk70qhqyd1dw65098dncqk2m0vksx92j70i7lry6q"; }) 171 (fetchNuGet { pname = "SkiaSharp.NativeAssets.Win32"; version = "2.88.6"; sha256 = "1w2mwcwkqvrg4x4ybc4674xnkqwh1n2ihg520gqgpnqfc11ghc4n"; }) 172 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.Win32"; version = "2.88.7"; sha256 = "119mlbh5hmlis7vb111s95dwg5p1anm2hmv7cm6fz7gy18473d7v"; }) 173 (fetchNuGet { pname = "SPB"; version = "0.0.4-build28"; sha256 = "1ran6qwzlkv6xpvnp7n0nkva0zfrzwlcxj7zfzz9v8mpicqs297x"; }) 174 + (fetchNuGet { pname = "Svg.Custom"; version = "1.0.0.13"; sha256 = "040w8xqjfyda8742387y0jq1bgs3m57id7qdgiwchv4860v7s97s"; }) 175 + (fetchNuGet { pname = "Svg.Model"; version = "1.0.0.13"; sha256 = "06ppak6gxyiq716zjf919zanl7kb2jwg5d8rhxf9f6fnyd5mjaiv"; }) 176 + (fetchNuGet { pname = "Svg.Skia"; version = "1.0.0.13"; sha256 = "0kr2hlrds1w38pilbq17jnc8xy37b7zis2m1sg6vqrsqp9blhlb7"; }) 177 (fetchNuGet { pname = "System.AppContext"; version = "4.1.0"; sha256 = "0fv3cma1jp4vgj7a8hqc9n7hr1f1kjp541s6z0q1r6nazb4iz9mz"; }) 178 (fetchNuGet { pname = "System.Buffers"; version = "4.0.0"; sha256 = "13s659bcmg9nwb6z78971z1lr6bmh2wghxi1ayqyzl4jijd351gr"; }) 179 (fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; sha256 = "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy"; }) ··· 192 (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.0.0"; sha256 = "1n6c3fbz7v8d3pn77h4v5wvsfrfg7v1c57lg3nff3cjyh597v23m"; }) 193 (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.0.1"; sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; }) 194 (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.1.0"; sha256 = "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394"; }) 195 + (fetchNuGet { pname = "System.Drawing.Common"; version = "8.0.1"; sha256 = "02l7y2j6f2qykl90iac28nvw1cnhic8vzixlq5fznw0zj72knz25"; }) 196 (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.3.0"; sha256 = "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk"; }) 197 (fetchNuGet { pname = "System.Globalization"; version = "4.0.11"; sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d"; }) 198 (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; }) 199 (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.0.1"; sha256 = "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh"; }) 200 (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.0.1"; sha256 = "0hjhdb5ri8z9l93bw04s7ynwrjrhx2n0p34sf33a9hl9phz69fyc"; }) 201 (fetchNuGet { pname = "System.IO"; version = "4.1.0"; sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; }) 202 (fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; }) 203 (fetchNuGet { pname = "System.IO.Compression"; version = "4.1.0"; sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji"; })
+2 -2
pkgs/applications/file-managers/mc/default.nix
··· 24 25 stdenv.mkDerivation rec { 26 pname = "mc"; 27 - version = "4.8.30"; 28 29 src = fetchurl { 30 url = "https://www.midnight-commander.org/downloads/${pname}-${version}.tar.xz"; 31 - sha256 = "sha256-Xrw8shRLlwxRSf2lVsStULeHgElGls3y0UpTIEyVx98="; 32 }; 33 34 nativeBuildInputs = [ pkg-config unzip ]
··· 24 25 stdenv.mkDerivation rec { 26 pname = "mc"; 27 + version = "4.8.31"; 28 29 src = fetchurl { 30 url = "https://www.midnight-commander.org/downloads/${pname}-${version}.tar.xz"; 31 + sha256 = "sha256-JBkc+GZ2dbjjH8Sp0YoKZb3AWYwsXE6gkklM0Tq0qxo="; 32 }; 33 34 nativeBuildInputs = [ pkg-config unzip ]
+2 -2
pkgs/applications/graphics/mandelbulber/default.nix
··· 19 20 mkDerivation rec { 21 pname = "mandelbulber"; 22 - version = "2.30"; 23 24 src = fetchFromGitHub { 25 owner = "buddhi1980"; 26 repo = "mandelbulber2"; 27 rev = version; 28 - sha256 = "sha256-xDW1Fk0GpjJQWE4ljbYXanp5N4wJYJUCRxKUCi7yJm0="; 29 }; 30 31 nativeBuildInputs = [
··· 19 20 mkDerivation rec { 21 pname = "mandelbulber"; 22 + version = "2.31"; 23 24 src = fetchFromGitHub { 25 owner = "buddhi1980"; 26 repo = "mandelbulber2"; 27 rev = version; 28 + sha256 = "sha256-r3IuOdtBSrTK/pDChgq/M3yQkSz2R+FG6kvwjYPjR4A="; 29 }; 30 31 nativeBuildInputs = [
+2 -2
pkgs/applications/graphics/tesseract/tesseract5.nix
··· 5 6 stdenv.mkDerivation rec { 7 pname = "tesseract"; 8 - version = "5.3.3"; 9 10 src = fetchFromGitHub { 11 owner = "tesseract-ocr"; 12 repo = "tesseract"; 13 rev = version; 14 - sha256 = "sha256-/aGzwm2+0y8fheOnRi/OJXZy3o0xjY1cCq+B3GTzfos="; 15 }; 16 17 enableParallelBuilding = true;
··· 5 6 stdenv.mkDerivation rec { 7 pname = "tesseract"; 8 + version = "5.3.4"; 9 10 src = fetchFromGitHub { 11 owner = "tesseract-ocr"; 12 repo = "tesseract"; 13 rev = version; 14 + sha256 = "sha256-IKxzDhSM+BPsKyQP3mADAkpRSGHs4OmdFIA+Txt084M="; 15 }; 16 17 enableParallelBuilding = true;
+2 -2
pkgs/applications/misc/avizo/default.nix
··· 20 21 stdenv.mkDerivation rec { 22 pname = "avizo"; 23 - version = "1.2.1"; 24 25 src = fetchFromGitHub { 26 owner = "misterdanb"; 27 repo = "avizo"; 28 rev = version; 29 - sha256 = "sha256-ainU4nXWFp1udVujPHZUeWIfJE4RrjU1hn9J17UuuzU="; 30 }; 31 32 nativeBuildInputs = [ meson ninja pkg-config vala gobject-introspection wrapGAppsHook ];
··· 20 21 stdenv.mkDerivation rec { 22 pname = "avizo"; 23 + version = "1.3"; 24 25 src = fetchFromGitHub { 26 owner = "misterdanb"; 27 repo = "avizo"; 28 rev = version; 29 + sha256 = "sha256-Vj8OrNlAstl0AXTeVAPdEf5JgnAmJwl9s3Jdc0ZiYQc="; 30 }; 31 32 nativeBuildInputs = [ meson ninja pkg-config vala gobject-introspection wrapGAppsHook ];
+2 -2
pkgs/applications/misc/corectrl/default.nix
··· 23 24 stdenv.mkDerivation rec{ 25 pname = "corectrl"; 26 - version = "1.3.8"; 27 28 src = fetchFromGitLab { 29 owner = "corectrl"; 30 repo = "corectrl"; 31 rev = "v${version}"; 32 - sha256 = "sha256-lc6yWzJiSzGKMzJIpgOtirJONsh49vXWDWrhLV/erwQ="; 33 }; 34 patches = [ 35 ./polkit-dir.patch
··· 23 24 stdenv.mkDerivation rec{ 25 pname = "corectrl"; 26 + version = "1.3.9"; 27 28 src = fetchFromGitLab { 29 owner = "corectrl"; 30 repo = "corectrl"; 31 rev = "v${version}"; 32 + sha256 = "sha256-6CjN3GXkb7tSzWhphiiB+9bR5bcr0bjtJCEkJldD7Fk="; 33 }; 34 patches = [ 35 ./polkit-dir.patch
+3 -3
pkgs/applications/networking/avalanchego/default.nix
··· 8 9 buildGoModule rec { 10 pname = "avalanchego"; 11 - version = "1.10.17"; 12 13 src = fetchFromGitHub { 14 owner = "ava-labs"; 15 repo = pname; 16 rev = "v${version}"; 17 - hash = "sha256-KttDsSOrnaFsGHoKnYkj94U6WbHXJP2RJNtqSMs3PTo="; 18 }; 19 20 - vendorHash = "sha256-B4UuVmUf1aFu+7gFAdTLcm+iZoTwVFmBcckOXQxRuI0="; 21 # go mod vendor has a bug, see: https://github.com/golang/go/issues/57529 22 proxyVendor = true; 23
··· 8 9 buildGoModule rec { 10 pname = "avalanchego"; 11 + version = "1.10.19"; 12 13 src = fetchFromGitHub { 14 owner = "ava-labs"; 15 repo = pname; 16 rev = "v${version}"; 17 + hash = "sha256-Pvl4t0nUHAwTdkR2fEFuFpLn2Hz5kw3IBFYDWSmGyXA="; 18 }; 19 20 + vendorHash = "sha256-WYewelAUkXLD6cwnJQ/jAYP99qq4HjEnJ4HwNUksHZU="; 21 # go mod vendor has a bug, see: https://github.com/golang/go/issues/57529 22 proxyVendor = true; 23
+80
pkgs/applications/networking/browsers/firefox/122.0-libvpx-mozbz1875201.patch
···
··· 1 + This patch is a rebase of https://bugzilla.mozilla.org/attachment.cgi?id=9377318 2 + on top of Firefox 122.0. 3 + 4 + Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1875201 5 + 6 + diff --git a/third_party/libwebrtc/modules/video_coding/webrtc_libvpx_interface_gn/moz.build b/third_party/libwebrtc/modules/video_coding/webrtc_libvpx_interface_gn/moz.build 7 + index c5dabce8b0..e325905282 100644 8 + --- a/third_party/libwebrtc/modules/video_coding/webrtc_libvpx_interface_gn/moz.build 9 + +++ b/third_party/libwebrtc/modules/video_coding/webrtc_libvpx_interface_gn/moz.build 10 + @@ -5,6 +5,8 @@ 11 + 12 + ### This moz.build was AUTOMATICALLY GENERATED from a GN config, ### 13 + ### DO NOT edit it by hand. ### 14 + +if not CONFIG["MOZ_SYSTEM_LIBVPX"]: 15 + + LOCAL_INCLUDES += [ "/media/libvpx/libvpx/" ] 16 + 17 + COMPILE_FLAGS["OS_INCLUDES"] = [] 18 + AllowCompilerWarnings() 19 + @@ -25,7 +27,6 @@ LOCAL_INCLUDES += [ 20 + "!/ipc/ipdl/_ipdlheaders", 21 + "!/third_party/libwebrtc/gen", 22 + "/ipc/chromium/src", 23 + - "/media/libvpx/libvpx/", 24 + "/third_party/libwebrtc/", 25 + "/third_party/libwebrtc/third_party/abseil-cpp/", 26 + "/tools/profiler/public" 27 + diff --git a/third_party/libwebrtc/modules/video_coding/webrtc_vp8_gn/moz.build b/third_party/libwebrtc/modules/video_coding/webrtc_vp8_gn/moz.build 28 + index 77a6b3870b..d515bc0595 100644 29 + --- a/third_party/libwebrtc/modules/video_coding/webrtc_vp8_gn/moz.build 30 + +++ b/third_party/libwebrtc/modules/video_coding/webrtc_vp8_gn/moz.build 31 + @@ -5,6 +5,8 @@ 32 + 33 + ### This moz.build was AUTOMATICALLY GENERATED from a GN config, ### 34 + ### DO NOT edit it by hand. ### 35 + +if not CONFIG["MOZ_SYSTEM_LIBVPX"]: 36 + + LOCAL_INCLUDES += [ "/media/libvpx/libvpx/" ] 37 + 38 + COMPILE_FLAGS["OS_INCLUDES"] = [] 39 + AllowCompilerWarnings() 40 + @@ -25,7 +27,6 @@ LOCAL_INCLUDES += [ 41 + "!/ipc/ipdl/_ipdlheaders", 42 + "!/third_party/libwebrtc/gen", 43 + "/ipc/chromium/src", 44 + - "/media/libvpx/libvpx/", 45 + "/media/libyuv/", 46 + "/media/libyuv/libyuv/include/", 47 + "/third_party/libwebrtc/", 48 + diff --git a/third_party/libwebrtc/modules/video_coding/webrtc_vp9_gn/moz.build b/third_party/libwebrtc/modules/video_coding/webrtc_vp9_gn/moz.build 49 + index 4bece72807..5cc8d30e1a 100644 50 + --- a/third_party/libwebrtc/modules/video_coding/webrtc_vp9_gn/moz.build 51 + +++ b/third_party/libwebrtc/modules/video_coding/webrtc_vp9_gn/moz.build 52 + @@ -5,6 +5,8 @@ 53 + 54 + ### This moz.build was AUTOMATICALLY GENERATED from a GN config, ### 55 + ### DO NOT edit it by hand. ### 56 + +if not CONFIG["MOZ_SYSTEM_LIBVPX"]: 57 + + LOCAL_INCLUDES += [ "/media/libvpx/libvpx/" ] 58 + 59 + COMPILE_FLAGS["OS_INCLUDES"] = [] 60 + AllowCompilerWarnings() 61 + @@ -25,7 +27,6 @@ LOCAL_INCLUDES += [ 62 + "!/ipc/ipdl/_ipdlheaders", 63 + "!/third_party/libwebrtc/gen", 64 + "/ipc/chromium/src", 65 + - "/media/libvpx/libvpx/", 66 + "/media/libyuv/", 67 + "/media/libyuv/libyuv/include/", 68 + "/third_party/libwebrtc/", 69 + diff --git a/third_party/libwebrtc/moz.build b/third_party/libwebrtc/moz.build 70 + index 7baea55b7e..86d4f0f288 100644 71 + --- a/third_party/libwebrtc/moz.build 72 + +++ b/third_party/libwebrtc/moz.build 73 + @@ -436,7 +436,6 @@ DIRS += [ 74 + "/third_party/libwebrtc/third_party/abseil-cpp/absl/types/span_gn", 75 + "/third_party/libwebrtc/third_party/abseil-cpp/absl/types/variant_gn", 76 + "/third_party/libwebrtc/third_party/abseil-cpp/absl/utility/utility_gn", 77 + - "/third_party/libwebrtc/third_party/libvpx/libvpx_gn", 78 + "/third_party/libwebrtc/third_party/libyuv/libyuv_gn", 79 + "/third_party/libwebrtc/third_party/pffft/pffft_gn", 80 + "/third_party/libwebrtc/third_party/rnnoise/rnn_vad_gn",
+3
pkgs/applications/networking/browsers/firefox/common.nix
··· 245 hash = "sha256-cWOyvjIPUU1tavPRqg61xJ53XE4EJTdsFzadfVxyTyM="; 246 }) 247 ] 248 ++ extraPatches; 249 250 postPatch = ''
··· 245 hash = "sha256-cWOyvjIPUU1tavPRqg61xJ53XE4EJTdsFzadfVxyTyM="; 246 }) 247 ] 248 + ++ lib.optionals (lib.versionAtLeast version "122" && lib.versionOlder version "122.0.1") [ 249 + ./122.0-libvpx-mozbz1875201.patch 250 + ] 251 ++ extraPatches; 252 253 postPatch = ''
+2 -2
pkgs/applications/networking/browsers/opera/default.nix
··· 51 in 52 stdenv.mkDerivation rec { 53 pname = "opera"; 54 - version = "106.0.4998.52"; 55 56 src = fetchurl { 57 url = "${mirror}/${version}/linux/${pname}-stable_${version}_amd64.deb"; 58 - hash = "sha256-JTnKjK+ccMAef/VZuDpWS+FFDq6lolen0plckcPA+9w="; 59 }; 60 61 unpackPhase = "dpkg-deb -x $src .";
··· 51 in 52 stdenv.mkDerivation rec { 53 pname = "opera"; 54 + version = "106.0.4998.70"; 55 56 src = fetchurl { 57 url = "${mirror}/${version}/linux/${pname}-stable_${version}_amd64.deb"; 58 + hash = "sha256-JTLu59x5fthTKwP4cTX8pabRWFVhkatGNm0bV2yHBxE="; 59 }; 60 61 unpackPhase = "dpkg-deb -x $src .";
+3 -3
pkgs/applications/networking/cluster/acorn/default.nix
··· 2 3 buildGoModule rec { 4 pname = "acorn"; 5 - version = "0.9.2"; 6 7 src = fetchFromGitHub { 8 owner = "acorn-io"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-l9V6URc5wY30z6W76n3xrGMHC43kDWfx0+1eznmcVi4="; 12 }; 13 14 - vendorHash = "sha256-EJ66rX0Pv6KG9wiEZq1POf6CODbENP/LbS6qZkn3XWs="; 15 16 ldflags = [ 17 "-s"
··· 2 3 buildGoModule rec { 4 pname = "acorn"; 5 + version = "0.10.0"; 6 7 src = fetchFromGitHub { 8 owner = "acorn-io"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-U4VQ8PsmJxeMYj7TlsQQOEPckECDK+ENBQLjq5VFyJ4="; 12 }; 13 14 + vendorHash = "sha256-FZJqE7BWGvXsFsfxnnaKUFLInBzz+bUwURq4KvSMrus="; 15 16 ldflags = [ 17 "-s"
+3 -3
pkgs/applications/networking/cluster/argo/default.nix
··· 34 in 35 buildGoModule rec { 36 pname = "argo"; 37 - version = "3.5.2"; 38 39 src = fetchFromGitHub { 40 owner = "argoproj"; 41 repo = "argo"; 42 rev = "refs/tags/v${version}"; 43 - hash = "sha256-gEf3D+hrfi0Dw0RPwV1qcs01vZMGg5EZvEvSnRgkv6M="; 44 }; 45 46 - vendorHash = "sha256-oGQTs7qL8jSoku00EbsZKGWfG5VTkIyE3810wOkokQs="; 47 48 doCheck = false; 49
··· 34 in 35 buildGoModule rec { 36 pname = "argo"; 37 + version = "3.5.4"; 38 39 src = fetchFromGitHub { 40 owner = "argoproj"; 41 repo = "argo"; 42 rev = "refs/tags/v${version}"; 43 + hash = "sha256-23O8YNnMONrlWcTj6gxXQ0xJw0s0pa/ZoY0OKhzEv5o="; 44 }; 45 46 + vendorHash = "sha256-bUCbrHr7N3IB0tnnQ0TlHjaW7tp4iIGFO28KoJEj2sg="; 47 48 doCheck = false; 49
+2 -2
pkgs/applications/networking/cluster/flink/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "flink"; 5 - version = "1.18.0"; 6 7 src = fetchurl { 8 url = "mirror://apache/flink/${pname}-${version}/${pname}-${version}-bin-scala_2.12.tgz"; 9 - sha256 = "sha256-mwlpRx/snaTymCubVLTnvN5SpXO2EWl9qZ8seNtNKtI="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "flink"; 5 + version = "1.18.1"; 6 7 src = fetchurl { 8 url = "mirror://apache/flink/${pname}-${version}/${pname}-${version}-bin-scala_2.12.tgz"; 9 + sha256 = "sha256-EHyCdOimHIGlggjDnXmgk0+hBDfOjEvIafMMNSCeRak="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/applications/networking/cluster/glooctl/default.nix
··· 6 7 buildGoModule rec { 8 pname = "glooctl"; 9 - version = "1.15.19"; 10 11 src = fetchFromGitHub { 12 owner = "solo-io"; 13 repo = "gloo"; 14 rev = "v${version}"; 15 - hash = "sha256-Tv+S0DnYOabtAVrb7W+VHzugGu2Dm2fBYsoz/DwR4xg="; 16 }; 17 18 - vendorHash = "sha256-MrTiZCvYUmdX4sK85jeeQpUupvitH6PfbQ+RfwELaV4="; 19 20 subPackages = [ "projects/gloo/cli/cmd" ]; 21
··· 6 7 buildGoModule rec { 8 pname = "glooctl"; 9 + version = "1.16.3"; 10 11 src = fetchFromGitHub { 12 owner = "solo-io"; 13 repo = "gloo"; 14 rev = "v${version}"; 15 + hash = "sha256-BGyaYINFFCqEH+UH8XqKom+2eUhgPRF3cMp9fq3whpI="; 16 }; 17 18 + vendorHash = "sha256-GTd38gSlCKTjfLkAW/Tz22oQJ4FhZB+9vpN/8q4JSCo="; 19 20 subPackages = [ "projects/gloo/cli/cmd" ]; 21
+3 -3
pkgs/applications/networking/cluster/helm/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kubernetes-helm"; 5 - version = "3.13.3"; 6 7 src = fetchFromGitHub { 8 owner = "helm"; 9 repo = "helm"; 10 rev = "v${version}"; 11 - sha256 = "sha256-tU6RdVdcOvNYgnVmeDVKVuKY5GLeqVzpleq6qNwD2yI="; 12 }; 13 - vendorHash = "sha256-ve2T2O9cISshAe5uAyXYZ6Mbb1TPhOqhV8vkF5uMrhY="; 14 15 subPackages = [ "cmd/helm" ]; 16 ldflags = [
··· 2 3 buildGoModule rec { 4 pname = "kubernetes-helm"; 5 + version = "3.14.0"; 6 7 src = fetchFromGitHub { 8 owner = "helm"; 9 repo = "helm"; 10 rev = "v${version}"; 11 + sha256 = "sha256-xkMPROdhZ6mq839aMkpCvYIU8SVt48K0n17WnYFfQ+0="; 12 }; 13 + vendorHash = "sha256-pYB9J7Zf6MApGpFL7HzqIDcC/vERiVE4z8SsipIeJ7c="; 14 15 subPackages = [ "cmd/helm" ]; 16 ldflags = [
+2 -2
pkgs/applications/networking/cluster/kubectl-cnpg/default.nix
··· 5 6 buildGoModule rec { 7 pname = "kubectl-cnpg"; 8 - version = "1.22.0"; 9 10 src = fetchFromGitHub { 11 owner = "cloudnative-pg"; 12 repo = "cloudnative-pg"; 13 rev = "v${version}"; 14 - hash = "sha256-qaIpx8iZhkGEW8MZNgI6rMopNuz+FPpoVBDs9z+BJa0="; 15 }; 16 17 vendorHash = "sha256-SCeKoxI1zFzSwLAdAa1YI3DiyfK/uOk7CmWwQWVeF7g=";
··· 5 6 buildGoModule rec { 7 pname = "kubectl-cnpg"; 8 + version = "1.22.1"; 9 10 src = fetchFromGitHub { 11 owner = "cloudnative-pg"; 12 repo = "cloudnative-pg"; 13 rev = "v${version}"; 14 + hash = "sha256-mKQuHswnoxgqQOCiQFbibg6MqACOxM73XngQai6s6To="; 15 }; 16 17 vendorHash = "sha256-SCeKoxI1zFzSwLAdAa1YI3DiyfK/uOk7CmWwQWVeF7g=";
+2 -2
pkgs/applications/networking/cluster/luigi/default.nix
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "luigi"; 5 - version = "3.3.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "sha256-zIZC3rbiLwYB7o34rT3mOagVIbfmY6elBEkZGFrSs1c="; 10 }; 11 12 propagatedBuildInputs = with python3.pkgs; [ python-dateutil tornado python-daemon boto3 tenacity ];
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "luigi"; 5 + version = "3.5.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-0+3gSWZlXBO8T0c/Y5AmjGLoPExFQNeJNsTxJJbk8Sg="; 10 }; 11 12 propagatedBuildInputs = with python3.pkgs; [ python-dateutil tornado python-daemon boto3 tenacity ];
+3 -3
pkgs/applications/networking/cluster/pachyderm/default.nix
··· 2 3 buildGoModule rec { 4 pname = "pachyderm"; 5 - version = "2.8.2"; 6 7 src = fetchFromGitHub { 8 owner = "pachyderm"; 9 repo = "pachyderm"; 10 rev = "v${version}"; 11 - hash = "sha256-h+0fapvAWu+W29Z8tZn6evhaGBM0u4odTz9ExCvsqB4="; 12 }; 13 14 - vendorHash = "sha256-dYQicGlk+G3l03yb+PlIaMzwRcWqC1TPqQ4Akm8xJF8="; 15 16 subPackages = [ "src/server/cmd/pachctl" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "pachyderm"; 5 + version = "2.8.4"; 6 7 src = fetchFromGitHub { 8 owner = "pachyderm"; 9 repo = "pachyderm"; 10 rev = "v${version}"; 11 + hash = "sha256-W6UXkMn+FsqjPFK2t8taJRZPnvLJe9/P3mhOAwjNW/Q="; 12 }; 13 14 + vendorHash = "sha256-IRTzptluBxGm14IKK4n+2hfPrQ9YcqYA16WgbRkTV/s="; 15 16 subPackages = [ "src/server/cmd/pachctl" ]; 17
+2 -2
pkgs/applications/networking/cluster/rke/default.nix
··· 2 3 buildGoModule rec { 4 pname = "rke"; 5 - version = "1.5.1"; 6 7 src = fetchFromGitHub { 8 owner = "rancher"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-9Oxl77yDoWckdtddMgyNQIGgjMGA/5+B3qyyA2pQ3DY="; 12 }; 13 14 vendorHash = "sha256-eH4FBfX9LNb1UgSRsYSd1Fn2Ju+cL6t64u+/sf9uzNM=";
··· 2 3 buildGoModule rec { 4 pname = "rke"; 5 + version = "1.5.3"; 6 7 src = fetchFromGitHub { 8 owner = "rancher"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-p1hkiXHwh8Vo2LIP1BeE5XSc/gKjn9XN30usGwCVj7w="; 12 }; 13 14 vendorHash = "sha256-eH4FBfX9LNb1UgSRsYSd1Fn2Ju+cL6t64u+/sf9uzNM=";
+3 -3
pkgs/applications/networking/cluster/waagent/default.nix
··· 14 in 15 python.pkgs.buildPythonApplication rec { 16 pname = "waagent"; 17 - version = "2.8.0.11"; 18 src = fetchFromGitHub { 19 owner = "Azure"; 20 repo = "WALinuxAgent"; 21 - rev = "04ded9f0b708cfaf4f9b68eead1aef4cc4f32eeb"; 22 - sha256 = "0fvjanvsz1zyzhbjr2alq5fnld43mdd776r2qid5jy5glzv0xbhf"; 23 }; 24 patches = [ 25 # Suppress the following error when waagent tries to configure sshd:
··· 14 in 15 python.pkgs.buildPythonApplication rec { 16 pname = "waagent"; 17 + version = "2.9.1.1"; 18 src = fetchFromGitHub { 19 owner = "Azure"; 20 repo = "WALinuxAgent"; 21 + rev = "refs/tags/v${version}"; 22 + sha256 = "sha256-lnCDGUhAPNP8RNfDi+oUTEJ4x3ln6COqTrgk9rZWWEM="; 23 }; 24 patches = [ 25 # Suppress the following error when waagent tries to configure sshd:
+3 -3
pkgs/applications/networking/coreth/default.nix
··· 6 7 buildGoModule rec { 8 pname = "coreth"; 9 - version = "0.12.7"; 10 11 src = fetchFromGitHub { 12 owner = "ava-labs"; 13 repo = pname; 14 rev = "v${version}"; 15 - hash = "sha256-voNUnQ0CWM0aGiVkIucn6eRJCp0ajz7hYKBFkYsKPu0="; 16 }; 17 18 # go mod vendor has a bug, see: golang/go#57529 19 proxyVendor = true; 20 21 - vendorHash = "sha256-adxPB3JPnAf6AxUZjgciK7nJguQWyeYy2/qfePVUouE="; 22 23 ldflags = [ 24 "-s"
··· 6 7 buildGoModule rec { 8 pname = "coreth"; 9 + version = "0.12.10"; 10 11 src = fetchFromGitHub { 12 owner = "ava-labs"; 13 repo = pname; 14 rev = "v${version}"; 15 + hash = "sha256-0Wx1dr/jH9OOjxJ4PPmdWIru+QVpsGvVV/VxLY+M+E4="; 16 }; 17 18 # go mod vendor has a bug, see: golang/go#57529 19 proxyVendor = true; 20 21 + vendorHash = "sha256-kPeUe0kr1LmtGuscRC3AhKb6Cn4TFFxm1gZ6W6nPA28="; 22 23 ldflags = [ 24 "-s"
+2 -2
pkgs/applications/networking/datovka/default.nix
··· 12 13 mkDerivation rec { 14 pname = "datovka"; 15 - version = "4.23.1"; 16 17 src = fetchurl { 18 url = "https://gitlab.nic.cz/datovka/datovka/-/archive/v${version}/datovka-v${version}.tar.gz"; 19 - sha256 = "sha256-n8k+OzE7tRvnWzS7ancW0ZP3dUbXPUvqwzvECLkuVS4="; 20 }; 21 22 buildInputs = [ libdatovka qmake qtbase qtsvg libxml2 qtwebsockets ];
··· 12 13 mkDerivation rec { 14 pname = "datovka"; 15 + version = "4.23.4"; 16 17 src = fetchurl { 18 url = "https://gitlab.nic.cz/datovka/datovka/-/archive/v${version}/datovka-v${version}.tar.gz"; 19 + sha256 = "sha256-xyRUm6DaxlIFmeskQuUMu6JV3QtzgOZf/pLiBNGUBRo="; 20 }; 21 22 buildInputs = [ libdatovka qmake qtbase qtsvg libxml2 qtwebsockets ];
+1 -1
pkgs/applications/networking/instant-messengers/discord/linux.nix
··· 11 , branch 12 , withOpenASAR ? false, openasar 13 , withVencord ? false, vencord 14 - , withTTS ? false }: 15 16 let 17 disableBreakingUpdates = runCommand "disable-breaking-updates.py"
··· 11 , branch 12 , withOpenASAR ? false, openasar 13 , withVencord ? false, vencord 14 + , withTTS ? true }: 15 16 let 17 disableBreakingUpdates = runCommand "disable-breaking-updates.py"
+3 -3
pkgs/applications/networking/instant-messengers/teams-for-linux/default.nix
··· 19 20 stdenv.mkDerivation (finalAttrs: { 21 pname = "teams-for-linux"; 22 - version = "1.4.6"; 23 24 src = fetchFromGitHub { 25 owner = "IsmaelMartinez"; 26 repo = "teams-for-linux"; 27 rev = "v${finalAttrs.version}"; 28 - hash = "sha256-aaUWc0G7KY3PwlIysoL++l7na2M5sxQFW2YsO0AIRY8="; 29 }; 30 31 offlineCache = fetchYarnDeps { 32 yarnLock = "${finalAttrs.src}/yarn.lock"; 33 - hash = "sha256-AmCr3IH7A260HTT0VGWQ7DdB8yp0mKnh2pq7ZgFaA7k="; 34 }; 35 36 nativeBuildInputs = [ yarn prefetch-yarn-deps nodejs copyDesktopItems makeWrapper ];
··· 19 20 stdenv.mkDerivation (finalAttrs: { 21 pname = "teams-for-linux"; 22 + version = "1.4.10"; 23 24 src = fetchFromGitHub { 25 owner = "IsmaelMartinez"; 26 repo = "teams-for-linux"; 27 rev = "v${finalAttrs.version}"; 28 + hash = "sha256-dR9YJJBBxvnJkD42+MwIql3B1dlA6WUSLJ//lW22mmc="; 29 }; 30 31 offlineCache = fetchYarnDeps { 32 yarnLock = "${finalAttrs.src}/yarn.lock"; 33 + hash = "sha256-Z2vnLr14F/Etuq9yWH7ygQwa54an7v99LbU3gPcEuII="; 34 }; 35 36 nativeBuildInputs = [ yarn prefetch-yarn-deps nodejs copyDesktopItems makeWrapper ];
+6 -6
pkgs/applications/networking/instant-messengers/zoom-us/default.nix
··· 48 # and often with different versions. We write them on three lines 49 # like this (rather than using {}) so that the updater script can 50 # find where to edit them. 51 - versions.aarch64-darwin = "5.17.1.27701"; 52 - versions.x86_64-darwin = "5.17.1.27701"; 53 - versions.x86_64-linux = "5.17.1.1840"; 54 55 srcs = { 56 aarch64-darwin = fetchurl { 57 url = "https://zoom.us/client/${versions.aarch64-darwin}/zoomusInstallerFull.pkg?archType=arm64"; 58 name = "zoomusInstallerFull.pkg"; 59 - hash = "sha256-r+TCbpvdiZd+oPglJ8D1dgZhlu4nJiAgeihQMBFFydA="; 60 }; 61 x86_64-darwin = fetchurl { 62 url = "https://zoom.us/client/${versions.x86_64-darwin}/zoomusInstallerFull.pkg"; 63 - hash = "sha256-ofCJ1K2u/jlNjiHa/zhV2n5v1I540KqTbDjdfZRmcAo="; 64 }; 65 x86_64-linux = fetchurl { 66 url = "https://zoom.us/client/${versions.x86_64-linux}/zoom_x86_64.pkg.tar.xz"; 67 - hash = "sha256-nuYyTAZ3J6i6gpoRJxhskWfBCf/SWmU0lfEvPSSWXR4="; 68 }; 69 }; 70
··· 48 # and often with different versions. We write them on three lines 49 # like this (rather than using {}) so that the updater script can 50 # find where to edit them. 51 + versions.aarch64-darwin = "5.17.5.29101"; 52 + versions.x86_64-darwin = "5.17.5.29101"; 53 + versions.x86_64-linux = "5.17.5.2543"; 54 55 srcs = { 56 aarch64-darwin = fetchurl { 57 url = "https://zoom.us/client/${versions.aarch64-darwin}/zoomusInstallerFull.pkg?archType=arm64"; 58 name = "zoomusInstallerFull.pkg"; 59 + hash = "sha256-Zq/8r4Ny9m+Ym6YMm49iMoITvkGO9q1DxQ0IqHC/7Us="; 60 }; 61 x86_64-darwin = fetchurl { 62 url = "https://zoom.us/client/${versions.x86_64-darwin}/zoomusInstallerFull.pkg"; 63 + hash = "sha256-/GTBPIswV+YSvnbrSYefrLfcv5eXsRCe3vaTDGmptl8="; 64 }; 65 x86_64-linux = fetchurl { 66 url = "https://zoom.us/client/${versions.x86_64-linux}/zoom_x86_64.pkg.tar.xz"; 67 + hash = "sha256-R8LHyL5ojnaLBk00W997PtnKzDwMaADIpYClKDYkJcQ="; 68 }; 69 }; 70
+10 -25
pkgs/applications/networking/mailreaders/himalaya/default.nix
··· 8 , installManPages ? stdenv.hostPlatform == stdenv.buildPlatform 9 , notmuch 10 , gpgme 11 - , withMaildir ? true 12 - , withImap ? true 13 - , withNotmuch ? false 14 - , withSendmail ? true 15 - , withSmtp ? true 16 - , withPgpCommands ? false 17 - , withPgpGpg ? false 18 - , withPgpNative ? false 19 }: 20 21 rustPlatform.buildRustPackage rec { 22 pname = "himalaya"; 23 - version = "1.0.0-beta"; 24 25 src = fetchFromGitHub { 26 owner = "soywod"; 27 repo = pname; 28 rev = "v${version}"; 29 - hash = "sha256-39XYtxmo/12hkCS7zVIQi3UbLzaIKH1OwfdDB/ghU98="; 30 }; 31 32 - cargoSha256 = "HIDmBPrcOcK2coTaD4v8ntIZrv2SwTa8vUTG8Ky4RhM="; 33 34 nativeBuildInputs = [ ] 35 - ++ lib.optional withPgpGpg pkg-config 36 ++ lib.optional (installManPages || installShellCompletions) installShellFiles; 37 38 buildInputs = [ ] 39 - ++ lib.optional withNotmuch notmuch 40 - ++ lib.optional withPgpGpg gpgme; 41 - 42 - buildNoDefaultFeatures = true; 43 - buildFeatures = [ ] 44 - ++ lib.optional withMaildir "maildir" 45 - ++ lib.optional withImap "imap" 46 - ++ lib.optional withNotmuch "notmuch" 47 - ++ lib.optional withSmtp "smtp" 48 - ++ lib.optional withSendmail "sendmail" 49 - ++ lib.optional withPgpCommands "pgp-commands" 50 - ++ lib.optional withPgpGpg "pgp-gpg" 51 - ++ lib.optional withPgpNative "pgp-native"; 52 53 postInstall = lib.optionalString installManPages '' 54 mkdir -p $out/man
··· 8 , installManPages ? stdenv.hostPlatform == stdenv.buildPlatform 9 , notmuch 10 , gpgme 11 + , buildNoDefaultFeatures ? false 12 + , buildFeatures ? [] 13 }: 14 15 rustPlatform.buildRustPackage rec { 16 + inherit buildNoDefaultFeatures buildFeatures; 17 + 18 pname = "himalaya"; 19 + version = "1.0.0-beta.2"; 20 21 src = fetchFromGitHub { 22 owner = "soywod"; 23 repo = pname; 24 rev = "v${version}"; 25 + hash = "sha256-dLj/bEPz3SD1v54yXbtVdUJKQsyw0OJxmQh10ql+3iI="; 26 }; 27 28 + cargoSha256 = "0IYpuKq5amAcYtsDMzJGghbxkuldAulsgUmChTl2DIg="; 29 30 nativeBuildInputs = [ ] 31 + ++ lib.optional (builtins.elem "pgp-gpg" buildFeatures) pkg-config 32 ++ lib.optional (installManPages || installShellCompletions) installShellFiles; 33 34 buildInputs = [ ] 35 + ++ lib.optional (builtins.elem "notmuch" buildFeatures) notmuch 36 + ++ lib.optional (builtins.elem "pgp-gpg" buildFeatures) gpgme; 37 38 postInstall = lib.optionalString installManPages '' 39 mkdir -p $out/man
+3 -3
pkgs/applications/networking/syncthing/default.nix
··· 13 common = { stname, target, postInstall ? "" }: 14 buildGoModule rec { 15 pname = stname; 16 - version = "1.27.1"; 17 18 src = fetchFromGitHub { 19 owner = "syncthing"; 20 repo = "syncthing"; 21 rev = "v${version}"; 22 - hash = "sha256-nQQSXEPCe+cz1c0U/ui0xe6bxUOagGJg+kRxDMmOiy0="; 23 }; 24 25 - vendorHash = "sha256-QYURWIE7SRQFXh2scrREKhUuTPjpqzPojfmcdJW1ogQ="; 26 27 nativeBuildInputs = lib.optionals stdenv.isDarwin [ 28 # Recent versions of macOS seem to require binaries to be signed when
··· 13 common = { stname, target, postInstall ? "" }: 14 buildGoModule rec { 15 pname = stname; 16 + version = "1.27.2"; 17 18 src = fetchFromGitHub { 19 owner = "syncthing"; 20 repo = "syncthing"; 21 rev = "v${version}"; 22 + hash = "sha256-CDOWN2b7DCRqhbJmiz4zp+q03GwmuVKv1MZT3NaO7lI="; 23 }; 24 25 + vendorHash = "sha256-3MWVx0N17YgvFira56gvqMJlR1o/udtmWBn9oEVEp04="; 26 27 nativeBuildInputs = lib.optionals stdenv.isDarwin [ 28 # Recent versions of macOS seem to require binaries to be signed when
+2 -2
pkgs/applications/office/pympress/default.nix
··· 13 14 python3Packages.buildPythonApplication rec { 15 pname = "pympress"; 16 - version = "1.8.4"; 17 18 src = fetchPypi { 19 inherit version; 20 pname = "pympress"; 21 - hash = "sha256-3cnCHGoKUX0gTzIx1khM+br6x9+g9WXh28SLhm99eN4="; 22 }; 23 24 nativeBuildInputs = [
··· 13 14 python3Packages.buildPythonApplication rec { 15 pname = "pympress"; 16 + version = "1.8.5"; 17 18 src = fetchPypi { 19 inherit version; 20 pname = "pympress"; 21 + hash = "sha256-Kb05EV0F8lTamTq7pC1UoOkYf04s58NjMksVE2xTC/Y="; 22 }; 23 24 nativeBuildInputs = [
+2 -2
pkgs/applications/office/ticktick/default.nix
··· 15 }: 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "ticktick"; 18 - version = "2.0.0"; 19 20 src = fetchurl { 21 url = "https://d2atcrkye2ik4e.cloudfront.net/download/linux/linux_deb_x64/${finalAttrs.pname}-${finalAttrs.version}-amd64.deb"; 22 - hash = "sha256-LOllYdte+Y+pbjXI2zOQrwptmUo4Ck6OyYoEX6suY08="; 23 }; 24 25 nativeBuildInputs = [
··· 15 }: 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "ticktick"; 18 + version = "2.0.10"; 19 20 src = fetchurl { 21 url = "https://d2atcrkye2ik4e.cloudfront.net/download/linux/linux_deb_x64/${finalAttrs.pname}-${finalAttrs.version}-amd64.deb"; 22 + hash = "sha256-wign7U1p4HX6/RwnMm2iVSNaYRhn8Ia6QQd5X6m3B0E="; 23 }; 24 25 nativeBuildInputs = [
+2 -2
pkgs/applications/radio/fldigi/default.nix
··· 18 19 stdenv.mkDerivation rec { 20 pname = "fldigi"; 21 - version = "4.2.03"; 22 23 src = fetchurl { 24 url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz"; 25 - hash = "sha256-tcJYpIeFgoC+jXIdvc1ix+/6v9oPccfxgQbL0wIIKaY="; 26 }; 27 28 nativeBuildInputs = [ pkg-config ];
··· 18 19 stdenv.mkDerivation rec { 20 pname = "fldigi"; 21 + version = "4.2.04"; 22 23 src = fetchurl { 24 url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz"; 25 + hash = "sha256-crVeX9vtvn1O5ah1dc74425qUKcozKlDMVeIefMpktY="; 26 }; 27 28 nativeBuildInputs = [ pkg-config ];
+2 -2
pkgs/applications/radio/quisk/default.nix
··· 8 9 python3.pkgs.buildPythonApplication rec { 10 pname = "quisk"; 11 - version = "4.2.28"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "sha256-Hb5XLcAOdf9KxoAWnNpQzkp7dxp3mbfClbdoz4/BRso="; 16 }; 17 18 buildInputs = [
··· 8 9 python3.pkgs.buildPythonApplication rec { 10 pname = "quisk"; 11 + version = "4.2.29"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + sha256 = "sha256-xG6nRSk0txUMPPuNRK+hOeqLfCfPt6KcacAtcdZT5E8="; 16 }; 17 18 buildInputs = [
+2 -2
pkgs/applications/science/biology/bowtie2/default.nix
··· 12 13 stdenv.mkDerivation (finalAttrs: { 14 pname = "bowtie2"; 15 - version = "2.5.2"; 16 17 src = fetchFromGitHub { 18 owner = "BenLangmead"; 19 repo = "bowtie2"; 20 rev = "refs/tags/v${finalAttrs.version}"; 21 fetchSubmodules = true; 22 - hash = "sha256-rWeopeYuCk9ZhJX2SFCcxZWcjXjjTiVRiwkzLQcIgd0="; 23 }; 24 25 # because of this flag, gcc on aarch64 cannot find the Threads
··· 12 13 stdenv.mkDerivation (finalAttrs: { 14 pname = "bowtie2"; 15 + version = "2.5.3"; 16 17 src = fetchFromGitHub { 18 owner = "BenLangmead"; 19 repo = "bowtie2"; 20 rev = "refs/tags/v${finalAttrs.version}"; 21 fetchSubmodules = true; 22 + hash = "sha256-vjJRA9KFfJChxxg2wxBkwsnDw7fx5SNH3JhRXQw+7XA="; 23 }; 24 25 # because of this flag, gcc on aarch64 cannot find the Threads
+2 -2
pkgs/applications/science/biology/eggnog-mapper/default.nix
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "eggnog-mapper"; 11 - version = "2.1.10"; 12 13 src = fetchFromGitHub { 14 owner = "eggnogdb"; 15 repo = pname; 16 rev = "refs/tags/${version}"; 17 - hash = "sha256-6R2gl2l2Cl/eva0g+kxDLBI2+5T9cFTgaGMsEfeDVU0="; 18 }; 19 20 postPatch = ''
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "eggnog-mapper"; 11 + version = "2.1.12"; 12 13 src = fetchFromGitHub { 14 owner = "eggnogdb"; 15 repo = pname; 16 rev = "refs/tags/${version}"; 17 + hash = "sha256-+luxXQmtGufYrA/9Ak3yKzbotOj2HM3vhIoOxE+Ty1U="; 18 }; 19 20 postPatch = ''
+3 -3
pkgs/applications/science/biology/seqkit/default.nix
··· 5 6 buildGoModule rec { 7 pname = "seqkit"; 8 - version = "2.6.1"; 9 10 src = fetchFromGitHub { 11 owner = "shenwei356"; 12 repo = "seqkit"; 13 rev = "v${version}"; 14 - sha256 = "sha256-zdn5jyb8mQ8CXHu3bHpZ7+c6K6lwoSLnmhMspMeDzy0="; 15 }; 16 17 - vendorHash = "sha256-iVsLJ7UcUVTg14yEdThb6HBx6XutG0m+S9OW4iiFPUE="; 18 19 meta = with lib; { 20 description = "cross-platform and ultrafast toolkit for FASTA/Q file manipulation";
··· 5 6 buildGoModule rec { 7 pname = "seqkit"; 8 + version = "2.7.0"; 9 10 src = fetchFromGitHub { 11 owner = "shenwei356"; 12 repo = "seqkit"; 13 rev = "v${version}"; 14 + sha256 = "sha256-tnVkFING9BH/iNOdKeCsSk4ln2fLUUpI5ASaQ7CCdrg="; 15 }; 16 17 + vendorHash = "sha256-o7XGBI05BK7kOBagVV2eteJmkzLTmio41KOm46GdzDU="; 18 19 meta = with lib; { 20 description = "cross-platform and ultrafast toolkit for FASTA/Q file manipulation";
+2 -2
pkgs/applications/science/electronics/magic-vlsi/default.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "magic-vlsi"; 16 - version = "8.3.456"; 17 18 src = fetchurl { 19 url = "http://opencircuitdesign.com/magic/archive/magic-${version}.tgz"; 20 - sha256 = "sha256-PrKbLecFJ+th0x9A0fp550RnA8w9oWETMtFpQZP8tzw="; 21 }; 22 23 nativeBuildInputs = [ python3 ];
··· 13 14 stdenv.mkDerivation rec { 15 pname = "magic-vlsi"; 16 + version = "8.3.459"; 17 18 src = fetchurl { 19 url = "http://opencircuitdesign.com/magic/archive/magic-${version}.tgz"; 20 + sha256 = "sha256-ErNFZHZiJ+Cw8QOQREY9ps5/8WoZYEUwj8aIu42dT9Q="; 21 }; 22 23 nativeBuildInputs = [ python3 ];
+2 -5
pkgs/applications/science/electronics/nvc/default.nix
··· 7 , pkg-config 8 , which 9 , elfutils 10 - , libelf 11 , libffi 12 , llvm 13 , zlib ··· 16 17 stdenv.mkDerivation rec { 18 pname = "nvc"; 19 - version = "1.11.2"; 20 21 src = fetchFromGitHub { 22 owner = "nickg"; 23 repo = "nvc"; 24 rev = "r${version}"; 25 - hash = "sha256-qNnai2THSUyvtcnU5+Rdq+/EJe4HXw05bGTRz+wyXM8="; 26 }; 27 28 nativeBuildInputs = [ ··· 40 zstd 41 ] ++ lib.optionals stdenv.isLinux [ 42 elfutils 43 - ] ++ lib.optionals (!stdenv.isLinux) [ 44 - libelf 45 ]; 46 47 preConfigure = ''
··· 7 , pkg-config 8 , which 9 , elfutils 10 , libffi 11 , llvm 12 , zlib ··· 15 16 stdenv.mkDerivation rec { 17 pname = "nvc"; 18 + version = "1.11.3"; 19 20 src = fetchFromGitHub { 21 owner = "nickg"; 22 repo = "nvc"; 23 rev = "r${version}"; 24 + hash = "sha256-Z4YxXPf8uKlASSK9v6fbtHtkUibc9EeA4i+3kD/vBmY="; 25 }; 26 27 nativeBuildInputs = [ ··· 39 zstd 40 ] ++ lib.optionals stdenv.isLinux [ 41 elfutils 42 ]; 43 44 preConfigure = ''
+4 -2
pkgs/applications/science/geometry/gama/default.nix
··· 1 { stdenv, fetchurl, lib, expat, octave, libxml2, texinfo, zip }: 2 stdenv.mkDerivation rec { 3 pname = "gama"; 4 - version = "2.27"; 5 6 src = fetchurl { 7 url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz"; 8 - sha256 = "sha256-k4s7TK/ym68v40KDzZoMMxDWFMRnsMuk6V/G9P/jM0E="; 9 }; 10 11 buildInputs = [ expat ]; 12 13 nativeBuildInputs = [ texinfo zip ]; 14 15 nativeCheckInputs = [ octave libxml2 ]; 16 doCheck = true;
··· 1 { stdenv, fetchurl, lib, expat, octave, libxml2, texinfo, zip }: 2 stdenv.mkDerivation rec { 3 pname = "gama"; 4 + version = "2.28"; 5 6 src = fetchurl { 7 url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz"; 8 + sha256 = "sha256-Xcc/4JB7hyM+KHeO32+JlQWUBfH8RXuOL3Z2P0imaxo="; 9 }; 10 11 buildInputs = [ expat ]; 12 13 nativeBuildInputs = [ texinfo zip ]; 14 + 15 + env.CXXFLAGS = lib.optionalString stdenv.cc.isClang "-include sstream"; 16 17 nativeCheckInputs = [ octave libxml2 ]; 18 doCheck = true;
+2 -2
pkgs/applications/science/logic/workcraft/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "workcraft"; 5 - version = "3.4.1"; 6 7 src = fetchurl { 8 url = "https://github.com/workcraft/workcraft/releases/download/v${version}/workcraft-v${version}-linux.tar.gz"; 9 - sha256 = "sha256-/mh8IN3rGUZIYvyrqnhl0mgnizPZzDduXjQHIDouI38="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "workcraft"; 5 + version = "3.4.2"; 6 7 src = fetchurl { 8 url = "https://github.com/workcraft/workcraft/releases/download/v${version}/workcraft-v${version}-linux.tar.gz"; 9 + sha256 = "sha256-+O6fl/+D89L5xrrTaAnBTfw0tFz/CoKLaBa+OHtdnaA="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/applications/science/misc/bada-bib/default.nix
··· 20 21 python3Packages.buildPythonApplication rec { 22 pname = "bada-bib"; 23 - version = "0.8.0"; 24 format = "other"; 25 26 src = fetchFromGitHub { 27 owner = "RogerCrocker"; 28 repo = "BadaBib"; 29 rev = "refs/tags/v${version}"; 30 - sha256 = "sha256-mdAoJh3qOwtPX8cMCYw7MDDNy10GdhynnS8gtszJROI="; 31 }; 32 33 nativeBuildInputs = [
··· 20 21 python3Packages.buildPythonApplication rec { 22 pname = "bada-bib"; 23 + version = "0.8.1"; 24 format = "other"; 25 26 src = fetchFromGitHub { 27 owner = "RogerCrocker"; 28 repo = "BadaBib"; 29 rev = "refs/tags/v${version}"; 30 + sha256 = "sha256-8lpkmQCVh94+qhFJijAIVyYeJRFz2u/OYR1C5E+gtOE="; 31 }; 32 33 nativeBuildInputs = [
+23 -29
pkgs/applications/terminal-emulators/wezterm/Cargo.lock
··· 99 100 [[package]] 101 name = "anstyle" 102 - version = "1.0.4" 103 source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" 105 106 [[package]] 107 name = "anstyle-parse" ··· 1833 "futures-sink", 1834 "nanorand", 1835 "pin-project", 1836 - "spin 0.9.8", 1837 ] 1838 1839 [[package]] ··· 1845 "futures-core", 1846 "futures-sink", 1847 "nanorand", 1848 - "spin 0.9.8", 1849 ] 1850 1851 [[package]] ··· 3894 3895 [[package]] 3896 name = "pem" 3897 - version = "1.1.1" 3898 source = "registry+https://github.com/rust-lang/crates.io-index" 3899 - checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" 3900 dependencies = [ 3901 - "base64 0.13.1", 3902 ] 3903 3904 [[package]] ··· 4286 4287 [[package]] 4288 name = "pulldown-cmark" 4289 - version = "0.9.5" 4290 source = "registry+https://github.com/rust-lang/crates.io-index" 4291 - checksum = "80eb9f69aec5cd8828765a75f739383fbbe3e8b9d84370bde1cc90487700794a" 4292 dependencies = [ 4293 "bitflags 2.4.2", 4294 "getopts", ··· 4420 4421 [[package]] 4422 name = "rcgen" 4423 - version = "0.9.3" 4424 source = "registry+https://github.com/rust-lang/crates.io-index" 4425 - checksum = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd" 4426 dependencies = [ 4427 "pem", 4428 "ring", ··· 4564 4565 [[package]] 4566 name = "ring" 4567 - version = "0.16.20" 4568 source = "registry+https://github.com/rust-lang/crates.io-index" 4569 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 4570 dependencies = [ 4571 "cc", 4572 "libc", 4573 - "once_cell", 4574 - "spin 0.5.2", 4575 "untrusted", 4576 - "web-sys", 4577 - "winapi", 4578 ] 4579 4580 [[package]] ··· 4796 4797 [[package]] 4798 name = "serde_json" 4799 - version = "1.0.112" 4800 source = "registry+https://github.com/rust-lang/crates.io-index" 4801 - checksum = "4d1bd37ce2324cf3bf85e5a25f96eb4baf0d5aa6eba43e7ae8958870c4ec48ed" 4802 dependencies = [ 4803 "itoa", 4804 "ryu", ··· 4867 4868 [[package]] 4869 name = "serde_yaml" 4870 - version = "0.9.30" 4871 source = "registry+https://github.com/rust-lang/crates.io-index" 4872 - checksum = "b1bf28c79a99f70ee1f1d83d10c875d2e70618417fda01ad1785e027579d9d38" 4873 dependencies = [ 4874 "indexmap 2.2.1", 4875 "itoa", ··· 5136 "wezterm-open-url", 5137 "winapi", 5138 ] 5139 - 5140 - [[package]] 5141 - name = "spin" 5142 - version = "0.5.2" 5143 - source = "registry+https://github.com/rust-lang/crates.io-index" 5144 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 5145 5146 [[package]] 5147 name = "spin" ··· 5895 5896 [[package]] 5897 name = "untrusted" 5898 - version = "0.7.1" 5899 source = "registry+https://github.com/rust-lang/crates.io-index" 5900 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 5901 5902 [[package]] 5903 name = "uom"
··· 99 100 [[package]] 101 name = "anstyle" 102 + version = "1.0.5" 103 source = "registry+https://github.com/rust-lang/crates.io-index" 104 + checksum = "2faccea4cc4ab4a667ce676a30e8ec13922a692c99bb8f5b11f1502c72e04220" 105 106 [[package]] 107 name = "anstyle-parse" ··· 1833 "futures-sink", 1834 "nanorand", 1835 "pin-project", 1836 + "spin", 1837 ] 1838 1839 [[package]] ··· 1845 "futures-core", 1846 "futures-sink", 1847 "nanorand", 1848 + "spin", 1849 ] 1850 1851 [[package]] ··· 3894 3895 [[package]] 3896 name = "pem" 3897 + version = "3.0.3" 3898 source = "registry+https://github.com/rust-lang/crates.io-index" 3899 + checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" 3900 dependencies = [ 3901 + "base64 0.21.7", 3902 + "serde", 3903 ] 3904 3905 [[package]] ··· 4287 4288 [[package]] 4289 name = "pulldown-cmark" 4290 + version = "0.9.6" 4291 source = "registry+https://github.com/rust-lang/crates.io-index" 4292 + checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b" 4293 dependencies = [ 4294 "bitflags 2.4.2", 4295 "getopts", ··· 4421 4422 [[package]] 4423 name = "rcgen" 4424 + version = "0.12.1" 4425 source = "registry+https://github.com/rust-lang/crates.io-index" 4426 + checksum = "48406db8ac1f3cbc7dcdb56ec355343817958a356ff430259bb07baf7607e1e1" 4427 dependencies = [ 4428 "pem", 4429 "ring", ··· 4565 4566 [[package]] 4567 name = "ring" 4568 + version = "0.17.7" 4569 source = "registry+https://github.com/rust-lang/crates.io-index" 4570 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 4571 dependencies = [ 4572 "cc", 4573 + "getrandom", 4574 "libc", 4575 + "spin", 4576 "untrusted", 4577 + "windows-sys 0.48.0", 4578 ] 4579 4580 [[package]] ··· 4796 4797 [[package]] 4798 name = "serde_json" 4799 + version = "1.0.113" 4800 source = "registry+https://github.com/rust-lang/crates.io-index" 4801 + checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" 4802 dependencies = [ 4803 "itoa", 4804 "ryu", ··· 4867 4868 [[package]] 4869 name = "serde_yaml" 4870 + version = "0.9.31" 4871 source = "registry+https://github.com/rust-lang/crates.io-index" 4872 + checksum = "adf8a49373e98a4c5f0ceb5d05aa7c648d75f63774981ed95b7c7443bbd50c6e" 4873 dependencies = [ 4874 "indexmap 2.2.1", 4875 "itoa", ··· 5136 "wezterm-open-url", 5137 "winapi", 5138 ] 5139 5140 [[package]] 5141 name = "spin" ··· 5889 5890 [[package]] 5891 name = "untrusted" 5892 + version = "0.9.0" 5893 source = "registry+https://github.com/rust-lang/crates.io-index" 5894 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 5895 5896 [[package]] 5897 name = "uom"
+2 -2
pkgs/applications/terminal-emulators/wezterm/default.nix
··· 32 33 rustPlatform.buildRustPackage rec { 34 pname = "wezterm"; 35 - version = "20240128-202157-1e552d76"; 36 37 src = fetchFromGitHub { 38 owner = "wez"; 39 repo = pname; 40 rev = version; 41 fetchSubmodules = true; 42 - hash = "sha256-ZmsWTtxW6/Sx2zvuX2aZSiFxoD4g29brby2cd2DCq0o="; 43 }; 44 45 postPatch = ''
··· 32 33 rustPlatform.buildRustPackage rec { 34 pname = "wezterm"; 35 + version = "20240203-110809-5046fc22"; 36 37 src = fetchFromGitHub { 38 owner = "wez"; 39 repo = pname; 40 rev = version; 41 fetchSubmodules = true; 42 + hash = "sha256-Az+HlnK/lRJpUSGm5UKyma1l2PaBKNCGFiaYnLECMX8="; 43 }; 44 45 postPatch = ''
+3 -3
pkgs/applications/version-management/datalad/default.nix
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "datalad"; 5 - version = "0.18.3"; 6 7 src = fetchFromGitHub { 8 owner = "datalad"; 9 repo = pname; 10 - rev = version; 11 - hash = "sha256-vqO37o5NxQk+gHfvhM1I2ea9/q9ZaLWkDEyPYJKEPcs"; 12 }; 13 14 nativeBuildInputs = [ installShellFiles git ];
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "datalad"; 5 + version = "0.19.6"; 6 7 src = fetchFromGitHub { 8 owner = "datalad"; 9 repo = pname; 10 + rev = "refs/tags/${version}"; 11 + hash = "sha256-kCCh1NNbmDjICTjBflxExVus8llADvlRxppOfiwYhN8="; 12 }; 13 14 nativeBuildInputs = [ installShellFiles git ];
+2 -2
pkgs/applications/version-management/ghorg/default.nix
··· 2 3 buildGoModule rec { 4 pname = "ghorg"; 5 - version = "1.9.9"; 6 7 src = fetchFromGitHub { 8 owner = "gabrie30"; 9 repo = "ghorg"; 10 rev = "v${version}"; 11 - sha256 = "sha256-yq95+MHMbzVg8i/55EZBVCVkE3uwD964fAaXWP5aWYw="; 12 }; 13 14 doCheck = false;
··· 2 3 buildGoModule rec { 4 pname = "ghorg"; 5 + version = "1.9.10"; 6 7 src = fetchFromGitHub { 8 owner = "gabrie30"; 9 repo = "ghorg"; 10 rev = "v${version}"; 11 + sha256 = "sha256-UU8iOpfM5RMwlDceDXofs3Nzyy93zcsUOuTGw/kzVe8="; 12 }; 13 14 doCheck = false;
+3 -3
pkgs/applications/version-management/git-crecord/default.nix
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "git-crecord"; 5 - version = "20220324.0"; 6 7 src = fetchFromGitHub { 8 owner = "andrewshadura"; 9 repo = "git-crecord"; 10 - rev = version; 11 - sha256 = "sha256-LWO9vteTIe54zTDWyRotLKIIi5SaGD0c9s7B5aBHm0s="; 12 }; 13 14 propagatedBuildInputs = with python3.pkgs; [ docutils ];
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "git-crecord"; 5 + version = "20230226.0"; 6 7 src = fetchFromGitHub { 8 owner = "andrewshadura"; 9 repo = "git-crecord"; 10 + rev = "refs/tags/${version}"; 11 + sha256 = "sha256-zsrMAD9EU+TvkWfWl9x6WbMXuw7YEz50LxQzSFVkKdQ="; 12 }; 13 14 propagatedBuildInputs = with python3.pkgs; [ docutils ];
+2 -2
pkgs/applications/virtualization/ecs-agent/default.nix
··· 2 3 buildGoModule rec { 4 pname = "amazon-ecs-agent"; 5 - version = "1.79.2"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "aws"; 10 repo = pname; 11 - hash = "sha256-nq9voqmPvNemtUl3rcTSUjzrrk3DbcmZVzVYOdHkU2o="; 12 }; 13 14 vendorHash = null;
··· 2 3 buildGoModule rec { 4 pname = "amazon-ecs-agent"; 5 + version = "1.81.0"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "aws"; 10 repo = pname; 11 + hash = "sha256-k2YFxKHXNCKMMyBZ4HSo6bvtEAAp4rnzobDYK3Q5aCY="; 12 }; 13 14 vendorHash = null;
+3 -3
pkgs/applications/virtualization/kraft/default.nix
··· 7 8 buildGoModule rec { 9 pname = "kraftkit"; 10 - version = "0.7.1"; 11 12 src = fetchFromGitHub { 13 owner = "unikraft"; 14 repo = "kraftkit"; 15 rev = "v${version}"; 16 - hash = "sha256-PfZBuTeibXhKH/upLiCw2jrS2YWTXjj6BABhyUCGMlM="; 17 }; 18 19 - vendorHash = "sha256-3zmtqxgCC9HqUoyMR8xse+U8U/71HYHCHBWzthZiEmw="; 20 21 ldflags = [ 22 "-s"
··· 7 8 buildGoModule rec { 9 pname = "kraftkit"; 10 + version = "0.7.3"; 11 12 src = fetchFromGitHub { 13 owner = "unikraft"; 14 repo = "kraftkit"; 15 rev = "v${version}"; 16 + hash = "sha256-61eH2aFue/qJ7Xmu8ueQvsQ5moVpDkHe9p9bywqRwQY="; 17 }; 18 19 + vendorHash = "sha256-4e7g79C6BofnPXPCuquIPfGL7C9TMSdmlIq2HSrz3eY="; 20 21 ldflags = [ 22 "-s"
+3 -3
pkgs/applications/virtualization/nixpacks/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "nixpacks"; 5 - version = "1.20.0"; 6 7 src = fetchFromGitHub { 8 owner = "railwayapp"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-EaJYuapTWzVD80UyhzjP1q1SCCNmUozf+hUl4wBgC14="; 12 }; 13 14 - cargoHash = "sha256-Vh5mdxxROVthDUzK+PRhl9AY5jcmvhEXP5UqOeqOm6o="; 15 16 # skip test due FHS dependency 17 doCheck = false;
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "nixpacks"; 5 + version = "1.21.0"; 6 7 src = fetchFromGitHub { 8 owner = "railwayapp"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-S7Kgp1KNp8GTGp+Go7pUdRJTZLxFsOYfmgcaRBQfeHA="; 12 }; 13 14 + cargoHash = "sha256-5Q5ZUSPI+BQj/2nIx6RsshJQPPoZO4EX07b1rzvXlyU="; 15 16 # skip test due FHS dependency 17 doCheck = false;
+2 -2
pkgs/applications/window-managers/cagebreak/default.nix
··· 25 26 stdenv.mkDerivation rec { 27 pname = "cagebreak"; 28 - version = "2.2.3"; 29 30 src = fetchFromGitHub { 31 owner = "project-repo"; 32 repo = pname; 33 rev = version; 34 - hash = "sha256-ppNzc6ojxF9FkgsqSWBSbtmI9aRc+RGN1R1RQLwCtv0="; 35 }; 36 37 nativeBuildInputs = [
··· 25 26 stdenv.mkDerivation rec { 27 pname = "cagebreak"; 28 + version = "2.3.1"; 29 30 src = fetchFromGitHub { 31 owner = "project-repo"; 32 repo = pname; 33 rev = version; 34 + hash = "sha256-GAANZIEUtuONPBpk0E3fErgOZtm3wB+gWJNwfO6VOTo="; 35 }; 36 37 nativeBuildInputs = [
+49
pkgs/by-name/ad/ad-ldap-enum/package.nix
···
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + , python3 5 + }: 6 + 7 + stdenvNoCC.mkDerivation { 8 + pname = "ad-ldap-enum"; 9 + version = "0-unstable-2023-02-10"; 10 + src = fetchFromGitHub { 11 + owner = "CroweCybersecurity"; 12 + repo = "ad-ldap-enum"; 13 + rev = "60bc5bb111e2708d4bc2157f9ae3d5e0d06ece75"; 14 + hash = "sha256-b77yWmZGyOSQSwnRhGqo501jO6XYd+qpx1pb+zkduVI="; 15 + }; 16 + 17 + buildInputs = [ 18 + (python3.withPackages (ps: with ps; [ 19 + argcomplete 20 + ldap3 21 + openpyxl 22 + ])) 23 + ]; 24 + 25 + installPhase = '' 26 + runHook preInstall 27 + 28 + install -Dm555 ad-ldap-enum.py $out/bin/ad-ldap-enum 29 + 30 + runHook postInstall 31 + ''; 32 + 33 + fixupPhase = '' 34 + runHook preFixup 35 + 36 + patchShebangs $out/bin/ad-ldap-enum 37 + 38 + runHook postFixup 39 + ''; 40 + 41 + meta = with lib; { 42 + description = "An LDAP based Active Directory user and group enumeration tool"; 43 + homepage = "https://github.com/CroweCybersecurity/ad-ldap-enum"; 44 + license = licenses.mit; 45 + maintainers = with maintainers; [ h7x4 ]; 46 + platforms = python3.meta.platforms; 47 + mainProgram = "ad-ldap-enum"; 48 + }; 49 + }
+7 -8
pkgs/by-name/at/atlauncher/package.nix
··· 16 17 dontUnpack = true; 18 19 - buildInputs = [ ]; 20 nativeBuildInputs = [ copyDesktopItems makeWrapper ]; 21 22 installPhase = '' ··· 32 --add-flags "--no-launcher-update" 33 34 mkdir -p $out/share/icons/hicolor/scalable/apps 35 - cp $ICON $out/share/icons/hicolor/scalable/apps/${finalAttrs.pname}.svg 36 37 runHook postInstall 38 ''; 39 40 desktopItems = [ 41 (makeDesktopItem { 42 - name = finalAttrs.pname; 43 - exec = finalAttrs.pname; 44 - icon = finalAttrs.pname; 45 desktopName = "ATLauncher"; 46 - categories = [ "Game" ]; 47 }) 48 ]; 49 50 meta = with lib; { 51 description = "A simple and easy to use Minecraft launcher which contains many different modpacks for you to choose from and play"; 52 downloadPage = "https://atlauncher.com/downloads"; 53 - homepage = "https://atlauncher.com/"; 54 license = licenses.gpl3; 55 maintainers = [ maintainers.getpsyched ]; 56 platforms = platforms.all; 57 - mainProgram = "atlauncher"; 58 sourceProvenance = [ sourceTypes.binaryBytecode ]; 59 }; 60 })
··· 16 17 dontUnpack = true; 18 19 nativeBuildInputs = [ copyDesktopItems makeWrapper ]; 20 21 installPhase = '' ··· 31 --add-flags "--no-launcher-update" 32 33 mkdir -p $out/share/icons/hicolor/scalable/apps 34 + cp $ICON $out/share/icons/hicolor/scalable/apps/atlauncher.svg 35 36 runHook postInstall 37 ''; 38 39 desktopItems = [ 40 (makeDesktopItem { 41 + categories = [ "Game" ]; 42 desktopName = "ATLauncher"; 43 + exec = "atlauncher"; 44 + icon = "atlauncher"; 45 + name = "atlauncher"; 46 }) 47 ]; 48 49 meta = with lib; { 50 description = "A simple and easy to use Minecraft launcher which contains many different modpacks for you to choose from and play"; 51 downloadPage = "https://atlauncher.com/downloads"; 52 + homepage = "https://atlauncher.com"; 53 license = licenses.gpl3; 54 + mainProgram = "atlauncher"; 55 maintainers = [ maintainers.getpsyched ]; 56 platforms = platforms.all; 57 sourceProvenance = [ sourceTypes.binaryBytecode ]; 58 }; 59 })
+2 -2
pkgs/by-name/bm/bmake/package.nix
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "bmake"; 14 - version = "20231210"; 15 16 src = fetchurl { 17 url = "http://www.crufty.net/ftp/pub/sjg/bmake-${finalAttrs.version}.tar.gz"; 18 - hash = "sha256-HUT0y5+pXMW/tmNVP1oNBB4TXk3hZ7fHlYKyTKVPuu0="; 19 }; 20 21 patches = [
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "bmake"; 14 + version = "20240108"; 15 16 src = fetchurl { 17 url = "http://www.crufty.net/ftp/pub/sjg/bmake-${finalAttrs.version}.tar.gz"; 18 + hash = "sha256-N3JXiCBhbpmZFvTFHb0kFbBvcoH2jMzMXh047SOOMQc="; 19 }; 20 21 patches = [
+3 -3
pkgs/by-name/ca/cargo-swift/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "cargo-swift"; 9 - version = "0.5.1"; 10 11 src = fetchFromGitHub { 12 owner = "antoniusnaumann"; 13 repo = "cargo-swift"; 14 rev = "v${version}"; 15 - hash = "sha256-v7ZZ3tMM8KmRk6y3uSw8ZBEcByQ95XQv3XPTUtDGUQ0="; 16 }; 17 18 - cargoHash = "sha256-K3xZytJJ9/CaHWHL1fX0vKYpzH9yz3xOs2J5PoZWWv0="; 19 20 meta = with lib; { 21 description = "A cargo plugin to easily build Swift packages from Rust code";
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "cargo-swift"; 9 + version = "0.6.0"; 10 11 src = fetchFromGitHub { 12 owner = "antoniusnaumann"; 13 repo = "cargo-swift"; 14 rev = "v${version}"; 15 + hash = "sha256-ATpEo7s/qatK7hsbNo9tE97yMpymA1xmf879WrgUluM="; 16 }; 17 18 + cargoHash = "sha256-hKTvtPulltsxi0PX8Xmo9MYcQYuTdOOspfgLCaEKQL4="; 19 20 meta = with lib; { 21 description = "A cargo plugin to easily build Swift packages from Rust code";
+11
pkgs/by-name/ce/celeste64/deps.nix
···
··· 1 + { fetchNuGet }: [ 2 + (fetchNuGet { pname = "FosterFramework"; version = "0.1.15-alpha"; sha256 = "0pzsdfbsfx28xfqljcwy100xhbs6wyx0z1d5qxgmv3l60di9xkll"; }) 3 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "8.0.1"; sha256 = "1gjz379y61ag9whi78qxx09bwkwcznkx2mzypgycibxk61g11da1"; }) 4 + (fetchNuGet { pname = "Microsoft.NET.ILLink.Tasks"; version = "8.0.1"; sha256 = "1drbgqdcvbpisjn8mqfgba1pwb6yri80qc4mfvyczqwrcsj5k2ja"; }) 5 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "8.0.1"; sha256 = "1g5b30f4l8a1zjjr3b8pk9mcqxkxqwa86362f84646xaj4iw3a4d"; }) 6 + (fetchNuGet { pname = "SharpGLTF.Core"; version = "1.0.0-alpha0031"; sha256 = "0ln78mkhbcxqvwnf944hbgg24vbsva2jpih6q3x82d3h7rl1pkh6"; }) 7 + (fetchNuGet { pname = "SharpGLTF.Runtime"; version = "1.0.0-alpha0031"; sha256 = "0lvb3asi3v0n718qf9y367km7qpkb9wci38y880nqvifpzllw0jg"; }) 8 + (fetchNuGet { pname = "Sledge.Formats"; version = "1.2.2"; sha256 = "1y0l66m9rym0p1y4ifjlmg3j9lsmhkvbh38frh40rpvf1axn2dyh"; }) 9 + (fetchNuGet { pname = "Sledge.Formats.Map"; version = "1.1.5"; sha256 = "1bww60hv9xcyxpvkzz5q3ybafdxxkw6knhv97phvpkw84pd0jil6"; }) 10 + (fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.5.0"; sha256 = "1kzrj37yzawf1b19jq0253rcs8hsq1l2q8g69d7ipnhzb0h97m59"; }) 11 + ]
+89
pkgs/by-name/ce/celeste64/package.nix
···
··· 1 + { 2 + lib, 3 + buildDotnetModule, 4 + dotnetCorePackages, 5 + fetchFromGitHub, 6 + makeDesktopItem, 7 + copyDesktopItems, 8 + SDL2, 9 + libGL, 10 + mesa, 11 + fmodex, 12 + systemd, 13 + libpulseaudio, 14 + libselinux, 15 + wayland, 16 + libdecor, 17 + xorg, 18 + libxkbcommon, 19 + libdrm, 20 + withSELinux ? false, 21 + }: 22 + buildDotnetModule rec { 23 + pname = "celeste64"; 24 + version = "0-unstable-2024-02-02"; 25 + 26 + src = fetchFromGitHub { 27 + repo = "Celeste64"; 28 + owner = "ExOK"; 29 + rev = "e7130d376deed9ddf17a6631cf06d89d19a702c6"; 30 + hash = "sha256-KCCgjplAk+Nhjxk/p6Omt4GxN36kAgvg/OPbed2Ey+4="; 31 + }; 32 + projectFile = "Celeste64.csproj"; 33 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 34 + dotnet-runtime = dotnetCorePackages.runtime_8_0; 35 + nugetDeps = ./deps.nix; 36 + strictDeps = true; 37 + executables = [ "Celeste64" ]; 38 + nativeBuildInputs = [ copyDesktopItems ]; 39 + runtimeDeps = 40 + [ 41 + libdecor 42 + libGL 43 + SDL2 44 + fmodex 45 + systemd 46 + libpulseaudio 47 + wayland 48 + libdrm 49 + libxkbcommon 50 + xorg.libX11 51 + xorg.libXfixes 52 + xorg.libXext 53 + xorg.libXcursor 54 + xorg.libXi 55 + xorg.libXrandr 56 + ] 57 + ++ lib.optionals withSELinux [ libselinux ]; 58 + 59 + postInstall = '' 60 + export ICON_DIR=$out/share/icons/hicolor/256x256/apps 61 + mkdir -p $ICON_DIR 62 + 63 + cp -r $src/Content $out/lib/$pname/ 64 + cp $src/Content/Models/Sources/logo1.png $ICON_DIR/Celeste64.png 65 + ''; 66 + 67 + 68 + desktopItems = [ 69 + (makeDesktopItem { 70 + name = "Celeste64"; 71 + exec = "Celeste64"; 72 + comment = meta.description; 73 + desktopName = "Celeste64"; 74 + genericName = "Celeste64"; 75 + icon = "Celeste64"; 76 + categories = [ "Game" ]; 77 + }) 78 + ]; 79 + 80 + meta = { 81 + license = with lib.licenses; [ unfree mit ]; 82 + platforms = [ "x86_64-linux" ]; 83 + maintainers = with lib.maintainers; [ lychee ]; 84 + mainProgram = "Celeste64"; 85 + homepage = "https://github.com/ExOK/Celeste64"; 86 + description = "Celeste 64: Fragments of the Mountain"; 87 + downloadPage = "https://maddymakesgamesinc.itch.io/celeste64"; 88 + }; 89 + }
+40
pkgs/by-name/ci/ci-edit/package.nix
···
··· 1 + { lib 2 + , python3 3 + , fetchFromGitHub 4 + }: 5 + 6 + python3.pkgs.buildPythonApplication { 7 + pname = "ci-edit"; 8 + version = "51-unstable-2023-04-11"; 9 + pyproject = true; 10 + 11 + src = fetchFromGitHub { 12 + owner = "google"; 13 + repo = "ci_edit"; 14 + # Last build iteration is v51 from 2021, but there are some recent 15 + # additions of syntax highlighting and dictionary files. 16 + rev = "2976f01dc6421b5639505292b335212d413d044f"; 17 + hash = "sha256-DwVNNotRcYbvJX6iXffSQyZMFTxQexIhfG8reFmozN8="; 18 + }; 19 + 20 + nativeBuildInputs = with python3.pkgs; [ 21 + setuptools 22 + ]; 23 + 24 + postInstall = '' 25 + ln -s $out/bin/ci.py $out/bin/ci_edit 26 + ln -s $out/bin/ci.py $out/bin/we 27 + install -Dm644 $src/app/*.words $out/${python3.sitePackages}/app/ 28 + ''; 29 + 30 + pythonImportsCheck = [ "app" ]; 31 + 32 + meta = with lib; { 33 + description = "A terminal text editor with mouse support and ctrl+Q to quit"; 34 + homepage = "https://github.com/google/ci_edit"; 35 + license = licenses.asl20; 36 + maintainers = with maintainers; [ katexochen ]; 37 + mainProgram = "ci_edit"; 38 + platforms = platforms.unix; 39 + }; 40 + }
+3 -3
pkgs/by-name/ci/circom/package.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "circom"; 8 - version = "2.1.6"; 9 10 src = fetchFromGitHub { 11 owner = "iden3"; 12 repo = "circom"; 13 rev = "v${version}"; 14 - hash = "sha256-2YusBWAYDrTvFHYIjKpALphhmtsec7jjKHb1sc9lt3Q="; 15 }; 16 17 - cargoHash = "sha256-G6z+DxIhmm1Kzv8EQCqvfGAhQn5Vrx9LXrl+bWBVKaM="; 18 doCheck = false; 19 20 meta = with lib; {
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "circom"; 8 + version = "2.1.8"; 9 10 src = fetchFromGitHub { 11 owner = "iden3"; 12 repo = "circom"; 13 rev = "v${version}"; 14 + hash = "sha256-S+POXACM2XswpIaUze/wfVj2QYjRKJ2JGP1L88dfHA8="; 15 }; 16 17 + cargoHash = "sha256-gf9wWkeibj61Fh9Q+JqKVUVh2WpVBdM1Ei/Dg1/c+5E="; 18 doCheck = false; 19 20 meta = with lib; {
+2 -2
pkgs/by-name/cl/clzip/package.nix
··· 5 6 stdenv.mkDerivation (finalAttrs: { 7 pname = "clzip"; 8 - version = "1.13"; 9 10 src = fetchurl { 11 url = "mirror://savannah/lzip/clzip/clzip-${finalAttrs.version}.tar.gz"; 12 - hash = "sha256-esn79QNr9Q+wtqIOhNIpPLDSTUBE6vM8vpdgu55/6no="; 13 }; 14 15 meta = with lib; {
··· 5 6 stdenv.mkDerivation (finalAttrs: { 7 pname = "clzip"; 8 + version = "1.14"; 9 10 src = fetchurl { 11 url = "mirror://savannah/lzip/clzip/clzip-${finalAttrs.version}.tar.gz"; 12 + hash = "sha256-9j/hJFuDL+B/9nnpubhofpN5q2E6Jr+wrKN1TIsWLXM="; 13 }; 14 15 meta = with lib; {
+5 -5
pkgs/by-name/co/codeium/package.nix
··· 13 }.${system} or throwSystem; 14 15 hash = { 16 - x86_64-linux = "sha256-vS3rHYxsRTWejp2SAQk7gI/C6ElOYOjPA5cHxy7ef3U="; 17 - aarch64-linux = "sha256-FxbJL5qzkVBPL6o52/gNJ8dC7Sgm/v5KFi8DL+SxiTc="; 18 - x86_64-darwin = "sha256-zPas9sZzl9FqcsoqMxIjvW75JhexW/cuWvku8fPUS1Q="; 19 - aarch64-darwin = "sha256-EZC9EEzilsm7H+oEr1Le5tNevWu1ldLB2UH0fS1RlLk="; 20 }.${system} or throwSystem; 21 22 bin = "$out/bin/codeium_language_server"; ··· 24 in 25 stdenv.mkDerivation (finalAttrs: { 26 pname = "codeium"; 27 - version = "1.6.28"; 28 src = fetchurl { 29 name = "${finalAttrs.pname}-${finalAttrs.version}.gz"; 30 url = "https://github.com/Exafunction/codeium/releases/download/language-server-v${finalAttrs.version}/language_server_${plat}.gz";
··· 13 }.${system} or throwSystem; 14 15 hash = { 16 + x86_64-linux = "sha256-QB1xt/nB94UB7lgQUlkw4NOvprxQlz3Xw1aHaKDAsn4="; 17 + aarch64-linux = "sha256-OFSpJ44m1x8hFnOVg3t120UsbD3qazRaYszjse5S7cg="; 18 + x86_64-darwin = "sha256-GEovSJICZ8XcVpaV1Q7Ago5Nf2dVX1I08FLLLRNbc/Q="; 19 + aarch64-darwin = "sha256-IJ5ADRHewWcuphp+JpPzt7f7+MTNXi86KTNHJQpyy4I="; 20 }.${system} or throwSystem; 21 22 bin = "$out/bin/codeium_language_server"; ··· 24 in 25 stdenv.mkDerivation (finalAttrs: { 26 pname = "codeium"; 27 + version = "1.6.30"; 28 src = fetchurl { 29 name = "${finalAttrs.pname}-${finalAttrs.version}.gz"; 30 url = "https://github.com/Exafunction/codeium/releases/download/language-server-v${finalAttrs.version}/language_server_${plat}.gz";
+5 -5
pkgs/by-name/cr/crc/package.nix
··· 7 }: 8 9 let 10 - openShiftVersion = "4.14.3"; 11 okdVersion = "4.14.0-0.okd-2023-12-01-225814"; 12 - microshiftVersion = "4.14.3"; 13 podmanVersion = "4.4.4"; 14 writeKey = "$(MODULEPATH)/pkg/crc/segment.WriteKey=cvpHsNcmGCJqVzf6YxrSnVlwFSAZaYtp"; 15 - gitCommit = "b6532a3c38f2c81143153fed022bc4ebf3f2f508"; 16 - gitHash = "sha256-LH1vjWVzSeSswnMibn4YVjV2glauQGDXP+6i9kGzzU4="; 17 in 18 buildGoModule rec { 19 - version = "2.30.0"; 20 pname = "crc"; 21 22 src = fetchFromGitHub {
··· 7 }: 8 9 let 10 + openShiftVersion = "4.14.7"; 11 okdVersion = "4.14.0-0.okd-2023-12-01-225814"; 12 + microshiftVersion = "4.14.7"; 13 podmanVersion = "4.4.4"; 14 writeKey = "$(MODULEPATH)/pkg/crc/segment.WriteKey=cvpHsNcmGCJqVzf6YxrSnVlwFSAZaYtp"; 15 + gitCommit = "6d23b6aa727bdefe4b5d1a77b2f9da7cec477a3e"; 16 + gitHash = "sha256-NeCARhDmqIukBpnf6fkI0FTE4D9FUaWjBd7eG29eu9A="; 17 in 18 buildGoModule rec { 19 + version = "2.31.0"; 20 pname = "crc"; 21 22 src = fetchFromGitHub {
+48
pkgs/by-name/cs/csvkit/package.nix
···
··· 1 + { lib 2 + , python3 3 + , fetchPypi 4 + }: 5 + 6 + let 7 + pname = "csvkit"; 8 + version = "1.3.0"; 9 + pythonEnv = python3; 10 + in 11 + pythonEnv.pkgs.buildPythonApplication { 12 + inherit pname version; 13 + pyproject = true; 14 + 15 + src = fetchPypi { 16 + inherit pname version; 17 + hash = "sha256-uC5q4tK7QWUXEA7Lro1dhWoN/65CtxIIiBSityAeGvg="; 18 + }; 19 + 20 + propagatedBuildInputs = with pythonEnv.pkgs; [ 21 + agate 22 + agate-excel 23 + agate-dbf 24 + agate-sql 25 + setuptools # csvsql imports pkg_resources 26 + ]; 27 + 28 + nativeCheckInputs = with pythonEnv.pkgs; [ 29 + pytestCheckHook 30 + ]; 31 + 32 + pythonImportsCheck = [ 33 + "csvkit" 34 + ]; 35 + 36 + disabledTests = [ 37 + # Tries to compare CLI output - and fails! 38 + "test_decimal_format" 39 + ]; 40 + 41 + meta = { 42 + homepage = "https://github.com/wireservice/csvkit"; 43 + description = "A suite of command-line tools for converting to and working with CSV"; 44 + changelog = "https://github.com/wireservice/csvkit/blob/${version}/CHANGELOG.rst"; 45 + license = lib.licenses.mit; 46 + maintainers = with lib.maintainers; [ AndersonTorres ]; 47 + }; 48 + }
+3 -3
pkgs/by-name/fa/fangfrisch/package.nix
··· 3 , fetchFromGitHub 4 }: 5 let 6 - version = "1.6.1"; 7 in 8 python3.pkgs.buildPythonApplication { 9 pname = "fangfrisch"; ··· 13 src = fetchFromGitHub { 14 owner = "rseichter"; 15 repo = "fangfrisch"; 16 - rev = version; 17 - hash = "sha256-yXXzwN0BI//NqpNNmKIhwFv3hDwNZLl1K81hUD/tCrQ="; 18 }; 19 20 nativeBuildInputs = [
··· 3 , fetchFromGitHub 4 }: 5 let 6 + version = "1.7.0"; 7 in 8 python3.pkgs.buildPythonApplication { 9 pname = "fangfrisch"; ··· 13 src = fetchFromGitHub { 14 owner = "rseichter"; 15 repo = "fangfrisch"; 16 + rev = "refs/tags/${version}"; 17 + hash = "sha256-s55W5/ppwr008ZIjDgQa90N+Ax9cwnvc+mXRetFdy+4="; 18 }; 19 20 nativeBuildInputs = [
+35
pkgs/by-name/li/libleidenalg/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , igraph 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "libleidenalg"; 10 + version = "0.11.1"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "vtraag"; 14 + repo = "libleidenalg"; 15 + rev = "refs/tags/${version}"; 16 + hash = "sha256-hEES/OHvgN0yRDp5ZBZTCQfWr1j7s8NqE+Sp9WMHEEY="; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + cmake 21 + ]; 22 + 23 + buildInputs = [ 24 + igraph 25 + ]; 26 + 27 + meta = { 28 + changelog = "https://github.com/vtraag/libleidenalg/blob/${version}/CHANGELOG"; 29 + description = "C++ library of Leiden algorithm"; 30 + homepage = "https://github.com/vtraag/libleidenalg"; 31 + license = lib.licenses.gpl3Plus; 32 + maintainers = with lib.maintainers; [ dotlambda ]; 33 + platforms = lib.platforms.all; 34 + }; 35 + }
+711 -444
pkgs/by-name/li/libsignal-ffi/Cargo.lock
··· 19 20 [[package]] 21 name = "aead" 22 - version = "0.4.3" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" 25 - dependencies = [ 26 - "generic-array", 27 - ] 28 - 29 - [[package]] 30 - name = "aead" 31 version = "0.5.2" 32 source = "registry+https://github.com/rust-lang/crates.io-index" 33 checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" ··· 38 39 [[package]] 40 name = "aes" 41 - version = "0.7.5" 42 - source = "registry+https://github.com/rust-lang/crates.io-index" 43 - checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 44 - dependencies = [ 45 - "cfg-if", 46 - "cipher 0.3.0", 47 - "cpufeatures", 48 - "opaque-debug", 49 - ] 50 - 51 - [[package]] 52 - name = "aes" 53 version = "0.8.3" 54 source = "registry+https://github.com/rust-lang/crates.io-index" 55 checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" 56 dependencies = [ 57 "cfg-if", 58 - "cipher 0.4.4", 59 "cpufeatures", 60 "zeroize", 61 ] 62 63 [[package]] 64 name = "aes-gcm" 65 - version = "0.9.2" 66 source = "registry+https://github.com/rust-lang/crates.io-index" 67 - checksum = "bc3be92e19a7ef47457b8e6f90707e12b6ac5d20c6f3866584fa3be0787d839f" 68 dependencies = [ 69 - "aead 0.4.3", 70 - "aes 0.7.5", 71 - "cipher 0.3.0", 72 - "ctr 0.7.0", 73 - "ghash 0.4.4", 74 "subtle", 75 ] 76 ··· 80 source = "registry+https://github.com/rust-lang/crates.io-index" 81 checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d" 82 dependencies = [ 83 - "aead 0.5.2", 84 - "aes 0.8.3", 85 - "cipher 0.4.4", 86 - "ctr 0.9.2", 87 - "polyval 0.6.1", 88 "subtle", 89 "zeroize", 90 ] ··· 120 checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 121 122 [[package]] 123 name = "anstyle" 124 version = "1.0.4" 125 source = "registry+https://github.com/rust-lang/crates.io-index" 126 checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" 127 128 [[package]] 129 name = "anyhow" 130 - version = "1.0.75" 131 source = "registry+https://github.com/rust-lang/crates.io-index" 132 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 133 134 [[package]] 135 name = "argon2" ··· 145 ] 146 147 [[package]] 148 name = "arrayref" 149 version = "0.3.7" 150 source = "registry+https://github.com/rust-lang/crates.io-index" 151 checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 152 153 [[package]] 154 name = "asn1" 155 version = "0.15.5" 156 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 167 dependencies = [ 168 "proc-macro2", 169 "quote", 170 - "syn 2.0.38", 171 ] 172 173 [[package]] ··· 177 checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" 178 179 [[package]] 180 name = "async-trait" 181 - version = "0.1.74" 182 source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 184 dependencies = [ 185 "proc-macro2", 186 "quote", 187 - "syn 2.0.38", 188 ] 189 190 [[package]] ··· 194 "asn1", 195 "bitflags 2.4.1", 196 "boring", 197 - "chacha20poly1305 0.10.1", 198 "chrono", 199 "ciborium", 200 "displaydoc", ··· 240 241 [[package]] 242 name = "base64" 243 - version = "0.21.5" 244 source = "registry+https://github.com/rust-lang/crates.io-index" 245 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 246 247 [[package]] 248 name = "base64ct" ··· 276 "regex", 277 "rustc-hash", 278 "shlex", 279 - "syn 2.0.38", 280 ] 281 282 [[package]] ··· 308 309 [[package]] 310 name = "bitstream-io" 311 - version = "1.8.0" 312 source = "registry+https://github.com/rust-lang/crates.io-index" 313 - checksum = "02bef9e74b5908bed0360844109a55b62b07cc973274c11d3a577bda8cc1cf60" 314 315 [[package]] 316 name = "blake2" ··· 398 source = "registry+https://github.com/rust-lang/crates.io-index" 399 checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 400 dependencies = [ 401 - "cipher 0.4.4", 402 ] 403 404 [[package]] ··· 434 435 [[package]] 436 name = "chacha20" 437 - version = "0.8.2" 438 - source = "registry+https://github.com/rust-lang/crates.io-index" 439 - checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6" 440 - dependencies = [ 441 - "cfg-if", 442 - "cipher 0.3.0", 443 - "cpufeatures", 444 - "zeroize", 445 - ] 446 - 447 - [[package]] 448 - name = "chacha20" 449 version = "0.9.1" 450 source = "registry+https://github.com/rust-lang/crates.io-index" 451 checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" 452 dependencies = [ 453 "cfg-if", 454 - "cipher 0.4.4", 455 "cpufeatures", 456 ] 457 458 [[package]] 459 name = "chacha20poly1305" 460 - version = "0.9.1" 461 - source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5" 463 - dependencies = [ 464 - "aead 0.4.3", 465 - "chacha20 0.8.2", 466 - "cipher 0.3.0", 467 - "poly1305 0.7.2", 468 - "zeroize", 469 - ] 470 - 471 - [[package]] 472 - name = "chacha20poly1305" 473 version = "0.10.1" 474 source = "registry+https://github.com/rust-lang/crates.io-index" 475 checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" 476 dependencies = [ 477 - "aead 0.5.2", 478 - "chacha20 0.9.1", 479 - "cipher 0.4.4", 480 - "poly1305 0.8.0", 481 "zeroize", 482 ] 483 ··· 525 526 [[package]] 527 name = "cipher" 528 - version = "0.3.0" 529 - source = "registry+https://github.com/rust-lang/crates.io-index" 530 - checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 531 - dependencies = [ 532 - "generic-array", 533 - ] 534 - 535 - [[package]] 536 - name = "cipher" 537 version = "0.4.4" 538 source = "registry+https://github.com/rust-lang/crates.io-index" 539 checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" ··· 545 546 [[package]] 547 name = "clang-sys" 548 - version = "1.6.1" 549 source = "registry+https://github.com/rust-lang/crates.io-index" 550 - checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" 551 dependencies = [ 552 "glob", 553 "libc", 554 - "libloading 0.7.4", 555 ] 556 557 [[package]] 558 name = "clap" 559 - version = "4.4.7" 560 source = "registry+https://github.com/rust-lang/crates.io-index" 561 - checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" 562 dependencies = [ 563 "clap_builder", 564 ] 565 566 [[package]] 567 name = "clap_builder" 568 - version = "4.4.7" 569 source = "registry+https://github.com/rust-lang/crates.io-index" 570 - checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" 571 dependencies = [ 572 "anstyle", 573 "clap_lex", 574 ] 575 576 [[package]] ··· 589 ] 590 591 [[package]] 592 name = "combine" 593 version = "4.6.6" 594 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 606 607 [[package]] 608 name = "core-foundation" 609 - version = "0.9.3" 610 source = "registry+https://github.com/rust-lang/crates.io-index" 611 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 612 dependencies = [ 613 "core-foundation-sys", 614 "libc", ··· 616 617 [[package]] 618 name = "core-foundation-sys" 619 - version = "0.8.4" 620 source = "registry+https://github.com/rust-lang/crates.io-index" 621 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 622 623 [[package]] 624 name = "cpufeatures" 625 - version = "0.2.11" 626 source = "registry+https://github.com/rust-lang/crates.io-index" 627 - checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 628 dependencies = [ 629 "libc", 630 ] 631 632 [[package]] ··· 667 668 [[package]] 669 name = "crossbeam-deque" 670 - version = "0.8.3" 671 source = "registry+https://github.com/rust-lang/crates.io-index" 672 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 673 dependencies = [ 674 - "cfg-if", 675 "crossbeam-epoch", 676 "crossbeam-utils", 677 ] 678 679 [[package]] 680 name = "crossbeam-epoch" 681 - version = "0.9.15" 682 source = "registry+https://github.com/rust-lang/crates.io-index" 683 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 684 dependencies = [ 685 - "autocfg", 686 - "cfg-if", 687 "crossbeam-utils", 688 - "memoffset", 689 - "scopeguard", 690 ] 691 692 [[package]] 693 name = "crossbeam-utils" 694 - version = "0.8.16" 695 source = "registry+https://github.com/rust-lang/crates.io-index" 696 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 697 - dependencies = [ 698 - "cfg-if", 699 - ] 700 701 [[package]] 702 name = "crypto-common" ··· 711 712 [[package]] 713 name = "ctr" 714 - version = "0.7.0" 715 - source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "a232f92a03f37dd7d7dd2adc67166c77e9cd88de5b019b9a9eecfaeaf7bfd481" 717 - dependencies = [ 718 - "cipher 0.3.0", 719 - ] 720 - 721 - [[package]] 722 - name = "ctr" 723 version = "0.9.2" 724 source = "registry+https://github.com/rust-lang/crates.io-index" 725 checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 726 dependencies = [ 727 - "cipher 0.4.4", 728 ] 729 730 [[package]] ··· 752 dependencies = [ 753 "proc-macro2", 754 "quote", 755 - "syn 2.0.38", 756 ] 757 758 [[package]] ··· 792 793 [[package]] 794 name = "data-encoding" 795 - version = "2.4.0" 796 source = "registry+https://github.com/rust-lang/crates.io-index" 797 - checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 798 799 [[package]] 800 name = "derive-where" 801 - version = "1.2.5" 802 source = "registry+https://github.com/rust-lang/crates.io-index" 803 - checksum = "146398d62142a0f35248a608f17edf0dde57338354966d6e41d0eb2d16980ccb" 804 dependencies = [ 805 "proc-macro2", 806 "quote", 807 - "syn 2.0.38", 808 ] 809 810 [[package]] ··· 879 dependencies = [ 880 "proc-macro2", 881 "quote", 882 - "syn 2.0.38", 883 ] 884 885 [[package]] ··· 917 918 [[package]] 919 name = "dyn-clone" 920 - version = "1.0.14" 921 source = "registry+https://github.com/rust-lang/crates.io-index" 922 - checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" 923 924 [[package]] 925 name = "either" ··· 938 939 [[package]] 940 name = "env_logger" 941 - version = "0.10.0" 942 source = "registry+https://github.com/rust-lang/crates.io-index" 943 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 944 dependencies = [ 945 "humantime", 946 "is-terminal", ··· 957 958 [[package]] 959 name = "errno" 960 - version = "0.3.5" 961 source = "registry+https://github.com/rust-lang/crates.io-index" 962 - checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" 963 dependencies = [ 964 "libc", 965 - "windows-sys 0.48.0", 966 ] 967 968 [[package]] ··· 984 checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 985 986 [[package]] 987 name = "fnv" 988 version = "1.0.7" 989 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1007 dependencies = [ 1008 "proc-macro2", 1009 "quote", 1010 - "syn 2.0.38", 1011 ] 1012 1013 [[package]] ··· 1018 1019 [[package]] 1020 name = "form_urlencoded" 1021 - version = "1.2.0" 1022 source = "registry+https://github.com/rust-lang/crates.io-index" 1023 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 1024 dependencies = [ 1025 "percent-encoding", 1026 ] ··· 1042 ] 1043 1044 [[package]] 1045 name = "futures-channel" 1046 - version = "0.3.29" 1047 source = "registry+https://github.com/rust-lang/crates.io-index" 1048 - checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1049 dependencies = [ 1050 "futures-core", 1051 "futures-sink", ··· 1053 1054 [[package]] 1055 name = "futures-core" 1056 - version = "0.3.29" 1057 source = "registry+https://github.com/rust-lang/crates.io-index" 1058 - checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1059 1060 [[package]] 1061 name = "futures-io" 1062 - version = "0.3.29" 1063 source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1065 1066 [[package]] 1067 name = "futures-macro" 1068 - version = "0.3.29" 1069 source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1071 dependencies = [ 1072 "proc-macro2", 1073 "quote", 1074 - "syn 2.0.38", 1075 ] 1076 1077 [[package]] 1078 name = "futures-sink" 1079 - version = "0.3.29" 1080 source = "registry+https://github.com/rust-lang/crates.io-index" 1081 - checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1082 1083 [[package]] 1084 name = "futures-task" 1085 - version = "0.3.29" 1086 source = "registry+https://github.com/rust-lang/crates.io-index" 1087 - checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1088 1089 [[package]] 1090 name = "futures-util" 1091 - version = "0.3.29" 1092 source = "registry+https://github.com/rust-lang/crates.io-index" 1093 - checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1094 dependencies = [ 1095 "futures-core", 1096 "futures-io", 1097 "futures-macro", ··· 1115 1116 [[package]] 1117 name = "getrandom" 1118 - version = "0.2.10" 1119 source = "registry+https://github.com/rust-lang/crates.io-index" 1120 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1121 dependencies = [ 1122 "cfg-if", 1123 "libc", ··· 1126 1127 [[package]] 1128 name = "ghash" 1129 - version = "0.4.4" 1130 - source = "registry+https://github.com/rust-lang/crates.io-index" 1131 - checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99" 1132 - dependencies = [ 1133 - "opaque-debug", 1134 - "polyval 0.5.3", 1135 - ] 1136 - 1137 - [[package]] 1138 - name = "ghash" 1139 version = "0.5.0" 1140 source = "registry+https://github.com/rust-lang/crates.io-index" 1141 checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40" 1142 dependencies = [ 1143 "opaque-debug", 1144 - "polyval 0.6.1", 1145 "zeroize", 1146 ] 1147 1148 [[package]] 1149 name = "gimli" 1150 - version = "0.28.0" 1151 source = "registry+https://github.com/rust-lang/crates.io-index" 1152 - checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 1153 1154 [[package]] 1155 name = "glob" ··· 1159 1160 [[package]] 1161 name = "h2" 1162 - version = "0.3.21" 1163 source = "registry+https://github.com/rust-lang/crates.io-index" 1164 - checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" 1165 dependencies = [ 1166 "bytes", 1167 "fnv", 1168 "futures-core", 1169 "futures-sink", 1170 "futures-util", 1171 - "http", 1172 - "indexmap 1.9.3", 1173 "slab", 1174 "tokio", 1175 "tokio-util", ··· 1190 1191 [[package]] 1192 name = "hashbrown" 1193 - version = "0.14.2" 1194 source = "registry+https://github.com/rust-lang/crates.io-index" 1195 - checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" 1196 1197 [[package]] 1198 name = "headers" ··· 1203 "base64", 1204 "bytes", 1205 "headers-core", 1206 - "http", 1207 "httpdate", 1208 "mime", 1209 "sha1", ··· 1215 source = "registry+https://github.com/rust-lang/crates.io-index" 1216 checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 1217 dependencies = [ 1218 - "http", 1219 ] 1220 1221 [[package]] ··· 1256 1257 [[package]] 1258 name = "hkdf" 1259 - version = "0.12.3" 1260 source = "registry+https://github.com/rust-lang/crates.io-index" 1261 - checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 1262 dependencies = [ 1263 "hmac", 1264 ] ··· 1274 1275 [[package]] 1276 name = "home" 1277 - version = "0.5.5" 1278 source = "registry+https://github.com/rust-lang/crates.io-index" 1279 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 1280 dependencies = [ 1281 - "windows-sys 0.48.0", 1282 ] 1283 1284 [[package]] 1285 name = "http" 1286 - version = "0.2.9" 1287 source = "registry+https://github.com/rust-lang/crates.io-index" 1288 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1289 dependencies = [ 1290 "bytes", 1291 "fnv", ··· 1294 1295 [[package]] 1296 name = "http-body" 1297 - version = "0.4.5" 1298 source = "registry+https://github.com/rust-lang/crates.io-index" 1299 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1300 dependencies = [ 1301 "bytes", 1302 - "http", 1303 "pin-project-lite", 1304 ] 1305 1306 [[package]] 1307 name = "http-body" 1308 - version = "1.0.0-rc.2" 1309 source = "registry+https://github.com/rust-lang/crates.io-index" 1310 - checksum = "951dfc2e32ac02d67c90c0d65bd27009a635dc9b381a2cc7d284ab01e3a0150d" 1311 dependencies = [ 1312 "bytes", 1313 - "http", 1314 ] 1315 1316 [[package]] 1317 name = "http-body-util" 1318 - version = "0.1.0-rc.3" 1319 source = "registry+https://github.com/rust-lang/crates.io-index" 1320 - checksum = "08ef12f041acdd397010e5fb6433270c147d3b8b2d0a840cd7fff8e531dca5c8" 1321 dependencies = [ 1322 "bytes", 1323 "futures-util", 1324 - "http", 1325 - "http-body 1.0.0-rc.2", 1326 "pin-project-lite", 1327 ] 1328 ··· 1346 1347 [[package]] 1348 name = "hyper" 1349 - version = "0.14.27" 1350 source = "registry+https://github.com/rust-lang/crates.io-index" 1351 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1352 dependencies = [ 1353 "bytes", 1354 "futures-channel", 1355 "futures-core", 1356 "futures-util", 1357 - "h2", 1358 - "http", 1359 - "http-body 0.4.5", 1360 "httparse", 1361 "httpdate", 1362 "itoa", 1363 "pin-project-lite", 1364 - "socket2 0.4.10", 1365 "tokio", 1366 "tower-service", 1367 "tracing", ··· 1370 1371 [[package]] 1372 name = "hyper" 1373 - version = "1.0.0-rc.4" 1374 source = "registry+https://github.com/rust-lang/crates.io-index" 1375 - checksum = "d280a71f348bcc670fc55b02b63c53a04ac0bf2daff2980795aeaf53edae10e6" 1376 dependencies = [ 1377 "bytes", 1378 "futures-channel", 1379 "futures-util", 1380 - "h2", 1381 - "http", 1382 - "http-body 1.0.0-rc.2", 1383 "httparse", 1384 - "httpdate", 1385 "itoa", 1386 "pin-project-lite", 1387 "tokio", 1388 - "tracing", 1389 "want", 1390 ] 1391 1392 [[package]] 1393 name = "iana-time-zone" 1394 - version = "0.1.58" 1395 source = "registry+https://github.com/rust-lang/crates.io-index" 1396 - checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 1397 dependencies = [ 1398 "android_system_properties", 1399 "core-foundation-sys", ··· 1420 1421 [[package]] 1422 name = "idna" 1423 - version = "0.4.0" 1424 source = "registry+https://github.com/rust-lang/crates.io-index" 1425 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1426 dependencies = [ 1427 "unicode-bidi", 1428 "unicode-normalization", ··· 1445 checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 1446 dependencies = [ 1447 "equivalent", 1448 - "hashbrown 0.14.2", 1449 ] 1450 1451 [[package]] ··· 1460 1461 [[package]] 1462 name = "is-terminal" 1463 - version = "0.4.9" 1464 source = "registry+https://github.com/rust-lang/crates.io-index" 1465 - checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 1466 dependencies = [ 1467 "hermit-abi", 1468 "rustix", 1469 - "windows-sys 0.48.0", 1470 ] 1471 1472 [[package]] ··· 1489 1490 [[package]] 1491 name = "itoa" 1492 - version = "1.0.9" 1493 source = "registry+https://github.com/rust-lang/crates.io-index" 1494 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1495 1496 [[package]] 1497 name = "jni" ··· 1526 1527 [[package]] 1528 name = "js-sys" 1529 - version = "0.3.65" 1530 source = "registry+https://github.com/rust-lang/crates.io-index" 1531 - checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" 1532 dependencies = [ 1533 "wasm-bindgen", 1534 ] ··· 1547 1548 [[package]] 1549 name = "libc" 1550 - version = "0.2.149" 1551 source = "registry+https://github.com/rust-lang/crates.io-index" 1552 - checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" 1553 1554 [[package]] 1555 name = "libloading" ··· 1563 1564 [[package]] 1565 name = "libloading" 1566 - version = "0.7.4" 1567 source = "registry+https://github.com/rust-lang/crates.io-index" 1568 - checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 1569 dependencies = [ 1570 "cfg-if", 1571 - "winapi", 1572 ] 1573 1574 [[package]] ··· 1591 "hkdf", 1592 "hmac", 1593 "jni", 1594 - "libc", 1595 "libsignal-bridge-macros", 1596 "libsignal-net", 1597 "libsignal-protocol", ··· 1631 ] 1632 1633 [[package]] 1634 name = "libsignal-ffi" 1635 - version = "0.36.1" 1636 dependencies = [ 1637 "async-trait", 1638 "attest", 1639 "cpufeatures", 1640 "device-transfer", 1641 "futures-util", 1642 - "libc", 1643 "libsignal-bridge", 1644 "libsignal-protocol", 1645 "log", ··· 1654 1655 [[package]] 1656 name = "libsignal-jni" 1657 - version = "0.36.1" 1658 dependencies = [ 1659 "async-trait", 1660 "cfg-if", ··· 1669 ] 1670 1671 [[package]] 1672 name = "libsignal-net" 1673 version = "0.1.0" 1674 dependencies = [ ··· 1676 "async-trait", 1677 "attest", 1678 "base64", 1679 "boring", 1680 "bytes", 1681 "derive-where", 1682 "displaydoc", 1683 "env_logger", 1684 "futures-util", 1685 "hex", 1686 "hex-literal", 1687 - "http", 1688 "http-body-util", 1689 - "hyper 1.0.0-rc.4", 1690 "lazy_static", 1691 - "libsignal-protocol", 1692 "log", 1693 "pin-project-lite", 1694 "prost", 1695 "prost-build", 1696 - "rand", 1697 "rustls-native-certs", 1698 "serde", 1699 "serde_json", 1700 "snow", 1701 "thiserror", 1702 "tokio", 1703 "tokio-boring", 1704 "tokio-stream", 1705 - "tokio-tungstenite 0.19.0", 1706 "tokio-util", 1707 - "tungstenite 0.19.0", 1708 "url", 1709 "uuid", 1710 "warp", ··· 1712 1713 [[package]] 1714 name = "libsignal-node" 1715 - version = "0.36.1" 1716 dependencies = [ 1717 "async-trait", 1718 "cmake", ··· 1729 name = "libsignal-protocol" 1730 version = "0.1.0" 1731 dependencies = [ 1732 - "aes 0.8.3", 1733 "aes-gcm-siv", 1734 "arrayref", 1735 "async-trait", 1736 "criterion", 1737 - "ctr 0.9.2", 1738 "curve25519-dalek", 1739 "displaydoc", 1740 "env_logger", 1741 "futures-util", ··· 1743 "hex-literal", 1744 "hkdf", 1745 "hmac", 1746 - "indexmap 1.9.3", 1747 "itertools 0.10.5", 1748 "log", 1749 "num_enum", 1750 - "pqcrypto-kyber 0.7.6", 1751 "pqcrypto-kyber 0.8.0", 1752 "pqcrypto-traits", 1753 "proptest", 1754 "prost", 1755 "prost-build", 1756 "rand", 1757 "sha2", 1758 "signal-crypto", 1759 "static_assertions", ··· 1768 version = "0.1.0" 1769 dependencies = [ 1770 "attest", 1771 "bytemuck", 1772 "criterion", 1773 "curve25519-dalek", ··· 1775 "hex", 1776 "hex-literal", 1777 "hkdf", 1778 - "libsignal-net", 1779 - "rand", 1780 "rand_core", 1781 "sha2", 1782 "subtle", 1783 ] 1784 1785 [[package]] 1786 name = "linkme" 1787 - version = "0.3.17" 1788 source = "registry+https://github.com/rust-lang/crates.io-index" 1789 - checksum = "91ed2ee9464ff9707af8e9ad834cffa4802f072caad90639c583dd3c62e6e608" 1790 dependencies = [ 1791 "linkme-impl", 1792 ] 1793 1794 [[package]] 1795 name = "linkme-impl" 1796 - version = "0.3.17" 1797 source = "registry+https://github.com/rust-lang/crates.io-index" 1798 - checksum = "ba125974b109d512fccbc6c0244e7580143e460895dfd6ea7f8bbb692fd94396" 1799 dependencies = [ 1800 "proc-macro2", 1801 "quote", 1802 - "syn 2.0.38", 1803 ] 1804 1805 [[package]] 1806 name = "linux-raw-sys" 1807 - version = "0.4.10" 1808 source = "registry+https://github.com/rust-lang/crates.io-index" 1809 - checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" 1810 1811 [[package]] 1812 name = "lock_api" ··· 1848 1849 [[package]] 1850 name = "memchr" 1851 - version = "2.6.4" 1852 source = "registry+https://github.com/rust-lang/crates.io-index" 1853 - checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 1854 - 1855 - [[package]] 1856 - name = "memoffset" 1857 - version = "0.9.0" 1858 - source = "registry+https://github.com/rust-lang/crates.io-index" 1859 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1860 - dependencies = [ 1861 - "autocfg", 1862 - ] 1863 1864 [[package]] 1865 name = "mime" ··· 1894 1895 [[package]] 1896 name = "mio" 1897 - version = "0.8.9" 1898 source = "registry+https://github.com/rust-lang/crates.io-index" 1899 - checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 1900 dependencies = [ 1901 "libc", 1902 "wasi", ··· 1944 "bytes", 1945 "encoding_rs", 1946 "futures-util", 1947 - "http", 1948 "httparse", 1949 "log", 1950 "memchr", ··· 2064 "proc-macro-crate", 2065 "proc-macro2", 2066 "quote", 2067 - "syn 2.0.38", 2068 ] 2069 2070 [[package]] 2071 name = "object" 2072 - version = "0.32.1" 2073 source = "registry+https://github.com/rust-lang/crates.io-index" 2074 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 2075 dependencies = [ 2076 "memchr", 2077 ] 2078 2079 [[package]] 2080 name = "once_cell" 2081 - version = "1.18.0" 2082 source = "registry+https://github.com/rust-lang/crates.io-index" 2083 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 2084 2085 [[package]] 2086 name = "oorandom" ··· 2140 dependencies = [ 2141 "proc-macro2", 2142 "quote", 2143 - "syn 2.0.38", 2144 ] 2145 2146 [[package]] ··· 2168 2169 [[package]] 2170 name = "percent-encoding" 2171 - version = "2.3.0" 2172 source = "registry+https://github.com/rust-lang/crates.io-index" 2173 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 2174 2175 [[package]] 2176 name = "petgraph" ··· 2199 dependencies = [ 2200 "proc-macro2", 2201 "quote", 2202 - "syn 2.0.38", 2203 ] 2204 2205 [[package]] ··· 2216 2217 [[package]] 2218 name = "platforms" 2219 - version = "3.2.0" 2220 source = "registry+https://github.com/rust-lang/crates.io-index" 2221 - checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" 2222 2223 [[package]] 2224 name = "plotters" ··· 2261 2262 [[package]] 2263 name = "poly1305" 2264 - version = "0.7.2" 2265 - source = "registry+https://github.com/rust-lang/crates.io-index" 2266 - checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede" 2267 - dependencies = [ 2268 - "cpufeatures", 2269 - "opaque-debug", 2270 - "universal-hash 0.4.0", 2271 - ] 2272 - 2273 - [[package]] 2274 - name = "poly1305" 2275 version = "0.8.0" 2276 source = "registry+https://github.com/rust-lang/crates.io-index" 2277 checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" 2278 dependencies = [ 2279 "cpufeatures", 2280 "opaque-debug", 2281 - "universal-hash 0.5.1", 2282 - ] 2283 - 2284 - [[package]] 2285 - name = "polyval" 2286 - version = "0.5.3" 2287 - source = "registry+https://github.com/rust-lang/crates.io-index" 2288 - checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1" 2289 - dependencies = [ 2290 - "cfg-if", 2291 - "cpufeatures", 2292 - "opaque-debug", 2293 - "universal-hash 0.4.0", 2294 ] 2295 2296 [[package]] ··· 2302 "cfg-if", 2303 "cpufeatures", 2304 "opaque-debug", 2305 - "universal-hash 0.5.1", 2306 ] 2307 2308 [[package]] ··· 2325 2326 [[package]] 2327 name = "pqcrypto-kyber" 2328 - version = "0.7.6" 2329 source = "registry+https://github.com/rust-lang/crates.io-index" 2330 - checksum = "fe9d9695c19e525d5366c913562a331fbeef9a2ad801d9a9ded61a0e4c2fe0fb" 2331 dependencies = [ 2332 "cc", 2333 "glob", ··· 2357 2358 [[package]] 2359 name = "prettyplease" 2360 - version = "0.2.15" 2361 source = "registry+https://github.com/rust-lang/crates.io-index" 2362 - checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" 2363 dependencies = [ 2364 "proc-macro2", 2365 - "syn 2.0.38", 2366 ] 2367 2368 [[package]] ··· 2377 2378 [[package]] 2379 name = "proc-macro2" 2380 - version = "1.0.69" 2381 source = "registry+https://github.com/rust-lang/crates.io-index" 2382 - checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 2383 dependencies = [ 2384 "unicode-ident", 2385 ] 2386 2387 [[package]] 2388 name = "proptest" 2389 - version = "1.3.1" 2390 source = "registry+https://github.com/rust-lang/crates.io-index" 2391 - checksum = "7c003ac8c77cb07bb74f5f198bce836a689bcd5a42574612bf14d17bfd08c20e" 2392 dependencies = [ 2393 "bit-set", 2394 "bit-vec", ··· 2398 "rand", 2399 "rand_chacha", 2400 "rand_xorshift", 2401 - "regex-syntax 0.7.5", 2402 "rusty-fork", 2403 "tempfile", 2404 "unarray", ··· 2406 2407 [[package]] 2408 name = "prost" 2409 - version = "0.12.1" 2410 source = "registry+https://github.com/rust-lang/crates.io-index" 2411 - checksum = "f4fdd22f3b9c31b53c060df4a0613a1c7f062d4115a2b984dd15b1858f7e340d" 2412 dependencies = [ 2413 "bytes", 2414 "prost-derive", ··· 2416 2417 [[package]] 2418 name = "prost-build" 2419 - version = "0.12.1" 2420 source = "registry+https://github.com/rust-lang/crates.io-index" 2421 - checksum = "8bdf592881d821b83d471f8af290226c8d51402259e9bb5be7f9f8bdebbb11ac" 2422 dependencies = [ 2423 "bytes", 2424 "heck 0.4.1", ··· 2431 "prost", 2432 "prost-types", 2433 "regex", 2434 - "syn 2.0.38", 2435 "tempfile", 2436 "which", 2437 ] 2438 2439 [[package]] 2440 name = "prost-derive" 2441 - version = "0.12.1" 2442 source = "registry+https://github.com/rust-lang/crates.io-index" 2443 - checksum = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32" 2444 dependencies = [ 2445 "anyhow", 2446 "itertools 0.11.0", 2447 "proc-macro2", 2448 "quote", 2449 - "syn 2.0.38", 2450 ] 2451 2452 [[package]] 2453 name = "prost-types" 2454 - version = "0.12.1" 2455 source = "registry+https://github.com/rust-lang/crates.io-index" 2456 - checksum = "e081b29f63d83a4bc75cfc9f3fe424f9156cf92d8a4f0c9407cce9a1b67327cf" 2457 dependencies = [ 2458 "prost", 2459 ] 2460 2461 [[package]] 2462 name = "quick-error" 2463 version = "1.2.3" 2464 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2466 2467 [[package]] 2468 name = "quote" 2469 - version = "1.0.33" 2470 source = "registry+https://github.com/rust-lang/crates.io-index" 2471 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 2472 dependencies = [ 2473 "proc-macro2", 2474 ] ··· 2550 "aho-corasick", 2551 "memchr", 2552 "regex-automata", 2553 - "regex-syntax 0.8.2", 2554 ] 2555 2556 [[package]] ··· 2561 dependencies = [ 2562 "aho-corasick", 2563 "memchr", 2564 - "regex-syntax 0.8.2", 2565 ] 2566 2567 [[package]] 2568 name = "regex-syntax" 2569 - version = "0.7.5" 2570 - source = "registry+https://github.com/rust-lang/crates.io-index" 2571 - checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 2572 - 2573 - [[package]] 2574 - name = "regex-syntax" 2575 version = "0.8.2" 2576 source = "registry+https://github.com/rust-lang/crates.io-index" 2577 checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2578 2579 [[package]] 2580 name = "ring" 2581 - version = "0.17.5" 2582 source = "registry+https://github.com/rust-lang/crates.io-index" 2583 - checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 2584 dependencies = [ 2585 "cc", 2586 "getrandom", ··· 2608 source = "registry+https://github.com/rust-lang/crates.io-index" 2609 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2610 dependencies = [ 2611 - "semver 1.0.20", 2612 ] 2613 2614 [[package]] 2615 name = "rustix" 2616 - version = "0.38.21" 2617 source = "registry+https://github.com/rust-lang/crates.io-index" 2618 - checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" 2619 dependencies = [ 2620 "bitflags 2.4.1", 2621 "errno", 2622 "libc", 2623 "linux-raw-sys", 2624 - "windows-sys 0.48.0", 2625 ] 2626 2627 [[package]] 2628 name = "rustls" 2629 - version = "0.21.8" 2630 source = "registry+https://github.com/rust-lang/crates.io-index" 2631 - checksum = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c" 2632 dependencies = [ 2633 "log", 2634 "ring", ··· 2650 2651 [[package]] 2652 name = "rustls-pemfile" 2653 - version = "1.0.3" 2654 source = "registry+https://github.com/rust-lang/crates.io-index" 2655 - checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 2656 dependencies = [ 2657 "base64", 2658 ] ··· 2681 2682 [[package]] 2683 name = "ryu" 2684 - version = "1.0.15" 2685 source = "registry+https://github.com/rust-lang/crates.io-index" 2686 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 2687 2688 [[package]] 2689 name = "same-file" ··· 2696 2697 [[package]] 2698 name = "schannel" 2699 - version = "0.1.22" 2700 source = "registry+https://github.com/rust-lang/crates.io-index" 2701 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 2702 dependencies = [ 2703 - "windows-sys 0.48.0", 2704 ] 2705 2706 [[package]] ··· 2759 2760 [[package]] 2761 name = "semver" 2762 - version = "1.0.20" 2763 source = "registry+https://github.com/rust-lang/crates.io-index" 2764 - checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 2765 2766 [[package]] 2767 name = "semver-parser" ··· 2771 2772 [[package]] 2773 name = "serde" 2774 - version = "1.0.190" 2775 source = "registry+https://github.com/rust-lang/crates.io-index" 2776 - checksum = "91d3c334ca1ee894a2c6f6ad698fe8c435b76d504b13d436f0685d648d6d96f7" 2777 dependencies = [ 2778 "serde_derive", 2779 ] 2780 2781 [[package]] 2782 name = "serde_derive" 2783 - version = "1.0.190" 2784 source = "registry+https://github.com/rust-lang/crates.io-index" 2785 - checksum = "67c5609f394e5c2bd7fc51efda478004ea80ef42fee983d5c67a65e34f32c0e3" 2786 dependencies = [ 2787 "proc-macro2", 2788 "quote", 2789 - "syn 2.0.38", 2790 ] 2791 2792 [[package]] 2793 name = "serde_json" 2794 - version = "1.0.108" 2795 source = "registry+https://github.com/rust-lang/crates.io-index" 2796 - checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 2797 dependencies = [ 2798 "itoa", 2799 "ryu", ··· 2844 name = "signal-crypto" 2845 version = "0.1.0" 2846 dependencies = [ 2847 - "aes 0.8.3", 2848 "cbc", 2849 "criterion", 2850 - "ctr 0.9.2", 2851 "displaydoc", 2852 - "ghash 0.5.0", 2853 "hex", 2854 "hex-literal", 2855 "hmac", ··· 2926 2927 [[package]] 2928 name = "smallvec" 2929 - version = "1.11.1" 2930 source = "registry+https://github.com/rust-lang/crates.io-index" 2931 - checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 2932 2933 [[package]] 2934 name = "snow" 2935 - version = "0.9.3" 2936 source = "registry+https://github.com/rust-lang/crates.io-index" 2937 - checksum = "0c9d1425eb528a21de2755c75af4c9b5d57f50a0d4c3b7f1828a4cd03f8ba155" 2938 dependencies = [ 2939 "aes-gcm", 2940 "blake2", 2941 - "chacha20poly1305 0.9.1", 2942 "curve25519-dalek", 2943 "rand_core", 2944 "rustc_version", ··· 2948 2949 [[package]] 2950 name = "socket2" 2951 - version = "0.4.10" 2952 - source = "registry+https://github.com/rust-lang/crates.io-index" 2953 - checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 2954 - dependencies = [ 2955 - "libc", 2956 - "winapi", 2957 - ] 2958 - 2959 - [[package]] 2960 - name = "socket2" 2961 version = "0.5.5" 2962 source = "registry+https://github.com/rust-lang/crates.io-index" 2963 checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" ··· 3003 3004 [[package]] 3005 name = "syn" 3006 - version = "2.0.38" 3007 source = "registry+https://github.com/rust-lang/crates.io-index" 3008 - checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" 3009 dependencies = [ 3010 "proc-macro2", 3011 "quote", ··· 3025 3026 [[package]] 3027 name = "tempfile" 3028 - version = "3.8.1" 3029 source = "registry+https://github.com/rust-lang/crates.io-index" 3030 - checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 3031 dependencies = [ 3032 "cfg-if", 3033 "fastrand", 3034 "redox_syscall", 3035 "rustix", 3036 - "windows-sys 0.48.0", 3037 ] 3038 3039 [[package]] 3040 name = "termcolor" 3041 - version = "1.3.0" 3042 source = "registry+https://github.com/rust-lang/crates.io-index" 3043 - checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" 3044 dependencies = [ 3045 "winapi-util", 3046 ] 3047 3048 [[package]] 3049 name = "thiserror" 3050 - version = "1.0.50" 3051 source = "registry+https://github.com/rust-lang/crates.io-index" 3052 - checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 3053 dependencies = [ 3054 "thiserror-impl", 3055 ] 3056 3057 [[package]] 3058 name = "thiserror-impl" 3059 - version = "1.0.50" 3060 source = "registry+https://github.com/rust-lang/crates.io-index" 3061 - checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 3062 dependencies = [ 3063 "proc-macro2", 3064 "quote", 3065 - "syn 2.0.38", 3066 ] 3067 3068 [[package]] ··· 3092 3093 [[package]] 3094 name = "tokio" 3095 - version = "1.33.0" 3096 source = "registry+https://github.com/rust-lang/crates.io-index" 3097 - checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" 3098 dependencies = [ 3099 "backtrace", 3100 "bytes", ··· 3104 "parking_lot", 3105 "pin-project-lite", 3106 "signal-hook-registry", 3107 - "socket2 0.5.5", 3108 "tokio-macros", 3109 "windows-sys 0.48.0", 3110 ] ··· 3121 3122 [[package]] 3123 name = "tokio-macros" 3124 - version = "2.1.0" 3125 source = "registry+https://github.com/rust-lang/crates.io-index" 3126 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 3127 dependencies = [ 3128 "proc-macro2", 3129 "quote", 3130 - "syn 2.0.38", 3131 ] 3132 3133 [[package]] ··· 3153 3154 [[package]] 3155 name = "tokio-tungstenite" 3156 - version = "0.19.0" 3157 source = "registry+https://github.com/rust-lang/crates.io-index" 3158 - checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c" 3159 dependencies = [ 3160 "futures-util", 3161 "log", 3162 "tokio", 3163 - "tungstenite 0.19.0", 3164 ] 3165 3166 [[package]] 3167 name = "tokio-tungstenite" 3168 - version = "0.20.1" 3169 source = "registry+https://github.com/rust-lang/crates.io-index" 3170 - checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" 3171 dependencies = [ 3172 "futures-util", 3173 "log", 3174 "tokio", 3175 - "tungstenite 0.20.1", 3176 ] 3177 3178 [[package]] ··· 3234 3235 [[package]] 3236 name = "try-lock" 3237 - version = "0.2.4" 3238 source = "registry+https://github.com/rust-lang/crates.io-index" 3239 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 3240 3241 [[package]] 3242 name = "tungstenite" 3243 - version = "0.19.0" 3244 source = "registry+https://github.com/rust-lang/crates.io-index" 3245 - checksum = "15fba1a6d6bb030745759a9a2a588bfe8490fc8b4751a277db3a0be1c9ebbf67" 3246 dependencies = [ 3247 "byteorder", 3248 "bytes", 3249 "data-encoding", 3250 - "http", 3251 "httparse", 3252 "log", 3253 "rand", ··· 3259 3260 [[package]] 3261 name = "tungstenite" 3262 - version = "0.20.1" 3263 source = "registry+https://github.com/rust-lang/crates.io-index" 3264 - checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" 3265 dependencies = [ 3266 "byteorder", 3267 "bytes", 3268 "data-encoding", 3269 - "http", 3270 "httparse", 3271 "log", 3272 "rand", ··· 3299 3300 [[package]] 3301 name = "unicode-bidi" 3302 - version = "0.3.13" 3303 source = "registry+https://github.com/rust-lang/crates.io-index" 3304 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 3305 3306 [[package]] 3307 name = "unicode-ident" ··· 3326 3327 [[package]] 3328 name = "universal-hash" 3329 - version = "0.4.0" 3330 - source = "registry+https://github.com/rust-lang/crates.io-index" 3331 - checksum = "8326b2c654932e3e4f9196e69d08fdf7cfd718e1dc6f66b347e6024a0c961402" 3332 - dependencies = [ 3333 - "generic-array", 3334 - "subtle", 3335 - ] 3336 - 3337 - [[package]] 3338 - name = "universal-hash" 3339 version = "0.5.1" 3340 source = "registry+https://github.com/rust-lang/crates.io-index" 3341 checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" ··· 3352 3353 [[package]] 3354 name = "url" 3355 - version = "2.4.1" 3356 source = "registry+https://github.com/rust-lang/crates.io-index" 3357 - checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 3358 dependencies = [ 3359 "form_urlencoded", 3360 "idna", ··· 3369 "curve25519-dalek", 3370 "displaydoc", 3371 "hkdf", 3372 "lazy_static", 3373 "poksho", 3374 "proptest", 3375 "prost", ··· 3389 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3390 3391 [[package]] 3392 name = "uuid" 3393 - version = "1.5.0" 3394 source = "registry+https://github.com/rust-lang/crates.io-index" 3395 - checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" 3396 3397 [[package]] 3398 name = "variant_count" ··· 3448 "futures-channel", 3449 "futures-util", 3450 "headers", 3451 - "http", 3452 - "hyper 0.14.27", 3453 "log", 3454 "mime", 3455 "mime_guess", ··· 3478 3479 [[package]] 3480 name = "wasm-bindgen" 3481 - version = "0.2.88" 3482 source = "registry+https://github.com/rust-lang/crates.io-index" 3483 - checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce" 3484 dependencies = [ 3485 "cfg-if", 3486 "wasm-bindgen-macro", ··· 3488 3489 [[package]] 3490 name = "wasm-bindgen-backend" 3491 - version = "0.2.88" 3492 source = "registry+https://github.com/rust-lang/crates.io-index" 3493 - checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217" 3494 dependencies = [ 3495 "bumpalo", 3496 "log", 3497 "once_cell", 3498 "proc-macro2", 3499 "quote", 3500 - "syn 2.0.38", 3501 "wasm-bindgen-shared", 3502 ] 3503 3504 [[package]] 3505 name = "wasm-bindgen-macro" 3506 - version = "0.2.88" 3507 source = "registry+https://github.com/rust-lang/crates.io-index" 3508 - checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2" 3509 dependencies = [ 3510 "quote", 3511 "wasm-bindgen-macro-support", ··· 3513 3514 [[package]] 3515 name = "wasm-bindgen-macro-support" 3516 - version = "0.2.88" 3517 source = "registry+https://github.com/rust-lang/crates.io-index" 3518 - checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907" 3519 dependencies = [ 3520 "proc-macro2", 3521 "quote", 3522 - "syn 2.0.38", 3523 "wasm-bindgen-backend", 3524 "wasm-bindgen-shared", 3525 ] 3526 3527 [[package]] 3528 name = "wasm-bindgen-shared" 3529 - version = "0.2.88" 3530 source = "registry+https://github.com/rust-lang/crates.io-index" 3531 - checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" 3532 3533 [[package]] 3534 name = "web-sys" 3535 - version = "0.3.65" 3536 source = "registry+https://github.com/rust-lang/crates.io-index" 3537 - checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85" 3538 dependencies = [ 3539 "js-sys", 3540 "wasm-bindgen", ··· 3604 3605 [[package]] 3606 name = "windows-core" 3607 - version = "0.51.1" 3608 source = "registry+https://github.com/rust-lang/crates.io-index" 3609 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 3610 dependencies = [ 3611 - "windows-targets 0.48.5", 3612 ] 3613 3614 [[package]] ··· 3630 ] 3631 3632 [[package]] 3633 name = "windows-targets" 3634 version = "0.42.2" 3635 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3660 ] 3661 3662 [[package]] 3663 name = "windows_aarch64_gnullvm" 3664 version = "0.42.2" 3665 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3672 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3673 3674 [[package]] 3675 name = "windows_aarch64_msvc" 3676 version = "0.42.2" 3677 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3684 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3685 3686 [[package]] 3687 name = "windows_i686_gnu" 3688 version = "0.42.2" 3689 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3696 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3697 3698 [[package]] 3699 name = "windows_i686_msvc" 3700 version = "0.42.2" 3701 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3708 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3709 3710 [[package]] 3711 name = "windows_x86_64_gnu" 3712 version = "0.42.2" 3713 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3720 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3721 3722 [[package]] 3723 name = "windows_x86_64_gnullvm" 3724 version = "0.42.2" 3725 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3732 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3733 3734 [[package]] 3735 name = "windows_x86_64_msvc" 3736 version = "0.42.2" 3737 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3744 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3745 3746 [[package]] 3747 name = "winnow" 3748 - version = "0.5.18" 3749 source = "registry+https://github.com/rust-lang/crates.io-index" 3750 - checksum = "176b6138793677221d420fd2f0aeeced263f197688b36484660da767bca2fa32" 3751 dependencies = [ 3752 "memchr", 3753 ] ··· 3766 3767 [[package]] 3768 name = "zeroize" 3769 - version = "1.6.0" 3770 source = "registry+https://github.com/rust-lang/crates.io-index" 3771 - checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" 3772 dependencies = [ 3773 "zeroize_derive", 3774 ] ··· 3781 dependencies = [ 3782 "proc-macro2", 3783 "quote", 3784 - "syn 2.0.38", 3785 ] 3786 3787 [[package]] ··· 3811 "bincode", 3812 "criterion", 3813 "curve25519-dalek", 3814 "displaydoc", 3815 "hex", 3816 "hex-literal", 3817 "hkdf", 3818 "lazy_static", 3819 - "libsignal-protocol", 3820 "partial-default", 3821 "poksho", 3822 "rand",
··· 19 20 [[package]] 21 name = "aead" 22 version = "0.5.2" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" ··· 29 30 [[package]] 31 name = "aes" 32 version = "0.8.3" 33 source = "registry+https://github.com/rust-lang/crates.io-index" 34 checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" 35 dependencies = [ 36 "cfg-if", 37 + "cipher", 38 "cpufeatures", 39 "zeroize", 40 ] 41 42 [[package]] 43 name = "aes-gcm" 44 + version = "0.10.3" 45 source = "registry+https://github.com/rust-lang/crates.io-index" 46 + checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 47 dependencies = [ 48 + "aead", 49 + "aes", 50 + "cipher", 51 + "ctr", 52 + "ghash", 53 "subtle", 54 ] 55 ··· 59 source = "registry+https://github.com/rust-lang/crates.io-index" 60 checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d" 61 dependencies = [ 62 + "aead", 63 + "aes", 64 + "cipher", 65 + "ctr", 66 + "polyval", 67 "subtle", 68 "zeroize", 69 ] ··· 99 checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 100 101 [[package]] 102 + name = "anstream" 103 + version = "0.6.7" 104 + source = "registry+https://github.com/rust-lang/crates.io-index" 105 + checksum = "4cd2405b3ac1faab2990b74d728624cd9fd115651fcecc7c2d8daf01376275ba" 106 + dependencies = [ 107 + "anstyle", 108 + "anstyle-parse", 109 + "anstyle-query", 110 + "anstyle-wincon", 111 + "colorchoice", 112 + "utf8parse", 113 + ] 114 + 115 + [[package]] 116 name = "anstyle" 117 version = "1.0.4" 118 source = "registry+https://github.com/rust-lang/crates.io-index" 119 checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" 120 121 [[package]] 122 + name = "anstyle-parse" 123 + version = "0.2.3" 124 + source = "registry+https://github.com/rust-lang/crates.io-index" 125 + checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 126 + dependencies = [ 127 + "utf8parse", 128 + ] 129 + 130 + [[package]] 131 + name = "anstyle-query" 132 + version = "1.0.2" 133 + source = "registry+https://github.com/rust-lang/crates.io-index" 134 + checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 135 + dependencies = [ 136 + "windows-sys 0.52.0", 137 + ] 138 + 139 + [[package]] 140 + name = "anstyle-wincon" 141 + version = "3.0.2" 142 + source = "registry+https://github.com/rust-lang/crates.io-index" 143 + checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 144 + dependencies = [ 145 + "anstyle", 146 + "windows-sys 0.52.0", 147 + ] 148 + 149 + [[package]] 150 name = "anyhow" 151 + version = "1.0.79" 152 source = "registry+https://github.com/rust-lang/crates.io-index" 153 + checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 154 155 [[package]] 156 name = "argon2" ··· 166 ] 167 168 [[package]] 169 + name = "array-concat" 170 + version = "0.5.2" 171 + source = "registry+https://github.com/rust-lang/crates.io-index" 172 + checksum = "e9180feb72ccbc07cfe5ef7fa8bbf86ca71490d5dc9ef8ea02c7298ba94e7f7d" 173 + 174 + [[package]] 175 name = "arrayref" 176 version = "0.3.7" 177 source = "registry+https://github.com/rust-lang/crates.io-index" 178 checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 179 180 [[package]] 181 + name = "arrayvec" 182 + version = "0.7.4" 183 + source = "registry+https://github.com/rust-lang/crates.io-index" 184 + checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 185 + 186 + [[package]] 187 name = "asn1" 188 version = "0.15.5" 189 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 200 dependencies = [ 201 "proc-macro2", 202 "quote", 203 + "syn 2.0.48", 204 ] 205 206 [[package]] ··· 210 checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" 211 212 [[package]] 213 + name = "async-compression" 214 + version = "0.4.5" 215 + source = "registry+https://github.com/rust-lang/crates.io-index" 216 + checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5" 217 + dependencies = [ 218 + "flate2", 219 + "futures-core", 220 + "futures-io", 221 + "memchr", 222 + "pin-project-lite", 223 + ] 224 + 225 + [[package]] 226 name = "async-trait" 227 + version = "0.1.77" 228 source = "registry+https://github.com/rust-lang/crates.io-index" 229 + checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 230 dependencies = [ 231 "proc-macro2", 232 "quote", 233 + "syn 2.0.48", 234 ] 235 236 [[package]] ··· 240 "asn1", 241 "bitflags 2.4.1", 242 "boring", 243 + "chacha20poly1305", 244 "chrono", 245 "ciborium", 246 "displaydoc", ··· 286 287 [[package]] 288 name = "base64" 289 + version = "0.21.7" 290 source = "registry+https://github.com/rust-lang/crates.io-index" 291 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 292 293 [[package]] 294 name = "base64ct" ··· 322 "regex", 323 "rustc-hash", 324 "shlex", 325 + "syn 2.0.48", 326 ] 327 328 [[package]] ··· 354 355 [[package]] 356 name = "bitstream-io" 357 + version = "1.10.0" 358 source = "registry+https://github.com/rust-lang/crates.io-index" 359 + checksum = "e445576659fd04a57b44cbd00aa37aaa815ebefa0aa3cb677a6b5e63d883074f" 360 361 [[package]] 362 name = "blake2" ··· 444 source = "registry+https://github.com/rust-lang/crates.io-index" 445 checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 446 dependencies = [ 447 + "cipher", 448 ] 449 450 [[package]] ··· 480 481 [[package]] 482 name = "chacha20" 483 version = "0.9.1" 484 source = "registry+https://github.com/rust-lang/crates.io-index" 485 checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" 486 dependencies = [ 487 "cfg-if", 488 + "cipher", 489 "cpufeatures", 490 ] 491 492 [[package]] 493 name = "chacha20poly1305" 494 version = "0.10.1" 495 source = "registry+https://github.com/rust-lang/crates.io-index" 496 checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" 497 dependencies = [ 498 + "aead", 499 + "chacha20", 500 + "cipher", 501 + "poly1305", 502 "zeroize", 503 ] 504 ··· 546 547 [[package]] 548 name = "cipher" 549 version = "0.4.4" 550 source = "registry+https://github.com/rust-lang/crates.io-index" 551 checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" ··· 557 558 [[package]] 559 name = "clang-sys" 560 + version = "1.7.0" 561 source = "registry+https://github.com/rust-lang/crates.io-index" 562 + checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" 563 dependencies = [ 564 "glob", 565 "libc", 566 + "libloading 0.8.1", 567 ] 568 569 [[package]] 570 name = "clap" 571 + version = "4.4.16" 572 source = "registry+https://github.com/rust-lang/crates.io-index" 573 + checksum = "58e54881c004cec7895b0068a0a954cd5d62da01aef83fa35b1e594497bf5445" 574 dependencies = [ 575 "clap_builder", 576 + "clap_derive", 577 + ] 578 + 579 + [[package]] 580 + name = "clap-stdin" 581 + version = "0.3.0" 582 + source = "registry+https://github.com/rust-lang/crates.io-index" 583 + checksum = "1b2273396940ab439c58cd300e1e93a07768fce6e7a578f24089aab40b3a9d00" 584 + dependencies = [ 585 + "thiserror", 586 ] 587 588 [[package]] 589 name = "clap_builder" 590 + version = "4.4.16" 591 source = "registry+https://github.com/rust-lang/crates.io-index" 592 + checksum = "59cb82d7f531603d2fd1f507441cdd35184fa81beff7bd489570de7f773460bb" 593 dependencies = [ 594 + "anstream", 595 "anstyle", 596 "clap_lex", 597 + "strsim", 598 + ] 599 + 600 + [[package]] 601 + name = "clap_derive" 602 + version = "4.4.7" 603 + source = "registry+https://github.com/rust-lang/crates.io-index" 604 + checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" 605 + dependencies = [ 606 + "heck 0.4.1", 607 + "proc-macro2", 608 + "quote", 609 + "syn 2.0.48", 610 ] 611 612 [[package]] ··· 625 ] 626 627 [[package]] 628 + name = "colorchoice" 629 + version = "1.0.0" 630 + source = "registry+https://github.com/rust-lang/crates.io-index" 631 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 632 + 633 + [[package]] 634 name = "combine" 635 version = "4.6.6" 636 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 648 649 [[package]] 650 name = "core-foundation" 651 + version = "0.9.4" 652 source = "registry+https://github.com/rust-lang/crates.io-index" 653 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 654 dependencies = [ 655 "core-foundation-sys", 656 "libc", ··· 658 659 [[package]] 660 name = "core-foundation-sys" 661 + version = "0.8.6" 662 source = "registry+https://github.com/rust-lang/crates.io-index" 663 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 664 665 [[package]] 666 name = "cpufeatures" 667 + version = "0.2.12" 668 source = "registry+https://github.com/rust-lang/crates.io-index" 669 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 670 dependencies = [ 671 "libc", 672 + ] 673 + 674 + [[package]] 675 + name = "crc32fast" 676 + version = "1.3.2" 677 + source = "registry+https://github.com/rust-lang/crates.io-index" 678 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 679 + dependencies = [ 680 + "cfg-if", 681 ] 682 683 [[package]] ··· 718 719 [[package]] 720 name = "crossbeam-deque" 721 + version = "0.8.5" 722 source = "registry+https://github.com/rust-lang/crates.io-index" 723 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 724 dependencies = [ 725 "crossbeam-epoch", 726 "crossbeam-utils", 727 ] 728 729 [[package]] 730 name = "crossbeam-epoch" 731 + version = "0.9.18" 732 source = "registry+https://github.com/rust-lang/crates.io-index" 733 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 734 dependencies = [ 735 "crossbeam-utils", 736 ] 737 738 [[package]] 739 name = "crossbeam-utils" 740 + version = "0.8.19" 741 source = "registry+https://github.com/rust-lang/crates.io-index" 742 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 743 744 [[package]] 745 name = "crypto-common" ··· 754 755 [[package]] 756 name = "ctr" 757 version = "0.9.2" 758 source = "registry+https://github.com/rust-lang/crates.io-index" 759 checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 760 dependencies = [ 761 + "cipher", 762 ] 763 764 [[package]] ··· 786 dependencies = [ 787 "proc-macro2", 788 "quote", 789 + "syn 2.0.48", 790 ] 791 792 [[package]] ··· 826 827 [[package]] 828 name = "data-encoding" 829 + version = "2.5.0" 830 source = "registry+https://github.com/rust-lang/crates.io-index" 831 + checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 832 833 [[package]] 834 name = "derive-where" 835 + version = "1.2.7" 836 source = "registry+https://github.com/rust-lang/crates.io-index" 837 + checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" 838 dependencies = [ 839 "proc-macro2", 840 "quote", 841 + "syn 2.0.48", 842 ] 843 844 [[package]] ··· 913 dependencies = [ 914 "proc-macro2", 915 "quote", 916 + "syn 2.0.48", 917 ] 918 919 [[package]] ··· 951 952 [[package]] 953 name = "dyn-clone" 954 + version = "1.0.16" 955 source = "registry+https://github.com/rust-lang/crates.io-index" 956 + checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d" 957 958 [[package]] 959 name = "either" ··· 972 973 [[package]] 974 name = "env_logger" 975 + version = "0.10.1" 976 source = "registry+https://github.com/rust-lang/crates.io-index" 977 + checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" 978 dependencies = [ 979 "humantime", 980 "is-terminal", ··· 991 992 [[package]] 993 name = "errno" 994 + version = "0.3.8" 995 source = "registry+https://github.com/rust-lang/crates.io-index" 996 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 997 dependencies = [ 998 "libc", 999 + "windows-sys 0.52.0", 1000 ] 1001 1002 [[package]] ··· 1018 checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 1019 1020 [[package]] 1021 + name = "flate2" 1022 + version = "1.0.28" 1023 + source = "registry+https://github.com/rust-lang/crates.io-index" 1024 + checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1025 + dependencies = [ 1026 + "crc32fast", 1027 + "miniz_oxide", 1028 + ] 1029 + 1030 + [[package]] 1031 name = "fnv" 1032 version = "1.0.7" 1033 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1051 dependencies = [ 1052 "proc-macro2", 1053 "quote", 1054 + "syn 2.0.48", 1055 ] 1056 1057 [[package]] ··· 1062 1063 [[package]] 1064 name = "form_urlencoded" 1065 + version = "1.2.1" 1066 source = "registry+https://github.com/rust-lang/crates.io-index" 1067 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1068 dependencies = [ 1069 "percent-encoding", 1070 ] ··· 1086 ] 1087 1088 [[package]] 1089 + name = "futures" 1090 + version = "0.3.30" 1091 + source = "registry+https://github.com/rust-lang/crates.io-index" 1092 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1093 + dependencies = [ 1094 + "futures-channel", 1095 + "futures-core", 1096 + "futures-executor", 1097 + "futures-io", 1098 + "futures-sink", 1099 + "futures-task", 1100 + "futures-util", 1101 + ] 1102 + 1103 + [[package]] 1104 name = "futures-channel" 1105 + version = "0.3.30" 1106 source = "registry+https://github.com/rust-lang/crates.io-index" 1107 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1108 dependencies = [ 1109 "futures-core", 1110 "futures-sink", ··· 1112 1113 [[package]] 1114 name = "futures-core" 1115 + version = "0.3.30" 1116 source = "registry+https://github.com/rust-lang/crates.io-index" 1117 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1118 + 1119 + [[package]] 1120 + name = "futures-executor" 1121 + version = "0.3.30" 1122 + source = "registry+https://github.com/rust-lang/crates.io-index" 1123 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1124 + dependencies = [ 1125 + "futures-core", 1126 + "futures-task", 1127 + "futures-util", 1128 + ] 1129 1130 [[package]] 1131 name = "futures-io" 1132 + version = "0.3.30" 1133 source = "registry+https://github.com/rust-lang/crates.io-index" 1134 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1135 1136 [[package]] 1137 name = "futures-macro" 1138 + version = "0.3.30" 1139 source = "registry+https://github.com/rust-lang/crates.io-index" 1140 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1141 dependencies = [ 1142 "proc-macro2", 1143 "quote", 1144 + "syn 2.0.48", 1145 ] 1146 1147 [[package]] 1148 name = "futures-sink" 1149 + version = "0.3.30" 1150 source = "registry+https://github.com/rust-lang/crates.io-index" 1151 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1152 1153 [[package]] 1154 name = "futures-task" 1155 + version = "0.3.30" 1156 source = "registry+https://github.com/rust-lang/crates.io-index" 1157 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1158 1159 [[package]] 1160 name = "futures-util" 1161 + version = "0.3.30" 1162 source = "registry+https://github.com/rust-lang/crates.io-index" 1163 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1164 dependencies = [ 1165 + "futures-channel", 1166 "futures-core", 1167 "futures-io", 1168 "futures-macro", ··· 1186 1187 [[package]] 1188 name = "getrandom" 1189 + version = "0.2.12" 1190 source = "registry+https://github.com/rust-lang/crates.io-index" 1191 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 1192 dependencies = [ 1193 "cfg-if", 1194 "libc", ··· 1197 1198 [[package]] 1199 name = "ghash" 1200 version = "0.5.0" 1201 source = "registry+https://github.com/rust-lang/crates.io-index" 1202 checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40" 1203 dependencies = [ 1204 "opaque-debug", 1205 + "polyval", 1206 "zeroize", 1207 ] 1208 1209 [[package]] 1210 name = "gimli" 1211 + version = "0.28.1" 1212 source = "registry+https://github.com/rust-lang/crates.io-index" 1213 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1214 1215 [[package]] 1216 name = "glob" ··· 1220 1221 [[package]] 1222 name = "h2" 1223 + version = "0.3.23" 1224 source = "registry+https://github.com/rust-lang/crates.io-index" 1225 + checksum = "b553656127a00601c8ae5590fcfdc118e4083a7924b6cf4ffc1ea4b99dc429d7" 1226 dependencies = [ 1227 "bytes", 1228 "fnv", 1229 "futures-core", 1230 "futures-sink", 1231 "futures-util", 1232 + "http 0.2.11", 1233 + "indexmap 2.1.0", 1234 + "slab", 1235 + "tokio", 1236 + "tokio-util", 1237 + "tracing", 1238 + ] 1239 + 1240 + [[package]] 1241 + name = "h2" 1242 + version = "0.4.1" 1243 + source = "registry+https://github.com/rust-lang/crates.io-index" 1244 + checksum = "991910e35c615d8cab86b5ab04be67e6ad24d2bf5f4f11fdbbed26da999bbeab" 1245 + dependencies = [ 1246 + "bytes", 1247 + "fnv", 1248 + "futures-core", 1249 + "futures-sink", 1250 + "futures-util", 1251 + "http 1.0.0", 1252 + "indexmap 2.1.0", 1253 "slab", 1254 "tokio", 1255 "tokio-util", ··· 1270 1271 [[package]] 1272 name = "hashbrown" 1273 + version = "0.14.3" 1274 source = "registry+https://github.com/rust-lang/crates.io-index" 1275 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1276 1277 [[package]] 1278 name = "headers" ··· 1283 "base64", 1284 "bytes", 1285 "headers-core", 1286 + "http 0.2.11", 1287 "httpdate", 1288 "mime", 1289 "sha1", ··· 1295 source = "registry+https://github.com/rust-lang/crates.io-index" 1296 checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 1297 dependencies = [ 1298 + "http 0.2.11", 1299 ] 1300 1301 [[package]] ··· 1336 1337 [[package]] 1338 name = "hkdf" 1339 + version = "0.12.4" 1340 source = "registry+https://github.com/rust-lang/crates.io-index" 1341 + checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 1342 dependencies = [ 1343 "hmac", 1344 ] ··· 1354 1355 [[package]] 1356 name = "home" 1357 + version = "0.5.9" 1358 source = "registry+https://github.com/rust-lang/crates.io-index" 1359 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1360 dependencies = [ 1361 + "windows-sys 0.52.0", 1362 ] 1363 1364 [[package]] 1365 name = "http" 1366 + version = "0.2.11" 1367 source = "registry+https://github.com/rust-lang/crates.io-index" 1368 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 1369 + dependencies = [ 1370 + "bytes", 1371 + "fnv", 1372 + "itoa", 1373 + ] 1374 + 1375 + [[package]] 1376 + name = "http" 1377 + version = "1.0.0" 1378 + source = "registry+https://github.com/rust-lang/crates.io-index" 1379 + checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" 1380 dependencies = [ 1381 "bytes", 1382 "fnv", ··· 1385 1386 [[package]] 1387 name = "http-body" 1388 + version = "0.4.6" 1389 source = "registry+https://github.com/rust-lang/crates.io-index" 1390 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1391 dependencies = [ 1392 "bytes", 1393 + "http 0.2.11", 1394 "pin-project-lite", 1395 ] 1396 1397 [[package]] 1398 name = "http-body" 1399 + version = "1.0.0" 1400 source = "registry+https://github.com/rust-lang/crates.io-index" 1401 + checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" 1402 dependencies = [ 1403 "bytes", 1404 + "http 1.0.0", 1405 ] 1406 1407 [[package]] 1408 name = "http-body-util" 1409 + version = "0.1.0" 1410 source = "registry+https://github.com/rust-lang/crates.io-index" 1411 + checksum = "41cb79eb393015dadd30fc252023adb0b2400a0caee0fa2a077e6e21a551e840" 1412 dependencies = [ 1413 "bytes", 1414 "futures-util", 1415 + "http 1.0.0", 1416 + "http-body 1.0.0", 1417 "pin-project-lite", 1418 ] 1419 ··· 1437 1438 [[package]] 1439 name = "hyper" 1440 + version = "0.14.28" 1441 source = "registry+https://github.com/rust-lang/crates.io-index" 1442 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 1443 dependencies = [ 1444 "bytes", 1445 "futures-channel", 1446 "futures-core", 1447 "futures-util", 1448 + "h2 0.3.23", 1449 + "http 0.2.11", 1450 + "http-body 0.4.6", 1451 "httparse", 1452 "httpdate", 1453 "itoa", 1454 "pin-project-lite", 1455 + "socket2", 1456 "tokio", 1457 "tower-service", 1458 "tracing", ··· 1461 1462 [[package]] 1463 name = "hyper" 1464 + version = "1.1.0" 1465 source = "registry+https://github.com/rust-lang/crates.io-index" 1466 + checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75" 1467 dependencies = [ 1468 "bytes", 1469 "futures-channel", 1470 "futures-util", 1471 + "h2 0.4.1", 1472 + "http 1.0.0", 1473 + "http-body 1.0.0", 1474 "httparse", 1475 "itoa", 1476 "pin-project-lite", 1477 "tokio", 1478 "want", 1479 ] 1480 1481 [[package]] 1482 name = "iana-time-zone" 1483 + version = "0.1.59" 1484 source = "registry+https://github.com/rust-lang/crates.io-index" 1485 + checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" 1486 dependencies = [ 1487 "android_system_properties", 1488 "core-foundation-sys", ··· 1509 1510 [[package]] 1511 name = "idna" 1512 + version = "0.5.0" 1513 source = "registry+https://github.com/rust-lang/crates.io-index" 1514 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1515 dependencies = [ 1516 "unicode-bidi", 1517 "unicode-normalization", ··· 1534 checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 1535 dependencies = [ 1536 "equivalent", 1537 + "hashbrown 0.14.3", 1538 ] 1539 1540 [[package]] ··· 1549 1550 [[package]] 1551 name = "is-terminal" 1552 + version = "0.4.10" 1553 source = "registry+https://github.com/rust-lang/crates.io-index" 1554 + checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455" 1555 dependencies = [ 1556 "hermit-abi", 1557 "rustix", 1558 + "windows-sys 0.52.0", 1559 ] 1560 1561 [[package]] ··· 1578 1579 [[package]] 1580 name = "itoa" 1581 + version = "1.0.10" 1582 source = "registry+https://github.com/rust-lang/crates.io-index" 1583 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1584 1585 [[package]] 1586 name = "jni" ··· 1615 1616 [[package]] 1617 name = "js-sys" 1618 + version = "0.3.67" 1619 source = "registry+https://github.com/rust-lang/crates.io-index" 1620 + checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" 1621 dependencies = [ 1622 "wasm-bindgen", 1623 ] ··· 1636 1637 [[package]] 1638 name = "libc" 1639 + version = "0.2.152" 1640 source = "registry+https://github.com/rust-lang/crates.io-index" 1641 + checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" 1642 1643 [[package]] 1644 name = "libloading" ··· 1652 1653 [[package]] 1654 name = "libloading" 1655 + version = "0.8.1" 1656 source = "registry+https://github.com/rust-lang/crates.io-index" 1657 + checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 1658 dependencies = [ 1659 "cfg-if", 1660 + "windows-sys 0.48.0", 1661 ] 1662 1663 [[package]] ··· 1680 "hkdf", 1681 "hmac", 1682 "jni", 1683 "libsignal-bridge-macros", 1684 "libsignal-net", 1685 "libsignal-protocol", ··· 1719 ] 1720 1721 [[package]] 1722 + name = "libsignal-core" 1723 + version = "0.1.0" 1724 + dependencies = [ 1725 + "hex-literal", 1726 + "num_enum", 1727 + "proptest", 1728 + "uuid", 1729 + ] 1730 + 1731 + [[package]] 1732 name = "libsignal-ffi" 1733 + version = "0.39.2" 1734 dependencies = [ 1735 "async-trait", 1736 "attest", 1737 "cpufeatures", 1738 "device-transfer", 1739 "futures-util", 1740 "libsignal-bridge", 1741 "libsignal-protocol", 1742 "log", ··· 1751 1752 [[package]] 1753 name = "libsignal-jni" 1754 + version = "0.39.2" 1755 dependencies = [ 1756 "async-trait", 1757 "cfg-if", ··· 1766 ] 1767 1768 [[package]] 1769 + name = "libsignal-message-backup" 1770 + version = "0.1.0" 1771 + dependencies = [ 1772 + "aes", 1773 + "array-concat", 1774 + "arrayvec", 1775 + "assert_matches", 1776 + "async-compression", 1777 + "cbc", 1778 + "clap", 1779 + "clap-stdin", 1780 + "derive-where", 1781 + "displaydoc", 1782 + "futures", 1783 + "hex", 1784 + "hex-literal", 1785 + "hkdf", 1786 + "hmac", 1787 + "libsignal-protocol", 1788 + "log", 1789 + "protobuf", 1790 + "protobuf-codegen", 1791 + "sha2", 1792 + "signal-crypto", 1793 + "subtle", 1794 + "test-case", 1795 + "test-log", 1796 + "thiserror", 1797 + "usernames", 1798 + "uuid", 1799 + "zkgroup", 1800 + ] 1801 + 1802 + [[package]] 1803 name = "libsignal-net" 1804 version = "0.1.0" 1805 dependencies = [ ··· 1807 "async-trait", 1808 "attest", 1809 "base64", 1810 + "bincode", 1811 "boring", 1812 "bytes", 1813 + "clap", 1814 "derive-where", 1815 "displaydoc", 1816 "env_logger", 1817 "futures-util", 1818 "hex", 1819 "hex-literal", 1820 + "hkdf", 1821 + "hmac", 1822 + "http 1.0.0", 1823 "http-body-util", 1824 + "hyper 1.1.0", 1825 "lazy_static", 1826 + "libsignal-core", 1827 + "libsignal-svr3", 1828 "log", 1829 "pin-project-lite", 1830 "prost", 1831 "prost-build", 1832 + "rand_core", 1833 "rustls-native-certs", 1834 "serde", 1835 "serde_json", 1836 + "sha2", 1837 "snow", 1838 "thiserror", 1839 "tokio", 1840 "tokio-boring", 1841 "tokio-stream", 1842 + "tokio-tungstenite 0.21.0", 1843 "tokio-util", 1844 + "tungstenite 0.21.0", 1845 "url", 1846 "uuid", 1847 "warp", ··· 1849 1850 [[package]] 1851 name = "libsignal-node" 1852 + version = "0.39.2" 1853 dependencies = [ 1854 "async-trait", 1855 "cmake", ··· 1866 name = "libsignal-protocol" 1867 version = "0.1.0" 1868 dependencies = [ 1869 + "aes", 1870 "aes-gcm-siv", 1871 "arrayref", 1872 "async-trait", 1873 + "clap", 1874 "criterion", 1875 + "ctr", 1876 "curve25519-dalek", 1877 + "derive-where", 1878 "displaydoc", 1879 "env_logger", 1880 "futures-util", ··· 1882 "hex-literal", 1883 "hkdf", 1884 "hmac", 1885 + "indexmap 2.1.0", 1886 "itertools 0.10.5", 1887 + "libsignal-core", 1888 "log", 1889 "num_enum", 1890 + "pqcrypto-kyber 0.7.9", 1891 "pqcrypto-kyber 0.8.0", 1892 "pqcrypto-traits", 1893 "proptest", 1894 "prost", 1895 "prost-build", 1896 "rand", 1897 + "rayon", 1898 "sha2", 1899 "signal-crypto", 1900 "static_assertions", ··· 1909 version = "0.1.0" 1910 dependencies = [ 1911 "attest", 1912 + "base64", 1913 "bytemuck", 1914 "criterion", 1915 "curve25519-dalek", ··· 1917 "hex", 1918 "hex-literal", 1919 "hkdf", 1920 + "http 1.0.0", 1921 + "prost", 1922 + "prost-build", 1923 "rand_core", 1924 "sha2", 1925 "subtle", 1926 + "test-case", 1927 + "tokio", 1928 ] 1929 1930 [[package]] 1931 name = "linkme" 1932 + version = "0.3.22" 1933 source = "registry+https://github.com/rust-lang/crates.io-index" 1934 + checksum = "8b53ad6a33de58864705954edb5ad5d571a010f9e296865ed43dc72a5621b430" 1935 dependencies = [ 1936 "linkme-impl", 1937 ] 1938 1939 [[package]] 1940 name = "linkme-impl" 1941 + version = "0.3.22" 1942 source = "registry+https://github.com/rust-lang/crates.io-index" 1943 + checksum = "04e542a18c94a9b6fcc7adb090fa3ba6b79ee220a16404f325672729f32a66ff" 1944 dependencies = [ 1945 "proc-macro2", 1946 "quote", 1947 + "syn 2.0.48", 1948 ] 1949 1950 [[package]] 1951 name = "linux-raw-sys" 1952 + version = "0.4.12" 1953 source = "registry+https://github.com/rust-lang/crates.io-index" 1954 + checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 1955 1956 [[package]] 1957 name = "lock_api" ··· 1993 1994 [[package]] 1995 name = "memchr" 1996 + version = "2.7.1" 1997 source = "registry+https://github.com/rust-lang/crates.io-index" 1998 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 1999 2000 [[package]] 2001 name = "mime" ··· 2030 2031 [[package]] 2032 name = "mio" 2033 + version = "0.8.10" 2034 source = "registry+https://github.com/rust-lang/crates.io-index" 2035 + checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 2036 dependencies = [ 2037 "libc", 2038 "wasi", ··· 2080 "bytes", 2081 "encoding_rs", 2082 "futures-util", 2083 + "http 0.2.11", 2084 "httparse", 2085 "log", 2086 "memchr", ··· 2200 "proc-macro-crate", 2201 "proc-macro2", 2202 "quote", 2203 + "syn 2.0.48", 2204 ] 2205 2206 [[package]] 2207 name = "object" 2208 + version = "0.32.2" 2209 source = "registry+https://github.com/rust-lang/crates.io-index" 2210 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 2211 dependencies = [ 2212 "memchr", 2213 ] 2214 2215 [[package]] 2216 name = "once_cell" 2217 + version = "1.19.0" 2218 source = "registry+https://github.com/rust-lang/crates.io-index" 2219 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2220 2221 [[package]] 2222 name = "oorandom" ··· 2276 dependencies = [ 2277 "proc-macro2", 2278 "quote", 2279 + "syn 2.0.48", 2280 ] 2281 2282 [[package]] ··· 2304 2305 [[package]] 2306 name = "percent-encoding" 2307 + version = "2.3.1" 2308 source = "registry+https://github.com/rust-lang/crates.io-index" 2309 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2310 2311 [[package]] 2312 name = "petgraph" ··· 2335 dependencies = [ 2336 "proc-macro2", 2337 "quote", 2338 + "syn 2.0.48", 2339 ] 2340 2341 [[package]] ··· 2352 2353 [[package]] 2354 name = "platforms" 2355 + version = "3.3.0" 2356 source = "registry+https://github.com/rust-lang/crates.io-index" 2357 + checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c" 2358 2359 [[package]] 2360 name = "plotters" ··· 2397 2398 [[package]] 2399 name = "poly1305" 2400 version = "0.8.0" 2401 source = "registry+https://github.com/rust-lang/crates.io-index" 2402 checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" 2403 dependencies = [ 2404 "cpufeatures", 2405 "opaque-debug", 2406 + "universal-hash", 2407 ] 2408 2409 [[package]] ··· 2415 "cfg-if", 2416 "cpufeatures", 2417 "opaque-debug", 2418 + "universal-hash", 2419 ] 2420 2421 [[package]] ··· 2438 2439 [[package]] 2440 name = "pqcrypto-kyber" 2441 + version = "0.7.9" 2442 source = "registry+https://github.com/rust-lang/crates.io-index" 2443 + checksum = "c32fe9d5c9913b1aed1ba92b3449eb2d7cf7ca29741b11455dfa34c711b95776" 2444 dependencies = [ 2445 "cc", 2446 "glob", ··· 2470 2471 [[package]] 2472 name = "prettyplease" 2473 + version = "0.2.16" 2474 source = "registry+https://github.com/rust-lang/crates.io-index" 2475 + checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5" 2476 dependencies = [ 2477 "proc-macro2", 2478 + "syn 2.0.48", 2479 ] 2480 2481 [[package]] ··· 2490 2491 [[package]] 2492 name = "proc-macro2" 2493 + version = "1.0.76" 2494 source = "registry+https://github.com/rust-lang/crates.io-index" 2495 + checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" 2496 dependencies = [ 2497 "unicode-ident", 2498 ] 2499 2500 [[package]] 2501 name = "proptest" 2502 + version = "1.4.0" 2503 source = "registry+https://github.com/rust-lang/crates.io-index" 2504 + checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" 2505 dependencies = [ 2506 "bit-set", 2507 "bit-vec", ··· 2511 "rand", 2512 "rand_chacha", 2513 "rand_xorshift", 2514 + "regex-syntax", 2515 "rusty-fork", 2516 "tempfile", 2517 "unarray", ··· 2519 2520 [[package]] 2521 name = "prost" 2522 + version = "0.12.3" 2523 source = "registry+https://github.com/rust-lang/crates.io-index" 2524 + checksum = "146c289cda302b98a28d40c8b3b90498d6e526dd24ac2ecea73e4e491685b94a" 2525 dependencies = [ 2526 "bytes", 2527 "prost-derive", ··· 2529 2530 [[package]] 2531 name = "prost-build" 2532 + version = "0.12.3" 2533 source = "registry+https://github.com/rust-lang/crates.io-index" 2534 + checksum = "c55e02e35260070b6f716a2423c2ff1c3bb1642ddca6f99e1f26d06268a0e2d2" 2535 dependencies = [ 2536 "bytes", 2537 "heck 0.4.1", ··· 2544 "prost", 2545 "prost-types", 2546 "regex", 2547 + "syn 2.0.48", 2548 "tempfile", 2549 "which", 2550 ] 2551 2552 [[package]] 2553 name = "prost-derive" 2554 + version = "0.12.3" 2555 source = "registry+https://github.com/rust-lang/crates.io-index" 2556 + checksum = "efb6c9a1dd1def8e2124d17e83a20af56f1570d6c2d2bd9e266ccb768df3840e" 2557 dependencies = [ 2558 "anyhow", 2559 "itertools 0.11.0", 2560 "proc-macro2", 2561 "quote", 2562 + "syn 2.0.48", 2563 ] 2564 2565 [[package]] 2566 name = "prost-types" 2567 + version = "0.12.3" 2568 source = "registry+https://github.com/rust-lang/crates.io-index" 2569 + checksum = "193898f59edcf43c26227dcd4c8427f00d99d61e95dcde58dabd49fa291d470e" 2570 dependencies = [ 2571 "prost", 2572 ] 2573 2574 [[package]] 2575 + name = "protobuf" 2576 + version = "3.3.0" 2577 + source = "registry+https://github.com/rust-lang/crates.io-index" 2578 + checksum = "b65f4a8ec18723a734e5dc09c173e0abf9690432da5340285d536edcb4dac190" 2579 + dependencies = [ 2580 + "once_cell", 2581 + "protobuf-support", 2582 + "thiserror", 2583 + ] 2584 + 2585 + [[package]] 2586 + name = "protobuf-codegen" 2587 + version = "3.3.0" 2588 + source = "registry+https://github.com/rust-lang/crates.io-index" 2589 + checksum = "6e85514a216b1c73111d9032e26cc7a5ecb1bb3d4d9539e91fb72a4395060f78" 2590 + dependencies = [ 2591 + "anyhow", 2592 + "once_cell", 2593 + "protobuf", 2594 + "protobuf-parse", 2595 + "regex", 2596 + "tempfile", 2597 + "thiserror", 2598 + ] 2599 + 2600 + [[package]] 2601 + name = "protobuf-parse" 2602 + version = "3.3.0" 2603 + source = "registry+https://github.com/rust-lang/crates.io-index" 2604 + checksum = "77d6fbd6697c9e531873e81cec565a85e226b99a0f10e1acc079be057fe2fcba" 2605 + dependencies = [ 2606 + "anyhow", 2607 + "indexmap 1.9.3", 2608 + "log", 2609 + "protobuf", 2610 + "protobuf-support", 2611 + "tempfile", 2612 + "thiserror", 2613 + "which", 2614 + ] 2615 + 2616 + [[package]] 2617 + name = "protobuf-support" 2618 + version = "3.3.0" 2619 + source = "registry+https://github.com/rust-lang/crates.io-index" 2620 + checksum = "6872f4d4f4b98303239a2b5838f5bbbb77b01ffc892d627957f37a22d7cfe69c" 2621 + dependencies = [ 2622 + "thiserror", 2623 + ] 2624 + 2625 + [[package]] 2626 name = "quick-error" 2627 version = "1.2.3" 2628 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2630 2631 [[package]] 2632 name = "quote" 2633 + version = "1.0.35" 2634 source = "registry+https://github.com/rust-lang/crates.io-index" 2635 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 2636 dependencies = [ 2637 "proc-macro2", 2638 ] ··· 2714 "aho-corasick", 2715 "memchr", 2716 "regex-automata", 2717 + "regex-syntax", 2718 ] 2719 2720 [[package]] ··· 2725 dependencies = [ 2726 "aho-corasick", 2727 "memchr", 2728 + "regex-syntax", 2729 ] 2730 2731 [[package]] 2732 name = "regex-syntax" 2733 version = "0.8.2" 2734 source = "registry+https://github.com/rust-lang/crates.io-index" 2735 checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2736 2737 [[package]] 2738 name = "ring" 2739 + version = "0.17.7" 2740 source = "registry+https://github.com/rust-lang/crates.io-index" 2741 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 2742 dependencies = [ 2743 "cc", 2744 "getrandom", ··· 2766 source = "registry+https://github.com/rust-lang/crates.io-index" 2767 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2768 dependencies = [ 2769 + "semver 1.0.21", 2770 ] 2771 2772 [[package]] 2773 name = "rustix" 2774 + version = "0.38.28" 2775 source = "registry+https://github.com/rust-lang/crates.io-index" 2776 + checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316" 2777 dependencies = [ 2778 "bitflags 2.4.1", 2779 "errno", 2780 "libc", 2781 "linux-raw-sys", 2782 + "windows-sys 0.52.0", 2783 ] 2784 2785 [[package]] 2786 name = "rustls" 2787 + version = "0.21.10" 2788 source = "registry+https://github.com/rust-lang/crates.io-index" 2789 + checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 2790 dependencies = [ 2791 "log", 2792 "ring", ··· 2808 2809 [[package]] 2810 name = "rustls-pemfile" 2811 + version = "1.0.4" 2812 source = "registry+https://github.com/rust-lang/crates.io-index" 2813 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 2814 dependencies = [ 2815 "base64", 2816 ] ··· 2839 2840 [[package]] 2841 name = "ryu" 2842 + version = "1.0.16" 2843 source = "registry+https://github.com/rust-lang/crates.io-index" 2844 + checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 2845 2846 [[package]] 2847 name = "same-file" ··· 2854 2855 [[package]] 2856 name = "schannel" 2857 + version = "0.1.23" 2858 source = "registry+https://github.com/rust-lang/crates.io-index" 2859 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 2860 dependencies = [ 2861 + "windows-sys 0.52.0", 2862 ] 2863 2864 [[package]] ··· 2917 2918 [[package]] 2919 name = "semver" 2920 + version = "1.0.21" 2921 source = "registry+https://github.com/rust-lang/crates.io-index" 2922 + checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" 2923 2924 [[package]] 2925 name = "semver-parser" ··· 2929 2930 [[package]] 2931 name = "serde" 2932 + version = "1.0.195" 2933 source = "registry+https://github.com/rust-lang/crates.io-index" 2934 + checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02" 2935 dependencies = [ 2936 "serde_derive", 2937 ] 2938 2939 [[package]] 2940 name = "serde_derive" 2941 + version = "1.0.195" 2942 source = "registry+https://github.com/rust-lang/crates.io-index" 2943 + checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c" 2944 dependencies = [ 2945 "proc-macro2", 2946 "quote", 2947 + "syn 2.0.48", 2948 ] 2949 2950 [[package]] 2951 name = "serde_json" 2952 + version = "1.0.111" 2953 source = "registry+https://github.com/rust-lang/crates.io-index" 2954 + checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" 2955 dependencies = [ 2956 "itoa", 2957 "ryu", ··· 3002 name = "signal-crypto" 3003 version = "0.1.0" 3004 dependencies = [ 3005 + "aes", 3006 "cbc", 3007 "criterion", 3008 + "ctr", 3009 "displaydoc", 3010 + "ghash", 3011 "hex", 3012 "hex-literal", 3013 "hmac", ··· 3084 3085 [[package]] 3086 name = "smallvec" 3087 + version = "1.11.2" 3088 source = "registry+https://github.com/rust-lang/crates.io-index" 3089 + checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 3090 3091 [[package]] 3092 name = "snow" 3093 + version = "0.9.4" 3094 source = "registry+https://github.com/rust-lang/crates.io-index" 3095 + checksum = "58021967fd0a5eeeb23b08df6cc244a4d4a5b4aec1d27c9e02fad1a58b4cd74e" 3096 dependencies = [ 3097 "aes-gcm", 3098 "blake2", 3099 + "chacha20poly1305", 3100 "curve25519-dalek", 3101 "rand_core", 3102 "rustc_version", ··· 3106 3107 [[package]] 3108 name = "socket2" 3109 version = "0.5.5" 3110 source = "registry+https://github.com/rust-lang/crates.io-index" 3111 checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" ··· 3151 3152 [[package]] 3153 name = "syn" 3154 + version = "2.0.48" 3155 source = "registry+https://github.com/rust-lang/crates.io-index" 3156 + checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 3157 dependencies = [ 3158 "proc-macro2", 3159 "quote", ··· 3173 3174 [[package]] 3175 name = "tempfile" 3176 + version = "3.9.0" 3177 source = "registry+https://github.com/rust-lang/crates.io-index" 3178 + checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" 3179 dependencies = [ 3180 "cfg-if", 3181 "fastrand", 3182 "redox_syscall", 3183 "rustix", 3184 + "windows-sys 0.52.0", 3185 ] 3186 3187 [[package]] 3188 name = "termcolor" 3189 + version = "1.4.1" 3190 source = "registry+https://github.com/rust-lang/crates.io-index" 3191 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 3192 dependencies = [ 3193 "winapi-util", 3194 ] 3195 3196 [[package]] 3197 + name = "test-case" 3198 + version = "3.3.1" 3199 + source = "registry+https://github.com/rust-lang/crates.io-index" 3200 + checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8" 3201 + dependencies = [ 3202 + "test-case-macros", 3203 + ] 3204 + 3205 + [[package]] 3206 + name = "test-case-core" 3207 + version = "3.3.1" 3208 + source = "registry+https://github.com/rust-lang/crates.io-index" 3209 + checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f" 3210 + dependencies = [ 3211 + "cfg-if", 3212 + "proc-macro2", 3213 + "quote", 3214 + "syn 2.0.48", 3215 + ] 3216 + 3217 + [[package]] 3218 + name = "test-case-macros" 3219 + version = "3.3.1" 3220 + source = "registry+https://github.com/rust-lang/crates.io-index" 3221 + checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb" 3222 + dependencies = [ 3223 + "proc-macro2", 3224 + "quote", 3225 + "syn 2.0.48", 3226 + "test-case-core", 3227 + ] 3228 + 3229 + [[package]] 3230 + name = "test-log" 3231 + version = "0.2.14" 3232 + source = "registry+https://github.com/rust-lang/crates.io-index" 3233 + checksum = "6159ab4116165c99fc88cce31f99fa2c9dbe08d3691cb38da02fc3b45f357d2b" 3234 + dependencies = [ 3235 + "env_logger", 3236 + "test-log-macros", 3237 + ] 3238 + 3239 + [[package]] 3240 + name = "test-log-macros" 3241 + version = "0.2.14" 3242 + source = "registry+https://github.com/rust-lang/crates.io-index" 3243 + checksum = "7ba277e77219e9eea169e8508942db1bf5d8a41ff2db9b20aab5a5aadc9fa25d" 3244 + dependencies = [ 3245 + "proc-macro2", 3246 + "quote", 3247 + "syn 2.0.48", 3248 + ] 3249 + 3250 + [[package]] 3251 name = "thiserror" 3252 + version = "1.0.56" 3253 source = "registry+https://github.com/rust-lang/crates.io-index" 3254 + checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" 3255 dependencies = [ 3256 "thiserror-impl", 3257 ] 3258 3259 [[package]] 3260 name = "thiserror-impl" 3261 + version = "1.0.56" 3262 source = "registry+https://github.com/rust-lang/crates.io-index" 3263 + checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" 3264 dependencies = [ 3265 "proc-macro2", 3266 "quote", 3267 + "syn 2.0.48", 3268 ] 3269 3270 [[package]] ··· 3294 3295 [[package]] 3296 name = "tokio" 3297 + version = "1.35.1" 3298 source = "registry+https://github.com/rust-lang/crates.io-index" 3299 + checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" 3300 dependencies = [ 3301 "backtrace", 3302 "bytes", ··· 3306 "parking_lot", 3307 "pin-project-lite", 3308 "signal-hook-registry", 3309 + "socket2", 3310 "tokio-macros", 3311 "windows-sys 0.48.0", 3312 ] ··· 3323 3324 [[package]] 3325 name = "tokio-macros" 3326 + version = "2.2.0" 3327 source = "registry+https://github.com/rust-lang/crates.io-index" 3328 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 3329 dependencies = [ 3330 "proc-macro2", 3331 "quote", 3332 + "syn 2.0.48", 3333 ] 3334 3335 [[package]] ··· 3355 3356 [[package]] 3357 name = "tokio-tungstenite" 3358 + version = "0.20.1" 3359 source = "registry+https://github.com/rust-lang/crates.io-index" 3360 + checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" 3361 dependencies = [ 3362 "futures-util", 3363 "log", 3364 "tokio", 3365 + "tungstenite 0.20.1", 3366 ] 3367 3368 [[package]] 3369 name = "tokio-tungstenite" 3370 + version = "0.21.0" 3371 source = "registry+https://github.com/rust-lang/crates.io-index" 3372 + checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38" 3373 dependencies = [ 3374 "futures-util", 3375 "log", 3376 "tokio", 3377 + "tungstenite 0.21.0", 3378 ] 3379 3380 [[package]] ··· 3436 3437 [[package]] 3438 name = "try-lock" 3439 + version = "0.2.5" 3440 source = "registry+https://github.com/rust-lang/crates.io-index" 3441 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3442 3443 [[package]] 3444 name = "tungstenite" 3445 + version = "0.20.1" 3446 source = "registry+https://github.com/rust-lang/crates.io-index" 3447 + checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" 3448 dependencies = [ 3449 "byteorder", 3450 "bytes", 3451 "data-encoding", 3452 + "http 0.2.11", 3453 "httparse", 3454 "log", 3455 "rand", ··· 3461 3462 [[package]] 3463 name = "tungstenite" 3464 + version = "0.21.0" 3465 source = "registry+https://github.com/rust-lang/crates.io-index" 3466 + checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1" 3467 dependencies = [ 3468 "byteorder", 3469 "bytes", 3470 "data-encoding", 3471 + "http 1.0.0", 3472 "httparse", 3473 "log", 3474 "rand", ··· 3501 3502 [[package]] 3503 name = "unicode-bidi" 3504 + version = "0.3.14" 3505 source = "registry+https://github.com/rust-lang/crates.io-index" 3506 + checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" 3507 3508 [[package]] 3509 name = "unicode-ident" ··· 3528 3529 [[package]] 3530 name = "universal-hash" 3531 version = "0.5.1" 3532 source = "registry+https://github.com/rust-lang/crates.io-index" 3533 checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" ··· 3544 3545 [[package]] 3546 name = "url" 3547 + version = "2.5.0" 3548 source = "registry+https://github.com/rust-lang/crates.io-index" 3549 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 3550 dependencies = [ 3551 "form_urlencoded", 3552 "idna", ··· 3561 "curve25519-dalek", 3562 "displaydoc", 3563 "hkdf", 3564 + "hmac", 3565 "lazy_static", 3566 + "log", 3567 "poksho", 3568 "proptest", 3569 "prost", ··· 3583 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3584 3585 [[package]] 3586 + name = "utf8parse" 3587 + version = "0.2.1" 3588 + source = "registry+https://github.com/rust-lang/crates.io-index" 3589 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 3590 + 3591 + [[package]] 3592 name = "uuid" 3593 + version = "1.6.1" 3594 source = "registry+https://github.com/rust-lang/crates.io-index" 3595 + checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 3596 3597 [[package]] 3598 name = "variant_count" ··· 3648 "futures-channel", 3649 "futures-util", 3650 "headers", 3651 + "http 0.2.11", 3652 + "hyper 0.14.28", 3653 "log", 3654 "mime", 3655 "mime_guess", ··· 3678 3679 [[package]] 3680 name = "wasm-bindgen" 3681 + version = "0.2.90" 3682 source = "registry+https://github.com/rust-lang/crates.io-index" 3683 + checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" 3684 dependencies = [ 3685 "cfg-if", 3686 "wasm-bindgen-macro", ··· 3688 3689 [[package]] 3690 name = "wasm-bindgen-backend" 3691 + version = "0.2.90" 3692 source = "registry+https://github.com/rust-lang/crates.io-index" 3693 + checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" 3694 dependencies = [ 3695 "bumpalo", 3696 "log", 3697 "once_cell", 3698 "proc-macro2", 3699 "quote", 3700 + "syn 2.0.48", 3701 "wasm-bindgen-shared", 3702 ] 3703 3704 [[package]] 3705 name = "wasm-bindgen-macro" 3706 + version = "0.2.90" 3707 source = "registry+https://github.com/rust-lang/crates.io-index" 3708 + checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" 3709 dependencies = [ 3710 "quote", 3711 "wasm-bindgen-macro-support", ··· 3713 3714 [[package]] 3715 name = "wasm-bindgen-macro-support" 3716 + version = "0.2.90" 3717 source = "registry+https://github.com/rust-lang/crates.io-index" 3718 + checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" 3719 dependencies = [ 3720 "proc-macro2", 3721 "quote", 3722 + "syn 2.0.48", 3723 "wasm-bindgen-backend", 3724 "wasm-bindgen-shared", 3725 ] 3726 3727 [[package]] 3728 name = "wasm-bindgen-shared" 3729 + version = "0.2.90" 3730 source = "registry+https://github.com/rust-lang/crates.io-index" 3731 + checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" 3732 3733 [[package]] 3734 name = "web-sys" 3735 + version = "0.3.67" 3736 source = "registry+https://github.com/rust-lang/crates.io-index" 3737 + checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed" 3738 dependencies = [ 3739 "js-sys", 3740 "wasm-bindgen", ··· 3804 3805 [[package]] 3806 name = "windows-core" 3807 + version = "0.52.0" 3808 source = "registry+https://github.com/rust-lang/crates.io-index" 3809 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 3810 dependencies = [ 3811 + "windows-targets 0.52.0", 3812 ] 3813 3814 [[package]] ··· 3830 ] 3831 3832 [[package]] 3833 + name = "windows-sys" 3834 + version = "0.52.0" 3835 + source = "registry+https://github.com/rust-lang/crates.io-index" 3836 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3837 + dependencies = [ 3838 + "windows-targets 0.52.0", 3839 + ] 3840 + 3841 + [[package]] 3842 name = "windows-targets" 3843 version = "0.42.2" 3844 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3869 ] 3870 3871 [[package]] 3872 + name = "windows-targets" 3873 + version = "0.52.0" 3874 + source = "registry+https://github.com/rust-lang/crates.io-index" 3875 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 3876 + dependencies = [ 3877 + "windows_aarch64_gnullvm 0.52.0", 3878 + "windows_aarch64_msvc 0.52.0", 3879 + "windows_i686_gnu 0.52.0", 3880 + "windows_i686_msvc 0.52.0", 3881 + "windows_x86_64_gnu 0.52.0", 3882 + "windows_x86_64_gnullvm 0.52.0", 3883 + "windows_x86_64_msvc 0.52.0", 3884 + ] 3885 + 3886 + [[package]] 3887 name = "windows_aarch64_gnullvm" 3888 version = "0.42.2" 3889 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3896 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3897 3898 [[package]] 3899 + name = "windows_aarch64_gnullvm" 3900 + version = "0.52.0" 3901 + source = "registry+https://github.com/rust-lang/crates.io-index" 3902 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 3903 + 3904 + [[package]] 3905 name = "windows_aarch64_msvc" 3906 version = "0.42.2" 3907 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3914 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3915 3916 [[package]] 3917 + name = "windows_aarch64_msvc" 3918 + version = "0.52.0" 3919 + source = "registry+https://github.com/rust-lang/crates.io-index" 3920 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 3921 + 3922 + [[package]] 3923 name = "windows_i686_gnu" 3924 version = "0.42.2" 3925 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3932 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3933 3934 [[package]] 3935 + name = "windows_i686_gnu" 3936 + version = "0.52.0" 3937 + source = "registry+https://github.com/rust-lang/crates.io-index" 3938 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 3939 + 3940 + [[package]] 3941 name = "windows_i686_msvc" 3942 version = "0.42.2" 3943 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3950 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3951 3952 [[package]] 3953 + name = "windows_i686_msvc" 3954 + version = "0.52.0" 3955 + source = "registry+https://github.com/rust-lang/crates.io-index" 3956 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 3957 + 3958 + [[package]] 3959 name = "windows_x86_64_gnu" 3960 version = "0.42.2" 3961 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3968 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3969 3970 [[package]] 3971 + name = "windows_x86_64_gnu" 3972 + version = "0.52.0" 3973 + source = "registry+https://github.com/rust-lang/crates.io-index" 3974 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 3975 + 3976 + [[package]] 3977 name = "windows_x86_64_gnullvm" 3978 version = "0.42.2" 3979 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3986 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3987 3988 [[package]] 3989 + name = "windows_x86_64_gnullvm" 3990 + version = "0.52.0" 3991 + source = "registry+https://github.com/rust-lang/crates.io-index" 3992 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 3993 + 3994 + [[package]] 3995 name = "windows_x86_64_msvc" 3996 version = "0.42.2" 3997 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4004 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4005 4006 [[package]] 4007 + name = "windows_x86_64_msvc" 4008 + version = "0.52.0" 4009 + source = "registry+https://github.com/rust-lang/crates.io-index" 4010 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 4011 + 4012 + [[package]] 4013 name = "winnow" 4014 + version = "0.5.34" 4015 source = "registry+https://github.com/rust-lang/crates.io-index" 4016 + checksum = "b7cf47b659b318dccbd69cc4797a39ae128f533dce7902a1096044d1967b9c16" 4017 dependencies = [ 4018 "memchr", 4019 ] ··· 4032 4033 [[package]] 4034 name = "zeroize" 4035 + version = "1.7.0" 4036 source = "registry+https://github.com/rust-lang/crates.io-index" 4037 + checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" 4038 dependencies = [ 4039 "zeroize_derive", 4040 ] ··· 4047 dependencies = [ 4048 "proc-macro2", 4049 "quote", 4050 + "syn 2.0.48", 4051 ] 4052 4053 [[package]] ··· 4077 "bincode", 4078 "criterion", 4079 "curve25519-dalek", 4080 + "derive-where", 4081 "displaydoc", 4082 "hex", 4083 "hex-literal", 4084 "hkdf", 4085 "lazy_static", 4086 + "libsignal-core", 4087 "partial-default", 4088 "poksho", 4089 "rand",
+2 -2
pkgs/by-name/li/libsignal-ffi/package.nix
··· 12 pname = "libsignal-ffi"; 13 # must match the version used in mautrix-signal 14 # see https://github.com/mautrix/signal/issues/401 15 - version = "0.36.1"; 16 17 src = fetchFromGitHub { 18 owner = "signalapp"; 19 repo = "libsignal"; 20 rev = "v${version}"; 21 - hash = "sha256-UD4E2kI1ZNtFhwBGphTzF37NHqbSZjQGHbliOWAMYOE="; 22 }; 23 24 nativeBuildInputs = [ protobuf ] ++ lib.optionals stdenv.isDarwin [ xcodebuild ];
··· 12 pname = "libsignal-ffi"; 13 # must match the version used in mautrix-signal 14 # see https://github.com/mautrix/signal/issues/401 15 + version = "0.39.2"; 16 17 src = fetchFromGitHub { 18 owner = "signalapp"; 19 repo = "libsignal"; 20 rev = "v${version}"; 21 + hash = "sha256-MKmkqfUhXOHUlP3jSNKsplT9kP0ERj3rmTrLLU3T2no="; 22 }; 23 24 nativeBuildInputs = [ protobuf ] ++ lib.optionals stdenv.isDarwin [ xcodebuild ];
+2 -2
pkgs/by-name/ll/llama-cpp/package.nix
··· 31 in 32 effectiveStdenv.mkDerivation (finalAttrs: { 33 pname = "llama-cpp"; 34 - version = "1892"; 35 36 src = fetchFromGitHub { 37 owner = "ggerganov"; 38 repo = "llama.cpp"; 39 rev = "refs/tags/b${finalAttrs.version}"; 40 - hash = "sha256-FNyl8bR0rg6cixcqidqzk9rG62+CI/0BNvzHuUkBq1E="; 41 }; 42 43 postPatch = ''
··· 31 in 32 effectiveStdenv.mkDerivation (finalAttrs: { 33 pname = "llama-cpp"; 34 + version = "2050"; 35 36 src = fetchFromGitHub { 37 owner = "ggerganov"; 38 repo = "llama.cpp"; 39 rev = "refs/tags/b${finalAttrs.version}"; 40 + hash = "sha256-Wli9dZ5Aa4Xk/c9e2DqcernyfXaT3hd8qRo0GzrnxZU="; 41 }; 42 43 postPatch = ''
+27
pkgs/by-name/ob/obsidian-export/package.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "obsidian-export"; 8 + version = "23.12.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "zoni"; 12 + repo = "obsidian-export"; 13 + rev = "v${version}"; 14 + hash = "sha256-r5G2XVV2F/Bt29gxuTZKX+KxH6RFa1hJNH3gSTi7yCU="; 15 + }; 16 + 17 + cargoHash = "sha256-lkqoMFasHpfhmVd3dlYd/TKIBIDzqMbsxfigpeJq0w8="; 18 + 19 + meta = { 20 + changelog = "https://github.com/zoni/obsidian-export/blob/${src.rev}/CHANGELOG.md"; 21 + description = "Rust library and CLI to export an Obsidian vault to regular Markdown"; 22 + homepage = "https://github.com/zoni/obsidian-export"; 23 + license = lib.licenses.bsd2Patent; 24 + mainProgram = "obsidian-export"; 25 + maintainers = with lib.maintainers; [ tomasajt ]; 26 + }; 27 + }
+71
pkgs/by-name/op/openrocket/package.nix
···
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + , ant 5 + , jdk17 6 + , makeWrapper 7 + }: 8 + 9 + let 10 + jdk = jdk17; # Only java 17 is supported as of 23.09 11 + in 12 + stdenvNoCC.mkDerivation (finalAttrs: { 13 + pname = "openrocket"; 14 + version = "23.09"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "openrocket"; 18 + repo = "openrocket"; 19 + rev = "release-${finalAttrs.version}"; 20 + hash = "sha256-Dg/v72N9cDG9Ko5JIcZxGxh+ClRDgf5Jq5DvQyCiYOs="; 21 + fetchSubmodules = true; 22 + }; 23 + 24 + nativeBuildInputs = [ 25 + ant 26 + jdk 27 + makeWrapper 28 + ]; 29 + 30 + buildPhase = '' 31 + runHook preBuild 32 + ant 33 + runHook postBuild 34 + ''; 35 + 36 + doCheck = true; 37 + 38 + checkPhase = '' 39 + runHook preCheck 40 + ant unittest 41 + runHook postCheck 42 + ''; 43 + 44 + installPhase = '' 45 + runHook preInstall 46 + 47 + sed -i "s|Icon=.*|Icon=openrocket|g" snap/gui/openrocket.desktop 48 + install -Dm644 snap/gui/openrocket.desktop -t $out/share/applications 49 + install -Dm644 snap/gui/openrocket.png -t $out/share/icons/hicolor/256x256/apps 50 + install -Dm644 swing/build/jar/OpenRocket.jar -t $out/share/openrocket 51 + 52 + makeWrapper ${jdk}/bin/java $out/bin/openrocket \ 53 + --add-flags "-jar $out/share/openrocket/OpenRocket.jar" 54 + 55 + runHook postInstall 56 + ''; 57 + 58 + meta = { 59 + changelog = "https://github.com/openrocket/openrocket/releases/tag/${finalAttrs.src.rev}"; 60 + description = "Model-rocketry aerodynamics and trajectory simulation software"; 61 + homepage = "openrocket.info"; 62 + license = lib.licenses.gpl3Plus; 63 + mainProgram = "openrocket"; 64 + maintainers = with lib.maintainers; [ tomasajt ]; 65 + platforms = jdk.meta.platforms; 66 + sourceProvenance = with lib.sourceTypes; [ 67 + fromSource 68 + binaryBytecode # source bundles dependencies as jars 69 + ]; 70 + }; 71 + })
+3 -3
pkgs/by-name/pr/promptfoo/package.nix
··· 5 6 buildNpmPackage rec { 7 pname = "promptfoo"; 8 - version = "0.35.0"; 9 10 src = fetchFromGitHub { 11 owner = "promptfoo"; 12 repo = "promptfoo"; 13 rev = "${version}"; 14 - hash = "sha256-IySt3qlRDzaVqkhaqr7yeAs3gemKgPNEUjpYANCZVVg="; 15 }; 16 17 - npmDepsHash = "sha256-uTNb/zMhnN8rElvG14YgUVuTTcayWPS5raGVo322g+I="; 18 19 dontNpmBuild = true; 20
··· 5 6 buildNpmPackage rec { 7 pname = "promptfoo"; 8 + version = "0.39.1"; 9 10 src = fetchFromGitHub { 11 owner = "promptfoo"; 12 repo = "promptfoo"; 13 rev = "${version}"; 14 + hash = "sha256-RnmvL3zcfWNqjnxCHNszGDAweKVT0GQ5GANJWVCRR/w="; 15 }; 16 17 + npmDepsHash = "sha256-OGYAYd1MCOFtdTgcsZcnWgTxtx28889RZhQ6fAe2HuI="; 18 19 dontNpmBuild = true; 20
+3 -3
pkgs/by-name/pr/prr/package.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "prr"; 12 - version = "0.14.0"; 13 14 src = fetchFromGitHub { 15 owner = "danobi"; 16 repo = pname; 17 rev = "v${version}"; 18 - hash = "sha256-aEugpAa1W7iBMQDojs38mYH8xZ/VMd47Bv3toFQhTSs="; 19 }; 20 21 - cargoHash = "sha256-+CrBsQFOfw8vCafk66Wmatcf2t5gu4gEXAKjxvvPgEg="; 22 23 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ 24 darwin.apple_sdk.frameworks.Security
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "prr"; 12 + version = "0.16.0"; 13 14 src = fetchFromGitHub { 15 owner = "danobi"; 16 repo = pname; 17 rev = "v${version}"; 18 + hash = "sha256-d7o6EQb3pJ+kHSMwFsKy8D3HgTD6fOCSZZNIn+EjdqU="; 19 }; 20 21 + cargoHash = "sha256-+v6vdQs2Ml+8Q7IY6lXV3Z5x2qlfwG9xr4hm6tTaBuk="; 22 23 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ 24 darwin.apple_sdk.frameworks.Security
+10 -2
pkgs/by-name/si/simplex-chat-desktop/package.nix
··· 1 { lib 2 , appimageTools 3 , fetchurl 4 }: 5 6 let 7 pname = "simplex-chat-desktop"; 8 - version = "5.4.2"; 9 10 src = fetchurl { 11 url = "https://github.com/simplex-chat/simplex-chat/releases/download/v${version}/simplex-desktop-x86_64.AppImage"; 12 - hash = "sha256-t9wFOKGmy/mGFtETv1EkturAM4Swq1q/zoegpQ7dcrc="; 13 }; 14 15 appimageContents = appimageTools.extract { ··· 42 license = licenses.agpl3Only; 43 maintainers = with maintainers; [ yuu ]; 44 platforms = [ "x86_64-linux" ]; 45 }; 46 }
··· 1 { lib 2 , appimageTools 3 , fetchurl 4 + , gitUpdater 5 }: 6 7 let 8 pname = "simplex-chat-desktop"; 9 + version = "5.4.4"; 10 11 src = fetchurl { 12 url = "https://github.com/simplex-chat/simplex-chat/releases/download/v${version}/simplex-desktop-x86_64.AppImage"; 13 + hash = "sha256-f4P31e099bKBKsavP5f+xBGsqQfM6CYgUtUIOLe+cAE="; 14 }; 15 16 appimageContents = appimageTools.extract { ··· 43 license = licenses.agpl3Only; 44 maintainers = with maintainers; [ yuu ]; 45 platforms = [ "x86_64-linux" ]; 46 + }; 47 + 48 + passthru.updateScript = gitUpdater { 49 + url = "https://github.com/simplex-chat/simplex-chat"; 50 + rev-prefix = "v"; 51 + # skip tags that does not correspond to official releases, like vX.Y.Z-(beta,fdroid,armv7a). 52 + ignoredVersions = "-"; 53 }; 54 }
+2 -2
pkgs/by-name/vi/vinegar/package.nix
··· 29 in 30 buildGoModule rec { 31 pname = "vinegar"; 32 - version = "1.6.0"; 33 34 src = fetchFromGitHub { 35 owner = "vinegarhq"; 36 repo = "vinegar"; 37 rev = "v${version}"; 38 - hash = "sha256-TebRAqMPrXSSKg05iX3Y/S0uACePOR/QNnNcOOMw+Xk="; 39 }; 40 41 vendorHash = "sha256-Ex6PRd3rD2jbLXlY36koNvZF3P+gAZTE9hExIfOw9CE=";
··· 29 in 30 buildGoModule rec { 31 pname = "vinegar"; 32 + version = "1.6.1"; 33 34 src = fetchFromGitHub { 35 owner = "vinegarhq"; 36 repo = "vinegar"; 37 rev = "v${version}"; 38 + hash = "sha256-uRdWE5NwRVSuUZyU5B5u5DfJOxu/gUqwM682eORTDOs="; 39 }; 40 41 vendorHash = "sha256-Ex6PRd3rD2jbLXlY36koNvZF3P+gAZTE9hExIfOw9CE=";
+3 -3
pkgs/by-name/wa/wait4x/package.nix
··· 4 }: 5 let 6 pname = "wait4x"; 7 - version = "2.13.0"; 8 in 9 buildGoModule { 10 inherit pname version; ··· 13 owner = "atkrad"; 14 repo = pname; 15 rev = "v${version}"; 16 - hash = "sha256-vhYWt1vRL1iTtdZRhk3HsBnmhcp4hieN+8vsyQS4hpo="; 17 }; 18 19 - vendorHash = "sha256-WY8FPRjjAFcDLMbU22pL3rFTw7fBPwCbXJDjhHDI4Kw="; 20 21 # Tests make network access 22 doCheck = false;
··· 4 }: 5 let 6 pname = "wait4x"; 7 + version = "2.14.0"; 8 in 9 buildGoModule { 10 inherit pname version; ··· 13 owner = "atkrad"; 14 repo = pname; 15 rev = "v${version}"; 16 + hash = "sha256-4lv6nYeyjjGGQksi2Ffx+Yu0OazNsJ0QEZG5BfuyrJ8="; 17 }; 18 19 + vendorHash = "sha256-D8s42YArp0IGi7I6qB9eQEh1ZQptSrKLLVIIdqk5Kq0="; 20 21 # Tests make network access 22 doCheck = false;
+23
pkgs/by-name/xo/xonsh/package.nix
···
··· 1 + { lib 2 + , callPackage 3 + , extraPackages ? (ps: [ ]) 4 + , runCommand 5 + }: 6 + 7 + let 8 + xonsh-unwrapped = callPackage ./unwrapped.nix { }; 9 + inherit (xonsh-unwrapped.passthru) python; 10 + 11 + pythonEnv = python.withPackages (ps: [ 12 + (ps.toPythonModule xonsh-unwrapped) 13 + ] ++ extraPackages ps); 14 + in 15 + runCommand "xonsh-${xonsh-unwrapped.version}" 16 + { 17 + inherit (xonsh-unwrapped) pname version meta passthru; 18 + } '' 19 + mkdir -p $out/bin 20 + for bin in ${lib.getBin xonsh-unwrapped}/bin/*; do 21 + ln -s ${pythonEnv}/bin/$(basename "$bin") $out/bin/ 22 + done 23 + ''
+2 -2
pkgs/data/fonts/junicode/default.nix
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "junicode"; 5 - version = "2.203"; 6 7 src = fetchzip { 8 url = "https://github.com/psb1558/Junicode-font/releases/download/v${version}/Junicode_${version}.zip"; 9 - hash = "sha256-RG12veiZXqjfK2gONmauhGReuLEkqxbQ4h4PEwaih/U="; 10 }; 11 12 outputs = [ "out" "doc" ];
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "junicode"; 5 + version = "2.206"; 6 7 src = fetchzip { 8 url = "https://github.com/psb1558/Junicode-font/releases/download/v${version}/Junicode_${version}.zip"; 9 + hash = "sha256-oOKg85Yz5/2/pvwjVqeQXE8xE7X+QJvPYwYN+E18oEc="; 10 }; 11 12 outputs = [ "out" "doc" ];
+2 -2
pkgs/data/fonts/sarasa-gothic/default.nix
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "sarasa-gothic"; 5 - version = "1.0.2"; 6 7 src = fetchurl { 8 # Use the 'ttc' files here for a smaller closure size. 9 # (Using 'ttf' files gives a closure size about 15x larger, as of November 2021.) 10 url = "https://github.com/be5invis/Sarasa-Gothic/releases/download/v${version}/Sarasa-TTC-${version}.7z"; 11 - hash = "sha256-h34M5waO2uaqsZDYEEI72LIYv7B1Qjwms2v6qGTaNKg="; 12 }; 13 14 sourceRoot = ".";
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "sarasa-gothic"; 5 + version = "1.0.5"; 6 7 src = fetchurl { 8 # Use the 'ttc' files here for a smaller closure size. 9 # (Using 'ttf' files gives a closure size about 15x larger, as of November 2021.) 10 url = "https://github.com/be5invis/Sarasa-Gothic/releases/download/v${version}/Sarasa-TTC-${version}.7z"; 11 + hash = "sha256-OPoX6GNCilA8Lj9kLO6RHapU7mpZTiNa/8LL72TG1Wk="; 12 }; 13 14 sourceRoot = ".";
+2 -2
pkgs/data/misc/dbip-country-lite/default.nix
··· 5 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "dbip-country-lite"; 8 - version = "2024-01"; 9 10 src = fetchurl { 11 url = "https://download.db-ip.com/free/dbip-country-lite-${finalAttrs.version}.mmdb.gz"; 12 - hash = "sha256-aFelcJPwkHRp/McStNABdJKTifz+WK3ODUk8bdiTtEk="; 13 }; 14 15 dontUnpack = true;
··· 5 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "dbip-country-lite"; 8 + version = "2024-02"; 9 10 src = fetchurl { 11 url = "https://download.db-ip.com/free/dbip-country-lite-${finalAttrs.version}.mmdb.gz"; 12 + hash = "sha256-YeZaFscmH4yVNwwXCHzxf/BlM1zT0gbdZ6Ysdh4gqN4="; 13 }; 14 15 dontUnpack = true;
+2 -2
pkgs/data/themes/kwin-decorations/kde-rounded-corners/default.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "kde-rounded-corners"; 15 - version = "0.4.0"; 16 17 src = fetchFromGitHub { 18 owner = "matinlotfali"; 19 repo = "KDE-Rounded-Corners"; 20 rev = "v${version}"; 21 - hash = "sha256-mjZWfh00A0J6ijuLqW6frPH4AYbRI/BlVHblGCCmNEo="; 22 }; 23 24 postConfigure = ''
··· 12 13 stdenv.mkDerivation rec { 14 pname = "kde-rounded-corners"; 15 + version = "0.6.0"; 16 17 src = fetchFromGitHub { 18 owner = "matinlotfali"; 19 repo = "KDE-Rounded-Corners"; 20 rev = "v${version}"; 21 + hash = "sha256-S6Z0j61LQHmZTYiLEpwG77JH9Nd32lF5Azb0U0+rdNg="; 22 }; 23 24 postConfigure = ''
+2 -2
pkgs/desktops/gnome/apps/gnome-text-editor/default.nix
··· 24 25 stdenv.mkDerivation rec { 26 pname = "gnome-text-editor"; 27 - version = "45.1"; 28 29 src = fetchurl { 30 url = "mirror://gnome/sources/gnome-text-editor/${lib.versions.major version}/${pname}-${version}.tar.xz"; 31 - sha256 = "sha256-aobsmSD0ZrbtkmlVJNO1B7HoQnLa+lNB0GoVfehor3E="; 32 }; 33 34 nativeBuildInputs = [
··· 24 25 stdenv.mkDerivation rec { 26 pname = "gnome-text-editor"; 27 + version = "45.3"; 28 29 src = fetchurl { 30 url = "mirror://gnome/sources/gnome-text-editor/${lib.versions.major version}/${pname}-${version}.tar.xz"; 31 + sha256 = "sha256-8//LEakt/QS6PDs9DmZ4R9REmiHgEq428H3aBax9OlI="; 32 }; 33 34 nativeBuildInputs = [
+2 -2
pkgs/development/compilers/cmdstan/default.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "cmdstan"; 14 - version = "2.33.1"; 15 16 src = fetchFromGitHub { 17 owner = "stan-dev"; 18 repo = pname; 19 rev = "v${version}"; 20 fetchSubmodules = true; 21 - hash = "sha256-c+L/6PjW7YgmXHuKhKjiRofBRAhKYCzFCZ6BOX5AmC4="; 22 }; 23 24 postPatch = ''
··· 11 12 stdenv.mkDerivation rec { 13 pname = "cmdstan"; 14 + version = "2.34.1"; 15 16 src = fetchFromGitHub { 17 owner = "stan-dev"; 18 repo = pname; 19 rev = "v${version}"; 20 fetchSubmodules = true; 21 + hash = "sha256-gze8kd5zSs9nUlSY7AJwpx+jnc9Y21ahzDJmynlqm1Y="; 22 }; 23 24 postPatch = ''
+6 -6
pkgs/development/compilers/dart/sources.nix
··· 1 - let version = "3.2.4"; in 2 { fetchurl }: { 3 versionUsed = version; 4 "${version}-x86_64-darwin" = fetchurl { 5 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-macos-x64-release.zip"; 6 - sha256 = "107sq5m684mxw5k21zfs3iyihzbqkfmh0vpj17qca19rghnxgn02"; 7 }; 8 "${version}-aarch64-darwin" = fetchurl { 9 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-macos-arm64-release.zip"; 10 - sha256 = "08jbcdm5li30xdy85whdah186g0yiasgl12h6vi1vgld15ifjsab"; 11 }; 12 "${version}-aarch64-linux" = fetchurl { 13 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-linux-arm64-release.zip"; 14 - sha256 = "0f40riqcdnjwjnv6si5186h6akrnhnwqrfrgfvm4y0gpblw88c2s"; 15 }; 16 "${version}-x86_64-linux" = fetchurl { 17 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-linux-x64-release.zip"; 18 - sha256 = "1bkrfg3xzkc4zrbl5ialg5jwpb7l0xmrd9aj7x5kwz2v8n8w013n"; 19 }; 20 "${version}-i686-linux" = fetchurl { 21 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-linux-ia32-release.zip"; 22 - sha256 = "0jddia0s7byl7p6qbljp444qs11r8ff58s5fbchcrsmkry3pg8gi"; 23 }; 24 }
··· 1 + let version = "3.2.6"; in 2 { fetchurl }: { 3 versionUsed = version; 4 "${version}-x86_64-darwin" = fetchurl { 5 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-macos-x64-release.zip"; 6 + sha256 = "05w5v6f302gwwpa3my8baz4spmdmqrimmc659wgki1h64ch1yrlp"; 7 }; 8 "${version}-aarch64-darwin" = fetchurl { 9 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-macos-arm64-release.zip"; 10 + sha256 = "1dmd70jjpfi19rmlvj2hbggw92z03jm8irrwx6r0bk7r748cj11f"; 11 }; 12 "${version}-aarch64-linux" = fetchurl { 13 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-linux-arm64-release.zip"; 14 + sha256 = "1hs1mvk90qb0nijm8wcvv6xkd79z44i2bpcv2nh933lysdys664q"; 15 }; 16 "${version}-x86_64-linux" = fetchurl { 17 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-linux-x64-release.zip"; 18 + sha256 = "0j0xmyxdmzn4ii24j27yw6l3074ay4n2qjyzh967cpbg9yhr0cr5"; 19 }; 20 "${version}-i686-linux" = fetchurl { 21 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-linux-ia32-release.zip"; 22 + sha256 = "0ml9dvnd7f0rld3wfnnmv7arfs821zg8rqaq1c7zvqhkj3i0dwci"; 23 }; 24 }
+2 -2
pkgs/development/compilers/osl/default.nix
··· 24 25 in stdenv.mkDerivation rec { 26 pname = "openshadinglanguage"; 27 - version = "1.12.14.0"; 28 29 src = fetchFromGitHub { 30 owner = "AcademySoftwareFoundation"; 31 repo = "OpenShadingLanguage"; 32 rev = "v${version}"; 33 - hash = "sha256-x8t7uC4q29MkTCIS1rK0ICw78u5zZG+/zyhwttLOBr4="; 34 }; 35 36 cmakeFlags = [
··· 24 25 in stdenv.mkDerivation rec { 26 pname = "openshadinglanguage"; 27 + version = "1.13.6.1"; 28 29 src = fetchFromGitHub { 30 owner = "AcademySoftwareFoundation"; 31 repo = "OpenShadingLanguage"; 32 rev = "v${version}"; 33 + hash = "sha256-NSnM5/SyVkfZ4SyzRzVJc5O1t4/s2ax0koevRZsQ9q8="; 34 }; 35 36 cmakeFlags = [
+2 -2
pkgs/development/compilers/tvm/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "tvm"; 5 - version = "0.14.0"; 6 7 src = fetchFromGitHub { 8 owner = "apache"; 9 repo = "incubator-tvm"; 10 rev = "v${version}"; 11 fetchSubmodules = true; 12 - sha256 = "sha256-ePBEiT7Yl54KQou/VP/aZEJ6BueH8ocB+/TUhZJkgH8="; 13 }; 14 15 nativeBuildInputs = [ cmake ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "tvm"; 5 + version = "0.15.0"; 6 7 src = fetchFromGitHub { 8 owner = "apache"; 9 repo = "incubator-tvm"; 10 rev = "v${version}"; 11 fetchSubmodules = true; 12 + sha256 = "sha256-VbJptTUi12pJh1wz4I+xL6HVo/rSiUHCkvgEMPe1F6o="; 13 }; 14 15 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/embedded/arduino/arduino-cli/default.nix
··· 4 5 pkg = buildGoModule rec { 6 pname = "arduino-cli"; 7 - version = "0.35.1"; 8 9 src = fetchFromGitHub { 10 owner = "arduino"; 11 repo = pname; 12 rev = "v${version}"; 13 - hash = "sha256-5XMdI+TMUd+U6bvDQT9Q62ATxtbnRAJ/XDYWHgVEUbU="; 14 }; 15 16 nativeBuildInputs = [
··· 4 5 pkg = buildGoModule rec { 6 pname = "arduino-cli"; 7 + version = "0.35.2"; 8 9 src = fetchFromGitHub { 10 owner = "arduino"; 11 repo = pname; 12 rev = "v${version}"; 13 + hash = "sha256-ctgDuWbNLMyQrxnarTbCtGXM5G+bPeS4Xa7eTbkFo0k="; 14 }; 15 16 nativeBuildInputs = [
+2 -2
pkgs/development/embedded/rshell/default.nix
··· 8 9 buildPythonApplication rec { 10 pname = "rshell"; 11 - version = "0.0.31"; 12 13 disabled = pythonOlder "3.4"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - sha256 = "7942b758a9ae5c6ff46516b0317f437dfce9f0721f3a3b635ebd501c9cd38fb9"; 18 }; 19 20 propagatedBuildInputs = [
··· 8 9 buildPythonApplication rec { 10 pname = "rshell"; 11 + version = "0.0.32"; 12 13 disabled = pythonOlder "3.4"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + sha256 = "sha256-frIwZ21JzVgxRS+KouBjDShHCP1lCoUwwySy2oFGcJ8="; 18 }; 19 20 propagatedBuildInputs = [
+3 -3
pkgs/development/interpreters/cel-go/default.nix
··· 5 6 buildGoModule rec { 7 pname = "cel-go"; 8 - version = "0.18.2"; 9 10 src = fetchFromGitHub { 11 owner = "google"; 12 repo = "cel-go"; 13 rev = "v${version}"; 14 - hash = "sha256-c4MVOHkDaUGlRVYb9YS9BH4ld2zS3SR5efP6amLhTig="; 15 }; 16 17 modRoot = "repl"; 18 19 - vendorHash = "sha256-Oj/XUUmuj5scD5WT6zBxnU1hSapDyRBBz75rbIdY4Ho="; 20 21 subPackages = [ 22 "main"
··· 5 6 buildGoModule rec { 7 pname = "cel-go"; 8 + version = "0.19.0"; 9 10 src = fetchFromGitHub { 11 owner = "google"; 12 repo = "cel-go"; 13 rev = "v${version}"; 14 + hash = "sha256-r3xBg+8C3VZ3sHYKMyQoBVGe+puWdRO4q3e9bur9ZoY="; 15 }; 16 17 modRoot = "repl"; 18 19 + vendorHash = "sha256-7WBom6FS/GX+pM3zv59BZOwmAIokKkZcN3yGbcQb09Q="; 20 21 subPackages = [ 22 "main"
+3 -3
pkgs/development/interpreters/nelua/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "nelua"; 5 - version = "unstable-2024-01-13"; 6 7 src = fetchFromGitHub { 8 owner = "edubart"; 9 repo = "nelua-lang"; 10 - rev = "621cdbc918877f7a237d778be37298e7143dd2f0"; 11 - hash = "sha256-Lg5RFb2WHQ1037feJ8CJNv3HcX+Qe+H2NsA965NY+B0="; 12 }; 13 14 postPatch = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "nelua"; 5 + version = "unstable-2024-02-03"; 6 7 src = fetchFromGitHub { 8 owner = "edubart"; 9 repo = "nelua-lang"; 10 + rev = "05a2633a18dfdde7389394b9289da582c10e79bc"; 11 + hash = "sha256-oRW+pCB10T0A6fEPP3S+8iurQ2J5WMpQlCYScfIk07c="; 12 }; 13 14 postPatch = ''
+2 -2
pkgs/development/libraries/atkmm/2.36.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "atkmm"; 5 - version = "2.36.2"; 6 7 src = fetchurl { 8 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-b2LdmfdGmF5XNgWTdXfM/JRDaPYGpxykY0LXDhza4Hk="; 10 }; 11 12 outputs = [ "out" "dev" ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "atkmm"; 5 + version = "2.36.3"; 6 7 src = fetchurl { 8 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 9 + sha256 = "sha256-bsJk6qDE3grbcgLGABcL3pp/vk1Ga/vpQOr3+qpsWXQ="; 10 }; 11 12 outputs = [ "out" "dev" ];
+2 -2
pkgs/development/libraries/atkmm/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "atkmm"; 5 - version = "2.28.3"; 6 7 src = fetchurl { 8 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-fCCItIapCb6NorGDBOVsX5CITRNDyNpzZ+pc0yWLmWk="; 10 }; 11 12 outputs = [ "out" "dev" ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "atkmm"; 5 + version = "2.28.4"; 6 7 src = fetchurl { 8 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 9 + sha256 = "sha256-ChQqgSj4PAAe+4AU7kY+mnZgVO+EaGr5UxNeBNKP2rM="; 10 }; 11 12 outputs = [ "out" "dev" ];
+2 -2
pkgs/development/libraries/cln/default.nix
··· 2 3 gccStdenv.mkDerivation rec { 4 pname = "cln"; 5 - version = "1.3.6"; 6 7 src = fetchurl { 8 url = "${meta.homepage}${pname}-${version}.tar.bz2"; 9 - sha256 = "0jlq9l4hphk7qqlgqj9ihjp4m3rwjbhk6q4v00lsbgbri07574pl"; 10 }; 11 12 buildInputs = [ gmp ];
··· 2 3 gccStdenv.mkDerivation rec { 4 pname = "cln"; 5 + version = "1.3.7"; 6 7 src = fetchurl { 8 url = "${meta.homepage}${pname}-${version}.tar.bz2"; 9 + sha256 = "sha256-fH7YR0lYM35N9btX6lF2rQNlAEy7mLYhdlvEYGoQ2Gs="; 10 }; 11 12 buildInputs = [ gmp ];
+2 -2
pkgs/development/libraries/drogon/default.nix
··· 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "drogon"; 12 - version = "1.9.1"; 13 14 src = fetchFromGitHub { 15 owner = "drogonframework"; 16 repo = "drogon"; 17 rev = "v${finalAttrs.version}"; 18 - sha256 = "sha256-6F+LRcoBqHEbweqbVFHlR3I9nj1NaYty8zKcR4ZHKxg="; 19 fetchSubmodules = true; 20 }; 21
··· 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "drogon"; 12 + version = "1.9.2"; 13 14 src = fetchFromGitHub { 15 owner = "drogonframework"; 16 repo = "drogon"; 17 rev = "v${finalAttrs.version}"; 18 + sha256 = "sha256-/pLYBCwulHkHQAVEhuAlPUJSS/jc3uvGtU0Q0RWPNn0="; 19 fetchSubmodules = true; 20 }; 21
+2 -2
pkgs/development/libraries/gcr/default.nix
··· 26 27 stdenv.mkDerivation rec { 28 pname = "gcr"; 29 - version = "3.41.1"; 30 31 outputs = [ "out" "dev" "devdoc" ]; 32 33 src = fetchurl { 34 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 35 - sha256 = "u3Eoo8L+u/7pwDuQ131JjQzrI3sHiYAtYBhcccS+ok8="; 36 }; 37 38 nativeBuildInputs = [
··· 26 27 stdenv.mkDerivation rec { 28 pname = "gcr"; 29 + version = "3.41.2"; 30 31 outputs = [ "out" "dev" "devdoc" ]; 32 33 src = fetchurl { 34 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 35 + sha256 = "utEPPFU6DhhUZJq1nFskNNoiyhpUrmE48fU5YVZ+Grc="; 36 }; 37 38 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/glibmm/2.68.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "glibmm"; 16 - version = "2.78.0"; 17 18 outputs = [ "out" "dev" ]; 19 20 src = fetchurl { 21 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 22 - sha256 = "sha256-XS6HJWSZbwKgbYu6w2d+fDlK+LAN0VJq69R6+EKj71A="; 23 }; 24 25 nativeBuildInputs = [
··· 13 14 stdenv.mkDerivation rec { 15 pname = "glibmm"; 16 + version = "2.78.1"; 17 18 outputs = [ "out" "dev" ]; 19 20 src = fetchurl { 21 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 22 + sha256 = "sha256-9HPyl10mw0CeES7RHtNkBvs4Q/qXXfV1wi1MuEMIX2E="; 23 }; 24 25 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/highfive/default.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "highfive${lib.optionalString mpiSupport "-mpi"}"; 15 - version = "2.8.0"; 16 17 src = fetchFromGitHub { 18 owner = "BlueBrain"; 19 repo = "HighFive"; 20 rev = "v${version}"; 21 - sha256 = "sha256-INDQ0RqPMSsKXQ/QVDhpCg4qzghLA3zQUViduflLUFY="; 22 }; 23 24 nativeBuildInputs = [ cmake ];
··· 12 13 stdenv.mkDerivation rec { 14 pname = "highfive${lib.optionalString mpiSupport "-mpi"}"; 15 + version = "2.9.0"; 16 17 src = fetchFromGitHub { 18 owner = "BlueBrain"; 19 repo = "HighFive"; 20 rev = "v${version}"; 21 + sha256 = "sha256-4n7J0qf4josYVsbVF4u+NLdecpA9gqHXCfibr0QfyJ4="; 22 }; 23 24 nativeBuildInputs = [ cmake ];
+4 -1
pkgs/development/libraries/igraph/default.nix
··· 88 cp -r doc "$out/share" 89 ''; 90 91 - postFixup = lib.optionalString stdenv.isDarwin '' 92 install_name_tool -change libblas.dylib ${blas}/lib/libblas.dylib $out/lib/libigraph.dylib 93 ''; 94
··· 88 cp -r doc "$out/share" 89 ''; 90 91 + postFixup = '' 92 + substituteInPlace $dev/lib/cmake/igraph/igraph-targets.cmake \ 93 + --replace-fail "_IMPORT_PREFIX \"$out\"" "_IMPORT_PREFIX \"$dev\"" 94 + '' + lib.optionalString stdenv.isDarwin '' 95 install_name_tool -change libblas.dylib ${blas}/lib/libblas.dylib $out/lib/libigraph.dylib 96 ''; 97
+2 -2
pkgs/development/libraries/libgig/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "libgig"; 5 - version = "4.3.0"; 6 7 src = fetchurl { 8 url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2"; 9 - sha256 = "sha256-oG0Jh4eAxsGd2NucM1RNU6kzV/niexSpg6qrpo//p5Q="; 10 }; 11 12 nativeBuildInputs = [ autoconf automake libtool pkg-config ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "libgig"; 5 + version = "4.4.0"; 6 7 src = fetchurl { 8 url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2"; 9 + sha256 = "sha256-ZwQMrK8da12lFz7UAY2i+eW3rzPFhngdUfeV3hW65iI="; 10 }; 11 12 nativeBuildInputs = [ autoconf automake libtool pkg-config ];
+2 -2
pkgs/development/libraries/libmysqlconnectorcpp/default.nix
··· 8 9 stdenv.mkDerivation rec { 10 pname = "libmysqlconnectorcpp"; 11 - version = "8.2.0"; 12 13 src = fetchurl { 14 url = "https://cdn.mysql.com/Downloads/Connector-C++/mysql-connector-c++-${version}-src.tar.gz"; 15 - hash = "sha256-lCRmgiXFpz97eAXNNtddhQLJqOIMoRyVJlMVXvbpCdo="; 16 }; 17 18 nativeBuildInputs = [
··· 8 9 stdenv.mkDerivation rec { 10 pname = "libmysqlconnectorcpp"; 11 + version = "8.3.0"; 12 13 src = fetchurl { 14 url = "https://cdn.mysql.com/Downloads/Connector-C++/mysql-connector-c++-${version}-src.tar.gz"; 15 + hash = "sha256-oXvx+tErGrF/X2x3ZiifuHIA6RlFMjTD7BZk13NL6Pg="; 16 }; 17 18 nativeBuildInputs = [
-1
pkgs/development/libraries/libshumate/default.nix
··· 79 passthru = { 80 updateScript = gnome.updateScript { 81 packageName = pname; 82 - versionPolicy = "none"; 83 }; 84 }; 85
··· 79 passthru = { 80 updateScript = gnome.updateScript { 81 packageName = pname; 82 }; 83 }; 84
+2 -2
pkgs/development/libraries/mpdecimal/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "mpdecimal"; 5 - version = "2.5.1"; 6 outputs = [ "out" "cxx" "doc" "dev" ]; 7 8 src = fetchurl { 9 url = "https://www.bytereef.org/software/mpdecimal/releases/mpdecimal-${version}.tar.gz"; 10 - hash = "sha256-n5zUwEH5m1xJ/7e1nZ8S2VtoPYhYVgiqVqYwdmeysh8="; 11 }; 12 13 configureFlags = [ "LD=${stdenv.cc.targetPrefix}cc" ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "mpdecimal"; 5 + version = "4.0.0"; 6 outputs = [ "out" "cxx" "doc" "dev" ]; 7 8 src = fetchurl { 9 url = "https://www.bytereef.org/software/mpdecimal/releases/mpdecimal-${version}.tar.gz"; 10 + hash = "sha256-lCRFwyRbInMP1Bpnp8XCMdEcsbmTa5wPdjNPt9C0Row="; 11 }; 12 13 configureFlags = [ "LD=${stdenv.cc.targetPrefix}cc" ];
+8 -12
pkgs/development/libraries/ndpi/default.nix
··· 1 { lib 2 , stdenv 3 - , autoconf 4 - , automake 5 , fetchFromGitHub 6 , json_c 7 , libpcap ··· 10 , which 11 }: 12 13 - stdenv.mkDerivation rec { 14 pname = "ndpi"; 15 - version = "4.6"; 16 17 src = fetchFromGitHub { 18 owner = "ntop"; 19 repo = "nDPI"; 20 - rev = "refs/tags/${version}"; 21 - hash = "sha256-S0lVh5FZewPbYG/1ikI2RroCSC7OI8Xmfeq73hYCHnY="; 22 }; 23 - 24 - configureScript = "./autogen.sh"; 25 26 nativeBuildInputs = [ 27 - autoconf 28 - automake 29 libtool 30 pkg-config 31 which ··· 42 nDPI is a library for deep-packet inspection based on OpenDPI. 43 ''; 44 homepage = "https://www.ntop.org/products/deep-packet-inspection/ndpi/"; 45 - changelog = "https://github.com/ntop/nDPI/blob/${version}/CHANGELOG.md"; 46 license = with licenses; [ lgpl3Plus bsd3 ]; 47 maintainers = with maintainers; [ takikawa ]; 48 mainProgram = "ndpiReader"; 49 platforms = with platforms; unix; 50 }; 51 - }
··· 1 { lib 2 , stdenv 3 + , autoreconfHook 4 , fetchFromGitHub 5 , json_c 6 , libpcap ··· 9 , which 10 }: 11 12 + stdenv.mkDerivation (finalAttrs: { 13 pname = "ndpi"; 14 + version = "4.8"; 15 16 src = fetchFromGitHub { 17 owner = "ntop"; 18 repo = "nDPI"; 19 + rev = "refs/tags/${finalAttrs.version}"; 20 + hash = "sha256-V3hRDQ141pbR5jJK2QlP7BF2CEbuzqIvo+iTx3EGhRY="; 21 }; 22 23 nativeBuildInputs = [ 24 + autoreconfHook 25 libtool 26 pkg-config 27 which ··· 38 nDPI is a library for deep-packet inspection based on OpenDPI. 39 ''; 40 homepage = "https://www.ntop.org/products/deep-packet-inspection/ndpi/"; 41 + changelog = "https://github.com/ntop/nDPI/blob/${finalAttrs.version}/CHANGELOG.md"; 42 license = with licenses; [ lgpl3Plus bsd3 ]; 43 maintainers = with maintainers; [ takikawa ]; 44 mainProgram = "ndpiReader"; 45 platforms = with platforms; unix; 46 }; 47 + })
+2 -2
pkgs/development/libraries/ngtcp2/default.nix
··· 8 9 stdenv.mkDerivation rec { 10 pname = "ngtcp2"; 11 - version = "1.1.0"; 12 13 src = fetchFromGitHub { 14 owner = "ngtcp2"; 15 repo = pname; 16 rev = "v${version}"; 17 - hash = "sha256-z6lvtfO5XL/bZgbE+Sak+32QzjEhAdOnkpIO731h+bk="; 18 }; 19 20 outputs = [ "out" "dev" "doc" ];
··· 8 9 stdenv.mkDerivation rec { 10 pname = "ngtcp2"; 11 + version = "1.2.0"; 12 13 src = fetchFromGitHub { 14 owner = "ngtcp2"; 15 repo = pname; 16 rev = "v${version}"; 17 + hash = "sha256-/lHsHkSySKyZZdjTTYCo0a6cwcMcbOWNvAEcO36/kEw="; 18 }; 19 20 outputs = [ "out" "dev" "doc" ];
-63
pkgs/development/libraries/optparse-bash/default.nix
··· 1 - { stdenvNoCC 2 - , lib 3 - , fetchFromGitHub 4 - , bash 5 - , gnused 6 - , gawk 7 - , coreutils 8 - }: 9 - 10 - stdenvNoCC.mkDerivation { 11 - pname = "optparse-bash-unstable"; 12 - version = "2021-06-13"; 13 - 14 - src = fetchFromGitHub { 15 - owner = "nk412"; 16 - repo = "optparse"; 17 - rev = "d86ec17d15368e5b54eb2d47b001b0b61d68bbd0"; 18 - sha256 = "sha256-vs7Jo1+sV0tPse4Wu2xtzSX1IkahwLgO3e4Riz3uMmI="; 19 - }; 20 - 21 - postPatch = '' 22 - substituteInPlace optparse.bash \ 23 - --replace sed "${gnused}/bin/sed" \ 24 - --replace awk "${gawk}/bin/awk" \ 25 - --replace printf "${coreutils}/bin/printf" 26 - ''; 27 - 28 - dontBuild = true; 29 - 30 - doCheck = true; 31 - 32 - nativeCheckInputs = [ bash ]; 33 - 34 - # `#!/usr/bin/env` isn't okay for OfBorg 35 - # Need external bash to run 36 - checkPhase = '' 37 - runHook preCheck 38 - bash ./sample_head.sh -v --file README.md 39 - runHook postCheck 40 - ''; 41 - 42 - installPhase = '' 43 - runHook preInstall 44 - mkdir -p $out/bin 45 - mv optparse.bash $out/bin/ 46 - mkdir -p $out/share/doc/optparse-bash 47 - mv README.md sample_head.sh $out/share/doc/optparse-bash/ 48 - runHook postInstall 49 - ''; 50 - 51 - # As example code, 52 - # sample_head.sh shows how users can use opt-parse in their script, 53 - # and its shebang (`/usr/bin/env bash`) should not be patched. 54 - dontPatchShebangs = true; 55 - 56 - meta = with lib; { 57 - description = "A BASH wrapper for getopts, for simple command-line argument parsing"; 58 - homepage = "https://github.com/nk412/optparse"; 59 - license = licenses.mit; 60 - platforms = platforms.all; 61 - maintainers = with maintainers; [ ShamrockLee ]; 62 - }; 63 - }
···
+2 -2
pkgs/development/libraries/pangomm/2.48.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "pangomm"; 17 - version= "2.50.1"; 18 19 outputs = [ "out" "dev" ]; 20 21 src = fetchurl { 22 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 23 - sha256 = "sha256-zMmSNBPkCMK/9jffZjJIMn1ygi8R45S0I+HFZSt9khQ="; 24 }; 25 26 nativeBuildInputs = [
··· 14 15 stdenv.mkDerivation rec { 16 pname = "pangomm"; 17 + version= "2.50.2"; 18 19 outputs = [ "out" "dev" ]; 20 21 src = fetchurl { 22 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 23 + sha256 = "sha256-G8WrTqMoBEJYDWgxgibas2zu38Moj52DcRz3z6tQqfs="; 24 }; 25 26 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/pangomm/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "pangomm"; 6 - version= "2.46.3"; 7 8 src = fetchurl { 9 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 10 - sha256 = "sha256-QQ/gTUcaYI8/AnPToX2EAkHZEe0P8sdYqYWcZsbyQ3k="; 11 }; 12 13 outputs = [ "out" "dev" ];
··· 3 4 stdenv.mkDerivation rec { 5 pname = "pangomm"; 6 + version= "2.46.4"; 7 8 src = fetchurl { 9 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 10 + sha256 = "sha256-uSAWZhUmQk3kuTd/FRL1l4H0H7FsnAJn1hM7oc1o2yI="; 11 }; 12 13 outputs = [ "out" "dev" ];
+2 -2
pkgs/development/libraries/poco/default.nix
··· 3 stdenv.mkDerivation rec { 4 pname = "poco"; 5 6 - version = "1.12.5"; 7 8 src = fetchFromGitHub { 9 owner = "pocoproject"; 10 repo = "poco"; 11 - sha256 = "sha256-2macXa2pi5FebSrTIfSQbIiafNCXczNQEP+PFbFxylw="; 12 rev = "poco-${version}-release"; 13 }; 14
··· 3 stdenv.mkDerivation rec { 4 pname = "poco"; 5 6 + version = "1.12.5p2"; 7 8 src = fetchFromGitHub { 9 owner = "pocoproject"; 10 repo = "poco"; 11 + sha256 = "sha256-UAseNOC9n+OooDl4E67qcndJ02fAgmp2d8Ii/IyPvhg="; 12 rev = "poco-${version}-release"; 13 }; 14
+12 -5
pkgs/development/libraries/science/astronomy/indilib/default.nix
··· 15 , gsl 16 , fftw 17 , gtest 18 }: 19 20 - stdenv.mkDerivation rec { 21 pname = "indilib"; 22 version = "2.0.6"; 23 24 src = fetchFromGitHub { 25 owner = "indilib"; 26 repo = "indi"; 27 - rev = "v${version}"; 28 hash = "sha256-3MeF2G/rr//c7cgGzqDzmqoNKvR+7Kkbid1g8znKPkg="; 29 }; 30 ··· 48 cmakeFlags = [ 49 "-DCMAKE_INSTALL_LIBDIR=lib" 50 "-DUDEVRULES_INSTALL_DIR=lib/udev/rules.d" 51 - ] ++ lib.optional doCheck [ 52 "-DINDI_BUILD_UNITTESTS=ON" 53 "-DINDI_BUILD_INTEGTESTS=ON" 54 ]; ··· 68 done 69 ''; 70 71 72 meta = with lib; { 73 homepage = "https://www.indilib.org/"; 74 description = "Implementation of the INDI protocol for POSIX operating systems"; 75 - changelog = "https://github.com/indilib/indi/releases/tag/v${version}"; 76 license = licenses.lgpl2Plus; 77 maintainers = with maintainers; [ hjones2199 sheepforce ]; 78 platforms = platforms.unix; 79 }; 80 - }
··· 15 , gsl 16 , fftw 17 , gtest 18 + , indi-full 19 }: 20 21 + stdenv.mkDerivation (finalAttrs: { 22 pname = "indilib"; 23 version = "2.0.6"; 24 25 src = fetchFromGitHub { 26 owner = "indilib"; 27 repo = "indi"; 28 + rev = "v${finalAttrs.version}"; 29 hash = "sha256-3MeF2G/rr//c7cgGzqDzmqoNKvR+7Kkbid1g8znKPkg="; 30 }; 31 ··· 49 cmakeFlags = [ 50 "-DCMAKE_INSTALL_LIBDIR=lib" 51 "-DUDEVRULES_INSTALL_DIR=lib/udev/rules.d" 52 + ] ++ lib.optional finalAttrs.finalPackage.doCheck [ 53 "-DINDI_BUILD_UNITTESTS=ON" 54 "-DINDI_BUILD_INTEGTESTS=ON" 55 ]; ··· 69 done 70 ''; 71 72 + passthru.tests = { 73 + # make sure 3rd party drivers compile with this indilib 74 + indi-full = indi-full.override { 75 + indilib = finalAttrs.finalPackage; 76 + }; 77 + }; 78 79 meta = with lib; { 80 homepage = "https://www.indilib.org/"; 81 description = "Implementation of the INDI protocol for POSIX operating systems"; 82 + changelog = "https://github.com/indilib/indi/releases/tag/v${finalAttrs.version}"; 83 license = licenses.lgpl2Plus; 84 maintainers = with maintainers; [ hjones2199 sheepforce ]; 85 platforms = platforms.unix; 86 }; 87 + })
+1 -1
pkgs/development/libraries/science/astronomy/indilib/indi-full.nix
··· 6 owner = "indilib"; 7 repo = "indi-3rdparty"; 8 rev = "v${version}"; 9 - hash = "sha256-EtwN3yuMsT9CV+CapkKDy3e92u9Blvy+ySrQU586Z1s="; 10 }; 11 indi-firmware = callPackage ./indi-firmware.nix { 12 inherit version;
··· 6 owner = "indilib"; 7 repo = "indi-3rdparty"; 8 rev = "v${version}"; 9 + hash = "sha256-KNoyYldZWsXB9ubu0EYDgckRtpQgSCmzKlx7Erx4MRQ="; 10 }; 11 indi-firmware = callPackage ./indi-firmware.nix { 12 inherit version;
+2 -2
pkgs/development/libraries/science/math/ipopt/default.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "ipopt"; 15 - version = "3.14.13"; 16 17 src = fetchFromGitHub { 18 owner = "coin-or"; 19 repo = "Ipopt"; 20 rev = "releases/${version}"; 21 - sha256 = "sha256-51isH1hlzgbD0JVtGp3NuaGY5l2CeS1S7oVeRYG+vWI="; 22 }; 23 24 CXXDEFS = [ "-DHAVE_RAND" "-DHAVE_CSTRING" "-DHAVE_CSTDIO" ];
··· 12 13 stdenv.mkDerivation rec { 14 pname = "ipopt"; 15 + version = "3.14.14"; 16 17 src = fetchFromGitHub { 18 owner = "coin-or"; 19 repo = "Ipopt"; 20 rev = "releases/${version}"; 21 + sha256 = "sha256-qMPdJVLIXFePhTA6qRr1Pth/BjJ62cj9y8C1HKQJGDQ="; 22 }; 23 24 CXXDEFS = [ "-DHAVE_RAND" "-DHAVE_CSTRING" "-DHAVE_CSTDIO" ];
+10 -5
pkgs/development/libraries/science/math/suitesparse-graphblas/default.nix
··· 1 - { lib, stdenv 2 , fetchFromGitHub 3 , cmake 4 , gnum4 ··· 6 7 stdenv.mkDerivation rec { 8 pname = "suitesparse-graphblas"; 9 - version = "7.4.4"; 10 11 outputs = [ "out" "dev" ]; 12 ··· 14 owner = "DrTimothyAldenDavis"; 15 repo = "GraphBLAS"; 16 rev = "v${version}"; 17 - sha256 = "sha256-4NLYNapIiEXntXHrsyq63jIbuBJxR77X3VbLFbvtT9A="; 18 }; 19 20 nativeBuildInputs = [ ··· 22 gnum4 23 ]; 24 25 meta = with lib; { 26 description = "Graph algorithms in the language of linear algebra"; 27 - homepage = "http://faculty.cse.tamu.edu/davis/GraphBLAS.html"; 28 license = licenses.asl20; 29 - maintainers = with maintainers; []; 30 platforms = with platforms; unix; 31 }; 32 }
··· 1 + { lib 2 + , stdenv 3 , fetchFromGitHub 4 , cmake 5 , gnum4 ··· 7 8 stdenv.mkDerivation rec { 9 pname = "suitesparse-graphblas"; 10 + version = "9.0.1"; 11 12 outputs = [ "out" "dev" ]; 13 ··· 15 owner = "DrTimothyAldenDavis"; 16 repo = "GraphBLAS"; 17 rev = "v${version}"; 18 + hash = "sha256-eNd6jlpW3KiRvOCKvNP5ttpgjPPXt2M2vLhk1Zn4gTE="; 19 }; 20 21 nativeBuildInputs = [ ··· 23 gnum4 24 ]; 25 26 + preConfigure = '' 27 + export HOME=$(mktemp -d) 28 + ''; 29 + 30 meta = with lib; { 31 description = "Graph algorithms in the language of linear algebra"; 32 + homepage = "https://people.engr.tamu.edu/davis/GraphBLAS.html"; 33 license = licenses.asl20; 34 + maintainers = with maintainers; [ wegank ]; 35 platforms = with platforms; unix; 36 }; 37 }
+2 -2
pkgs/development/libraries/wxsqlite3/default.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "wxsqlite3"; 15 - version = "4.9.8"; 16 17 src = fetchFromGitHub { 18 owner = "utelle"; 19 repo = "wxsqlite3"; 20 rev = "v${version}"; 21 - hash = "sha256-spc2lA6pgHfT4F0lHGhVFpvIIRmDVgfvzZHUqPB/Y5w="; 22 }; 23 24 nativeBuildInputs = [ autoreconfHook ];
··· 12 13 stdenv.mkDerivation rec { 14 pname = "wxsqlite3"; 15 + version = "4.9.9"; 16 17 src = fetchFromGitHub { 18 owner = "utelle"; 19 repo = "wxsqlite3"; 20 rev = "v${version}"; 21 + hash = "sha256-YvQEAqiXwooCxUIZbIYhccbpVjYeFIp6d3dLeUP1RpE="; 22 }; 23 24 nativeBuildInputs = [ autoreconfHook ];
+2 -2
pkgs/development/ocaml-modules/ppx_deriving_yaml/default.nix
··· 4 5 buildDunePackage rec { 6 pname = "ppx_deriving_yaml"; 7 - version = "0.2.1"; 8 9 minimalOCamlVersion = "4.08"; 10 11 src = fetchurl { 12 url = "https://github.com/patricoferris/ppx_deriving_yaml/releases/download/v${version}/ppx_deriving_yaml-${version}.tbz"; 13 - hash = "sha256-3vmay8UY7d3j96VOQ+D3oYEotzVls91F51ebXWQ/9SQ="; 14 }; 15 16 propagatedBuildInputs = [ ppxlib ppx_deriving yaml ];
··· 4 5 buildDunePackage rec { 6 pname = "ppx_deriving_yaml"; 7 + version = "0.2.2"; 8 9 minimalOCamlVersion = "4.08"; 10 11 src = fetchurl { 12 url = "https://github.com/patricoferris/ppx_deriving_yaml/releases/download/v${version}/ppx_deriving_yaml-${version}.tbz"; 13 + hash = "sha256-9xy43jaCpKo/On5sTTt8f0Mytyjj1JN2QuFMcoWYTBY="; 14 }; 15 16 propagatedBuildInputs = [ ppxlib ppx_deriving yaml ];
+32
pkgs/development/php-packages/zstd/default.nix
···
··· 1 + { buildPecl, lib, zstd, pkg-config, fetchFromGitHub }: 2 + 3 + let 4 + version = "0.13.3"; 5 + in buildPecl { 6 + inherit version; 7 + pname = "zstd"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "kjdev"; 11 + repo = "php-ext-zstd"; 12 + rev = version; 13 + hash = "sha256-jEuL93ScF0/FlfUvib6uZafOkIe0+VkWV/frpSjTkvY="; 14 + }; 15 + 16 + nativeBuildInputs = [ 17 + pkg-config 18 + ]; 19 + 20 + buildInputs = [ zstd ]; 21 + 22 + configureFlags = [ 23 + "--with-libzstd" 24 + ]; 25 + 26 + meta = with lib; { 27 + description = "Zstd Extension for PHP"; 28 + license = licenses.mit; 29 + homepage = "https://github.com/kjdev/php-ext-zstd"; 30 + maintainers = with lib.maintainers; [ shyim ]; 31 + }; 32 + }
+2 -2
pkgs/development/python-modules/aioelectricitymaps/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "aioelectricitymaps"; 17 - version = "0.2.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.11"; ··· 23 owner = "jpbede"; 24 repo = "aioelectricitymaps"; 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-cwRmUHVIviQquZtcQRtCFxBZTt4QEyaCixbY1ExUL9A="; 27 }; 28 29 postPatch = ''
··· 14 15 buildPythonPackage rec { 16 pname = "aioelectricitymaps"; 17 + version = "0.3.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.11"; ··· 23 owner = "jpbede"; 24 repo = "aioelectricitymaps"; 25 rev = "refs/tags/v${version}"; 26 + hash = "sha256-saIzVbgYx5nIM5fk7i3wu4X1gOIj81L/rRNq5Xl4cnw="; 27 }; 28 29 postPatch = ''
+2 -2
pkgs/development/python-modules/anova-wifi/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "anova-wifi"; 14 - version = "0.10.3"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.10"; ··· 20 owner = "Lash-L"; 21 repo = "anova_wifi"; 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-tCmvp29KSCkc+g0w0odcB7vGjtDx6evac7XsHEF0syM="; 24 }; 25 26 postPatch = ''
··· 11 12 buildPythonPackage rec { 13 pname = "anova-wifi"; 14 + version = "0.11.6"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.10"; ··· 20 owner = "Lash-L"; 21 repo = "anova_wifi"; 22 rev = "refs/tags/v${version}"; 23 + hash = "sha256-zRMs0GAsLgKt1R0SfRFPchjmk87K2d8vBeHJs66k9xc="; 24 }; 25 26 postPatch = ''
+2 -2
pkgs/development/python-modules/argilla/default.nix
··· 65 }: 66 let 67 pname = "argilla"; 68 - version = "1.22.0"; 69 optional-dependencies = { 70 server = [ 71 fastapi ··· 126 owner = "argilla-io"; 127 repo = pname; 128 rev = "refs/tags/v${version}"; 129 - hash = "sha256-aPq/ZPewQId5OZq5v+TgvWWBS03QDftYLEwhzNLzrFQ="; 130 }; 131 132 pythonRelaxDeps = [
··· 65 }: 66 let 67 pname = "argilla"; 68 + version = "1.23.0"; 69 optional-dependencies = { 70 server = [ 71 fastapi ··· 126 owner = "argilla-io"; 127 repo = pname; 128 rev = "refs/tags/v${version}"; 129 + hash = "sha256-+Yamol0o2dgQoXbi8RKLn3YOZ2mcTFikPkHZDd3Nnqo="; 130 }; 131 132 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/b2sdk/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "b2sdk"; 22 - version = "1.29.0"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; 26 27 src = fetchPypi { 28 inherit pname version; 29 - hash = "sha256-h/pXLGpQ2+ENxWqIb9yteroaudsS8Hz+sraON+65TMw="; 30 }; 31 32 nativeBuildInputs = [
··· 19 20 buildPythonPackage rec { 21 pname = "b2sdk"; 22 + version = "1.29.1"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; 26 27 src = fetchPypi { 28 inherit pname version; 29 + hash = "sha256-Talw1P0JnPdU+dDgC8J2TJSOV/LshgQyBbPYEqzKpfA="; 30 }; 31 32 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/bandit/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "bandit"; 15 - version = "1.7.6"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.8"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-cs57yXQTdNlvsvHJqJYIKYhfEkP/3nQ95woZzuNT6PM="; 23 }; 24 25 nativeBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "bandit"; 15 + version = "1.7.7"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.8"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-UnkGvsYIjLSZquMbyWKGS053Vp6dUp7lHfOpO0uKsoo="; 23 }; 24 25 nativeBuildInputs = [
+6
pkgs/development/python-modules/cmdstanpy/default.nix
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , substituteAll 5 , cmdstan 6 , pythonRelaxDepsHook 7 , setuptools ··· 30 (substituteAll { 31 src = ./use-nix-cmdstan-path.patch; 32 cmdstan = "${cmdstan}/opt/cmdstan"; 33 }) 34 ]; 35
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , substituteAll 5 + , fetchpatch 6 , cmdstan 7 , pythonRelaxDepsHook 8 , setuptools ··· 31 (substituteAll { 32 src = ./use-nix-cmdstan-path.patch; 33 cmdstan = "${cmdstan}/opt/cmdstan"; 34 + }) 35 + (fetchpatch { 36 + name = "stan-2.34-fix-parsing-of-unit_e-output-files.patch"; 37 + url = "https://github.com/stan-dev/cmdstanpy/commit/144d641739ccd1109055d13b5b96e4e76607305d.patch"; 38 + hash = "sha256-21hcbK3Xs7vGBNRs4hMfY5g7jIwEG49WYnsOxYJ6ccs="; 39 }) 40 ]; 41
+2 -2
pkgs/development/python-modules/diff-cover/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "diff-cover"; 22 - version = "8.0.1"; 23 format = "pyproject"; 24 25 disabled = pythonOlder "3.7"; ··· 27 src = fetchPypi { 28 pname = "diff_cover"; 29 inherit version; 30 - hash = "sha256-zDnRmety/kG83P7hZOtbWRUztMYlWA4/mprMaGkGTXw="; 31 }; 32 33 nativeBuildInputs = [
··· 19 20 buildPythonPackage rec { 21 pname = "diff-cover"; 22 + version = "8.0.3"; 23 format = "pyproject"; 24 25 disabled = pythonOlder "3.7"; ··· 27 src = fetchPypi { 28 pname = "diff_cover"; 29 inherit version; 30 + hash = "sha256-OTVlyoZorh4OOOThMrUc8CgIb7Bqen2Ued61Aj4vaNQ="; 31 }; 32 33 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/django-versatileimagefield/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "django-versatileimagefield"; 11 - version = "3.0"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-FlHbLtNthDz7F4jyYBRyopPZuoZyk2m29uVZERI1esc="; 17 }; 18 propagatedBuildInputs = [ pillow python-magic ]; 19
··· 8 9 buildPythonPackage rec { 10 pname = "django-versatileimagefield"; 11 + version = "3.1"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-M5DiAEgJjol78pmwNgdj0QzQiWZbeu+OupAO7Lrq0Ng="; 17 }; 18 propagatedBuildInputs = [ pillow python-magic ]; 19
+2 -2
pkgs/development/python-modules/elasticsearch-dsl/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "elasticsearch-dsl"; 11 - version = "8.11.0"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - sha256 = "sha256-RK9P1/YgCbsZGTtV4cIUO2kyUX5MDsMBB+f/TZaKEn4="; 17 }; 18 19 propagatedBuildInputs = [ elasticsearch python-dateutil six ];
··· 8 9 buildPythonPackage rec { 10 pname = "elasticsearch-dsl"; 11 + version = "8.12.0"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + sha256 = "sha256-zjK4UpiIqXvpEVMedZCBbPOx9ggmPv9vt1qnEG4jPIg="; 17 }; 18 19 propagatedBuildInputs = [ elasticsearch python-dateutil six ];
+2 -2
pkgs/development/python-modules/es-client/default.nix
··· 20 21 buildPythonPackage rec { 22 pname = "es-client"; 23 - version = "8.12.3"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.7"; ··· 29 owner = "untergeek"; 30 repo = "es_client"; 31 rev = "refs/tags/v${version}"; 32 - hash = "sha256-kskUPewMEp37OwLtopJFtbC8Nxa07qgImLejYyiUJao="; 33 }; 34 35 pythonRelaxDeps = true;
··· 20 21 buildPythonPackage rec { 22 pname = "es-client"; 23 + version = "8.12.4"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.7"; ··· 29 owner = "untergeek"; 30 repo = "es_client"; 31 rev = "refs/tags/v${version}"; 32 + hash = "sha256-IjpnukZRDpflk/lh9aSyeuoj/bzZD0jiS1prBKkZwLk="; 33 }; 34 35 pythonRelaxDeps = true;
+6
pkgs/development/python-modules/githubkit/default.nix
··· 9 , pyjwt 10 , pytestCheckHook 11 , pythonOlder 12 , typing-extensions 13 }: 14 ··· 26 hash = "sha256-nPXs6thXAshDojgHSNyEeBN/jNJkfFECSuY5f51Zozo="; 27 }; 28 29 postPatch = '' 30 substituteInPlace pyproject.toml \ 31 --replace "--cov=githubkit --cov-append --cov-report=term-missing" "" ··· 33 34 nativeBuildInputs = [ 35 poetry-core 36 ]; 37 38 propagatedBuildInputs = [
··· 9 , pyjwt 10 , pytestCheckHook 11 , pythonOlder 12 + , pythonRelaxDepsHook 13 , typing-extensions 14 }: 15 ··· 27 hash = "sha256-nPXs6thXAshDojgHSNyEeBN/jNJkfFECSuY5f51Zozo="; 28 }; 29 30 + pythonRelaxDeps = [ 31 + "hishel" 32 + ]; 33 + 34 postPatch = '' 35 substituteInPlace pyproject.toml \ 36 --replace "--cov=githubkit --cov-append --cov-report=term-missing" "" ··· 38 39 nativeBuildInputs = [ 40 poetry-core 41 + pythonRelaxDepsHook 42 ]; 43 44 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/gocardless-pro/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "gocardless-pro"; 13 - version = "1.50.0"; 14 format = "setuptools"; 15 16 src = fetchFromGitHub { 17 owner = "gocardless"; 18 repo = "gocardless-pro-python"; 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-eYuXHqJyThXKKGubCn8aoBZZ7lyXtpzlomaLNus+oJQ="; 21 }; 22 23 propagatedBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "gocardless-pro"; 13 + version = "1.51.0"; 14 format = "setuptools"; 15 16 src = fetchFromGitHub { 17 owner = "gocardless"; 18 repo = "gocardless-pro-python"; 19 rev = "refs/tags/v${version}"; 20 + hash = "sha256-4pyVcyEa8iex7ngTibxWYu4HeW+6V5OASkxqjHIOe2Y="; 21 }; 22 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-bigquery/default.nix
··· 28 29 buildPythonPackage rec { 30 pname = "google-cloud-bigquery"; 31 - version = "3.16.0"; 32 format = "setuptools"; 33 34 disabled = pythonOlder "3.7"; 35 36 src = fetchPypi { 37 inherit pname version; 38 - hash = "sha256-HWq/Sx10DfF8tDoHh4mHKvgFmgsd2ZnzLqaevG97p+8="; 39 }; 40 41 propagatedBuildInputs = [
··· 28 29 buildPythonPackage rec { 30 pname = "google-cloud-bigquery"; 31 + version = "3.17.1"; 32 format = "setuptools"; 33 34 disabled = pythonOlder "3.7"; 35 36 src = fetchPypi { 37 inherit pname version; 38 + hash = "sha256-CuB7kNUFK6OilqIhCiFEwoRpMA1x9vRViB+Uwt9UMFc="; 39 }; 40 41 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-container/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-container"; 17 - version = "2.37.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; 21 22 src = fetchPypi { 23 inherit pname version; 24 - hash = "sha256-kHWB2/iCAXFlHnifL+aPaU0i3xmgf1rOSsk8JhCx1Dk="; 25 }; 26 27 nativeBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-container"; 17 + version = "2.39.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; 21 22 src = fetchPypi { 23 inherit pname version; 24 + hash = "sha256-qlnKOkdLM34R8Ly01+sElovrYTUk5ksiXcJUDn/GqAw="; 25 }; 26 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/gsd/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "gsd"; 12 - version = "3.2.0"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; ··· 18 owner = "glotzerlab"; 19 repo = pname; 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-ceoHHEX44DrVgatV2EIS6gT9oVZkAx6OTFMZG/x4q64="; 22 }; 23 24 nativeBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "gsd"; 12 + version = "3.2.1"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; ··· 18 owner = "glotzerlab"; 19 repo = pname; 20 rev = "refs/tags/v${version}"; 21 + hash = "sha256-huMM98An/DG8PIVblS3b6AxF6vJ5IoKOs1f9kBnR3ik="; 22 }; 23 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/hishel/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "hishel"; 18 - version = "0.0.21"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "karpetrosyan"; 25 repo = "hishel"; 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-okNNYEq97qb2OoP3N+MvG7o3YADfd6LxP8EaNuWDGOM="; 28 }; 29 30 nativeBuildInputs = [
··· 15 16 buildPythonPackage rec { 17 pname = "hishel"; 18 + version = "0.0.22"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "karpetrosyan"; 25 repo = "hishel"; 26 rev = "refs/tags/${version}"; 27 + hash = "sha256-2GboU1J0jvZUz20+KpDYnfDqc+qi0tmlypbWeOoYjX0="; 28 }; 29 30 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/http-ece/default.nix
··· 4 5 buildPythonPackage rec { 6 pname = "http_ece"; 7 - version = "1.1.0"; 8 9 src = fetchPypi { 10 inherit pname version; 11 - sha256 = "1y5ln09ji4dwpzhxr77cggk02kghq7lql60a6969a5n2lwpvqblk"; 12 }; 13 14 propagatedBuildInputs = [ cryptography ]
··· 4 5 buildPythonPackage rec { 6 pname = "http_ece"; 7 + version = "1.2.0"; 8 9 src = fetchPypi { 10 inherit pname version; 11 + sha256 = "sha256-tZIPjvuOG1+wJXE+Ozb9pUM2JiAQY0sm3B+Y+F0es94="; 12 }; 13 14 propagatedBuildInputs = [ cryptography ]
+3 -3
pkgs/development/python-modules/hyperscan/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "hyperscan"; 16 - version = "0.6.0"; 17 pyproject = true; 18 19 src = fetchFromGitHub { 20 owner = "darvid"; 21 repo = "python-hyperscan"; 22 - rev = "v${version}"; 23 - hash = "sha256-6PoV9rY9CkXkAMWN2QCnfU4S0OJD/6bzkqFgvEVqNjo="; 24 }; 25 26 buildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "hyperscan"; 16 + version = "0.7.0"; 17 pyproject = true; 18 19 src = fetchFromGitHub { 20 owner = "darvid"; 21 repo = "python-hyperscan"; 22 + rev = "refs/tags/v${version}"; 23 + hash = "sha256-XIsYBu2YPbSIZGIhJjPap1ymg7cr0+ozwZtpOj8GFm8="; 24 }; 25 26 buildInputs = [
+2 -2
pkgs/development/python-modules/ibm-cloud-sdk-core/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "ibm-cloud-sdk-core"; 15 - version = "3.18.2"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.8"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-0gjISrKELopSMEuZHL8fy8q7rMuMqzATkP+c4Y8I+9A="; 23 }; 24 25 nativeBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "ibm-cloud-sdk-core"; 15 + version = "3.19.1"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.8"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-oPDcQSWNWG9wauSVW7srXN85+UeF6Q0CRlaSyqh2W/Q="; 23 }; 24 25 nativeBuildInputs = [
+45 -16
pkgs/development/python-modules/imbalanced-learn/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 - , isPy27 5 , pandas 6 - , pytestCheckHook 7 , scikit-learn 8 }: 9 10 buildPythonPackage rec { 11 pname = "imbalanced-learn"; 12 - version = "0.11.0"; 13 - format = "setuptools"; 14 - disabled = isPy27; # scikit-learn>=0.21 doesn't work on python2 15 16 src = fetchPypi { 17 inherit pname version; 18 - hash = "sha256-dYKuiFjm2wuS/vl90IZgoYKX7hKNeMKr3ABri9hrj9w="; 19 }; 20 21 - propagatedBuildInputs = [ scikit-learn ]; 22 nativeCheckInputs = [ pytestCheckHook pandas ]; 23 preCheck = '' 24 export HOME=$TMPDIR 25 ''; 26 - disabledTests = [ 27 - "estimator" 28 - "classification" 29 - "_generator" 30 - "show_versions" 31 - "test_make_imbalanced_iris" 32 - "test_rusboost[SAMME.R]" 33 34 - # https://github.com/scikit-learn-contrib/imbalanced-learn/issues/824 35 - "ValueDifferenceMetric" 36 ]; 37 38 meta = with lib; { 39 description = "Library offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance"; 40 homepage = "https://github.com/scikit-learn-contrib/imbalanced-learn"; 41 license = licenses.mit; 42 maintainers = [ maintainers.rmcgibbo ]; 43 };
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 + , pythonOlder 5 + , setuptools 6 + , joblib 7 + , keras 8 + , numpy 9 , pandas 10 , scikit-learn 11 + , scipy 12 + , tensorflow 13 + , threadpoolctl 14 + , pytest-xdist 15 + , pytestCheckHook 16 }: 17 18 buildPythonPackage rec { 19 pname = "imbalanced-learn"; 20 + version = "0.12.0"; 21 + pyproject = true; 22 + 23 + disabled = pythonOlder "3.8"; 24 25 src = fetchPypi { 26 inherit pname version; 27 + hash = "sha256-uczZqqMChpkHnUOm1Nn8nQOfVTdnM7Mfh8fZsSXcwWU="; 28 + }; 29 + 30 + nativeBuildInputs = [ 31 + setuptools 32 + ]; 33 + 34 + propagatedBuildInputs = [ 35 + joblib 36 + numpy 37 + scikit-learn 38 + scipy 39 + threadpoolctl 40 + ]; 41 + 42 + passthru.optional-dependencies = { 43 + optional = [ 44 + keras 45 + pandas 46 + tensorflow 47 + ]; 48 }; 49 50 + pythonImportsCheck = [ 51 + "imblearn" 52 + ]; 53 + 54 nativeCheckInputs = [ pytestCheckHook pandas ]; 55 + 56 preCheck = '' 57 export HOME=$TMPDIR 58 ''; 59 60 + disabledTestPaths = [ 61 + # require tensorflow and keras, but we don't want to 62 + # add them to nativeCheckInputs just for this tests 63 + "imblearn/keras/_generator.py" 64 ]; 65 66 meta = with lib; { 67 description = "Library offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance"; 68 homepage = "https://github.com/scikit-learn-contrib/imbalanced-learn"; 69 + changelog = "https://github.com/scikit-learn-contrib/imbalanced-learn/releases/tag/${version}"; 70 license = licenses.mit; 71 maintainers = [ maintainers.rmcgibbo ]; 72 };
+4 -11
pkgs/development/python-modules/jenkins-job-builder/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "jenkins-job-builder"; 12 - version = "5.0.4"; 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - hash = "sha256-+zrsfyi4I8venFGMKXDMUq+9+f7y6IY59y1/OJDExGs="; 18 }; 19 20 postPatch = '' 21 - # relax version constraint, https://storyboard.openstack.org/#!/story/2009723 22 - substituteInPlace requirements.txt --replace 'PyYAML>=3.10.0,<6' 'PyYAML>=3.10.0' 23 - 24 - # Allow building with setuptools from nixpkgs. 25 - # Related: https://github.com/NixOS/nixpkgs/issues/238226. 26 - substituteInPlace requirements.txt --replace 'setuptools<=65.7.0' 'setuptools' 27 - 28 - export HOME=$TMPDIR 29 ''; 30 31 propagatedBuildInputs = [ pbr python-jenkins pyyaml six stevedore fasteners jinja2 ]; ··· 35 36 meta = with lib; { 37 description = "Jenkins Job Builder is a system for configuring Jenkins jobs using simple YAML files stored in Git"; 38 - homepage = "https://docs.openstack.org/infra/jenkins-job-builder/"; 39 license = licenses.asl20; 40 maintainers = with maintainers; [ ]; 41 };
··· 9 10 buildPythonPackage rec { 11 pname = "jenkins-job-builder"; 12 + version = "6.0.0"; 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-queP6RBpw32PXbpz6StIE6Pb7RNsm2O4tNarrDwb2cU="; 18 }; 19 20 postPatch = '' 21 + export HOME=$(mktemp -d) 22 ''; 23 24 propagatedBuildInputs = [ pbr python-jenkins pyyaml six stevedore fasteners jinja2 ]; ··· 28 29 meta = with lib; { 30 description = "Jenkins Job Builder is a system for configuring Jenkins jobs using simple YAML files stored in Git"; 31 + homepage = "https://jenkins-job-builder.readthedocs.io/en/latest/"; 32 license = licenses.asl20; 33 maintainers = with maintainers; [ ]; 34 };
+16 -16
pkgs/development/python-modules/leidenalg/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , ddt 4 - , fetchPypi 5 , igraph 6 , igraph-c 7 , pythonOlder 8 , setuptools-scm 9 , unittestCheckHook ··· 11 12 buildPythonPackage rec { 13 pname = "leidenalg"; 14 - version = "0.10.1"; 15 - format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; 18 19 - src = fetchPypi { 20 - inherit pname version; 21 - hash = "sha256-RXrZaYKoC9XGVxifQt/rd+6807dEoRDlosFhjS64C0c="; 22 }; 23 24 - postPatch = '' 25 - substituteInPlace ./setup.py \ 26 - --replace "[\"/usr/include/igraph\", \"/usr/local/include/igraph\"]" \ 27 - "[\"${igraph-c.dev}/include/igraph\"]" 28 - 29 - rm -r vendor 30 - ''; 31 - 32 nativeBuildInputs = [ 33 setuptools-scm 34 ]; 35 36 propagatedBuildInputs = [ 37 igraph 38 - igraph-c 39 ]; 40 41 checkInputs = [ ··· 46 pythonImportsCheck = [ "leidenalg" ]; 47 48 meta = with lib; { 49 description = "Implementation of the Leiden algorithm for various quality functions to be used with igraph in Python"; 50 - homepage = "https://leidenalg.readthedocs.io"; 51 license = licenses.gpl3Only; 52 maintainers = with maintainers; [ jboy ]; 53 };
··· 1 { lib 2 , buildPythonPackage 3 , ddt 4 + , fetchFromGitHub 5 , igraph 6 , igraph-c 7 + , libleidenalg 8 , pythonOlder 9 , setuptools-scm 10 , unittestCheckHook ··· 12 13 buildPythonPackage rec { 14 pname = "leidenalg"; 15 + version = "0.10.2"; 16 + pyproject = true; 17 18 disabled = pythonOlder "3.7"; 19 20 + src = fetchFromGitHub { 21 + owner = "vtraag"; 22 + repo = "leidenalg"; 23 + rev = "refs/tags/${version}"; 24 + hash = "sha256-oaTV+BIB/YQBWKrVXuiIEMH/1MxPxeHhjUzbmxt6hlw="; 25 }; 26 27 nativeBuildInputs = [ 28 setuptools-scm 29 ]; 30 31 + buildInputs = [ 32 + igraph-c 33 + libleidenalg 34 + ]; 35 + 36 propagatedBuildInputs = [ 37 igraph 38 ]; 39 40 checkInputs = [ ··· 45 pythonImportsCheck = [ "leidenalg" ]; 46 47 meta = with lib; { 48 + changelog = "https://github.com/vtraag/leidenalg/blob/${version}/CHANGELOG"; 49 description = "Implementation of the Leiden algorithm for various quality functions to be used with igraph in Python"; 50 + homepage = "https://github.com/vtraag/leidenalg"; 51 license = licenses.gpl3Only; 52 maintainers = with maintainers; [ jboy ]; 53 };
+2 -2
pkgs/development/python-modules/libcloud/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "apache-libcloud"; 11 - version = "3.7.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - hash = "sha256-FIqeUAaWVEMqfTSZeVTpFDTdOOv2iDLrnHXUQrPmL60="; 19 }; 20 21 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "apache-libcloud"; 11 + version = "3.8.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-db9MCxI7wiXiTKlfyhw1vjCxnmu4X+6ngUBNQ8QnbJE="; 19 }; 20 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/logilab/constraint.nix
··· 11 12 buildPythonPackage rec { 13 pname = "logilab-constraint"; 14 - version = "0.8.0"; 15 format = "setuptools"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - hash = "sha256-yIO8sL0sdSKw0OApj2SJsuaojYpwQRTK/hGOIX2+Wh8="; 20 }; 21 22 nativeBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "logilab-constraint"; 14 + version = "1.0"; 15 format = "setuptools"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + hash = "sha256-UiE1FsHYJxvJd+lqCQKJQkAHXa5iRQYEzU9nDgrR6YY="; 20 }; 21 22 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/moderngl/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "moderngl"; 12 - version = "5.9.0"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - hash = "sha256-R7yZYSwhSJuhL1Qcna4k526KSSgzBk6P7p6zuumlZJo="; 20 }; 21 22 buildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "moderngl"; 12 + version = "5.10.0"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + hash = "sha256-EZyNNk3ePNjRwJ8jftSRZhe6dZlUoZUt9GlOUe5PZRE="; 20 }; 21 22 buildInputs = [
+2 -2
pkgs/development/python-modules/monty/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "monty"; 20 - version = "2023.11.3"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.9"; ··· 26 owner = "materialsvirtuallab"; 27 repo = "monty"; 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-SENrAHCCWYEMWqPQSy61E8bMYkCBJepK5otb7B7UGXA="; 30 }; 31 32 postPatch = ''
··· 17 18 buildPythonPackage rec { 19 pname = "monty"; 20 + version = "2024.2.2"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.9"; ··· 26 owner = "materialsvirtuallab"; 27 repo = "monty"; 28 rev = "refs/tags/v${version}"; 29 + hash = "sha256-tKt0IMUmx1WvnQ27PyeyEEGekOKGY33YX4af1/ipbk4="; 30 }; 31 32 postPatch = ''
+3 -3
pkgs/development/python-modules/nototools/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "nototools"; 10 - version = "0.2.17"; 11 12 disabled = pythonOlder "3.6"; 13 14 src = fetchFromGitHub { 15 owner = "googlefonts"; 16 repo = "nototools"; 17 - rev = "v${version}"; 18 - sha256 = "0jxydivqzggirc31jv7b4mrsjkg646zmra5m4h0pk4amgy65rvyp"; 19 }; 20 21 postPatch = ''
··· 7 8 buildPythonPackage rec { 9 pname = "nototools"; 10 + version = "0.2.19"; 11 12 disabled = pythonOlder "3.6"; 13 14 src = fetchFromGitHub { 15 owner = "googlefonts"; 16 repo = "nototools"; 17 + rev = "refs/tags/v${version}"; 18 + sha256 = "sha256-anAz+5PIhGhpFunjV2EVk2CrbXq2U0e+LINYUnS0IKU="; 19 }; 20 21 postPatch = ''
+2 -2
pkgs/development/python-modules/openant/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "openant-unstable"; 14 - version = "1.2.1"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "Tigge"; 21 repo = "openant"; 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-Ook9dwcyWvpaGylVDjBxQ2bnXRUBPYQHo6Wub+ISpwE="; 24 }; 25 26 nativeBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "openant-unstable"; 14 + version = "1.3.1"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "Tigge"; 21 repo = "openant"; 22 rev = "refs/tags/v${version}"; 23 + hash = "sha256-wDtHlkVyD7mMDXZ4LGMgatr9sSlQKVbgkYsKvHGr9Pc="; 24 }; 25 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pastescript/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "pastescript"; 15 - version = "3.3.0"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.7"; ··· 20 src = fetchPypi { 21 pname = "PasteScript"; 22 inherit version; 23 - hash = "sha256-3eyAGhOsZn4JTt3ij5AhLN6nvcmhjUNxsI9abvfS66I="; 24 }; 25 26 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "pastescript"; 15 + version = "3.4.0"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.7"; ··· 20 src = fetchPypi { 21 pname = "PasteScript"; 22 inherit version; 23 + hash = "sha256-k0jvBlr/Is8ViMEt+wIMx1HGSC4hb4o8dRL6QKQ/kNw="; 24 }; 25 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/patool/default.nix
··· 37 in 38 buildPythonPackage rec { 39 pname = "patool"; 40 - version = "2.0.0"; 41 format = "setuptools"; 42 43 #pypi doesn't have test data ··· 45 owner = "wummel"; 46 repo = pname; 47 rev = "upstream/${version}"; 48 - hash = "sha256-Hjpifsi5Q1eoe/MFWuQBDyjoXi/aUG4VN84yNMkAZaE="; 49 }; 50 51 postPatch = ''
··· 37 in 38 buildPythonPackage rec { 39 pname = "patool"; 40 + version = "2.1.1"; 41 format = "setuptools"; 42 43 #pypi doesn't have test data ··· 45 owner = "wummel"; 46 repo = pname; 47 rev = "upstream/${version}"; 48 + hash = "sha256-B2P6JldMOAxr4WS+wST+kRVvEm41zH3Nh5LLKoFOws4="; 49 }; 50 51 postPatch = ''
+2 -2
pkgs/development/python-modules/plyvel/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "plyvel"; 11 - version = "1.5.0"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-zZGOCzFpCrzT0gKodCyvlRqy/hVz3nr3HDhFaEf5ICs="; 17 }; 18 19 buildInputs = [ pkgs.leveldb ] ++ lib.optional isPy3k pytest;
··· 8 9 buildPythonPackage rec { 10 pname = "plyvel"; 11 + version = "1.5.1"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-PK9gCeT8JPv4cS0/XvPaflZJXCakiN8hYSGPw05GAZw="; 17 }; 18 19 buildInputs = [ pkgs.leveldb ] ++ lib.optional isPy3k pytest;
+2 -2
pkgs/development/python-modules/pyTelegramBotAPI/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "pytelegrambotapi"; 21 - version = "4.14.1"; 22 format = "setuptools"; 23 24 disabled = pythonOlder "3.7"; ··· 27 owner = "eternnoir"; 28 repo = "pyTelegramBotAPI"; 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-p31JRojOwoWQZE1w6UXEja0UvloMDbtKw75HHMUzgFU="; 31 }; 32 33 passthru.optional-dependencies = {
··· 18 19 buildPythonPackage rec { 20 pname = "pytelegrambotapi"; 21 + version = "4.15.2"; 22 format = "setuptools"; 23 24 disabled = pythonOlder "3.7"; ··· 27 owner = "eternnoir"; 28 repo = "pyTelegramBotAPI"; 29 rev = "refs/tags/${version}"; 30 + hash = "sha256-Xw+edPs2CKJdpgDp+JB3L2W4oAIAk/IpQAD7c2kF3gk="; 31 }; 32 33 passthru.optional-dependencies = {
+3 -3
pkgs/development/python-modules/pylxd/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "pylxd"; 17 - version = "2.3.1"; 18 format = "setuptools"; 19 20 src = fetchFromGitHub { 21 owner = "lxc"; 22 repo = "pylxd"; 23 - rev = version; 24 - hash = "sha256-eDRCJYjmBndMnSNuS6HD/2p/KhzqJq2qPAzMk7kC5UM="; 25 }; 26 27 propagatedBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "pylxd"; 17 + version = "2.3.2"; 18 format = "setuptools"; 19 20 src = fetchFromGitHub { 21 owner = "lxc"; 22 repo = "pylxd"; 23 + rev = "refs/tags/${version}"; 24 + hash = "sha256-Q4GMz7HFpJNPYlYgLhE0a7mVCwNpdbw4XVcUGQ2gUJ0="; 25 }; 26 27 propagatedBuildInputs = [
+4 -18
pkgs/development/python-modules/pynndescent/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 - , fetchpatch 5 , importlib-metadata 6 , joblib 7 , llvmlite 8 , numba 9 , scikit-learn 10 , scipy 11 , pytestCheckHook 12 , pythonOlder 13 }: ··· 15 buildPythonPackage rec { 16 pname = "pynndescent"; 17 version = "0.5.11"; 18 - format = "setuptools"; 19 20 disabled = pythonOlder "3.6"; 21 ··· 24 hash = "sha256-b0TO2dWp2iyH2bL/8wu1MIVAwGV2BeTVzeftMnW7rVA="; 25 }; 26 27 - patches = [ 28 - # https://github.com/lmcinnes/pynndescent/pull/224 29 - (fetchpatch { 30 - url = "https://github.com/lmcinnes/pynndescent/commit/86e0d716a3a4d5f4e6a0a3c2952f6fe339524e96.patch"; 31 - hash = "sha256-dfnT5P9Qsn/nSAr4Ysqo/olbLLfoZXvBRz33yzhN3J4="; 32 - }) 33 ]; 34 35 propagatedBuildInputs = [ ··· 44 45 nativeCheckInputs = [ 46 pytestCheckHook 47 - ]; 48 - 49 - disabledTests = [ 50 - # numpy.core._exceptions._UFuncNoLoopError 51 - "test_sparse_nn_descent_query_accuracy_angular" 52 - "test_nn_descent_query_accuracy_angular" 53 - "test_alternative_distances" 54 - # scipy: ValueError: Unknown Distance Metric: wminkowski 55 - # https://github.com/scikit-learn/scikit-learn/pull/21741 56 - "test_weighted_minkowski" 57 ]; 58 59 pythonImportsCheck = [
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 , importlib-metadata 5 , joblib 6 , llvmlite 7 , numba 8 , scikit-learn 9 , scipy 10 + , setuptools 11 , pytestCheckHook 12 , pythonOlder 13 }: ··· 15 buildPythonPackage rec { 16 pname = "pynndescent"; 17 version = "0.5.11"; 18 + pyproject = true; 19 20 disabled = pythonOlder "3.6"; 21 ··· 24 hash = "sha256-b0TO2dWp2iyH2bL/8wu1MIVAwGV2BeTVzeftMnW7rVA="; 25 }; 26 27 + nativeBuildInputs = [ 28 + setuptools 29 ]; 30 31 propagatedBuildInputs = [ ··· 40 41 nativeCheckInputs = [ 42 pytestCheckHook 43 ]; 44 45 pythonImportsCheck = [
+2 -2
pkgs/development/python-modules/pysdl2/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "PySDL2"; 5 - version = "0.9.15"; 6 7 # The tests use OpenGL using find_library, which would have to be 8 # patched; also they seem to actually open X windows and test stuff ··· 13 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-kIp946iMKyKiwhppkXxTIVKJW9GkkFJ6Jw7hTK1A5kc="; 17 }; 18 19 # Deliberately not in propagated build inputs; users can decide
··· 2 3 buildPythonPackage rec { 4 pname = "PySDL2"; 5 + version = "0.9.16"; 6 7 # The tests use OpenGL using find_library, which would have to be 8 # patched; also they seem to actually open X windows and test stuff ··· 13 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-ECdAa62+zdMP5W6AClp2rX1ycaOuwLes94DuJqAPLUA="; 17 }; 18 19 # Deliberately not in propagated build inputs; users can decide
+2 -2
pkgs/development/python-modules/python-arango/default.nix
··· 32 33 buildPythonPackage rec { 34 pname = "python-arango"; 35 - version = "7.8.1"; 36 format = "pyproject"; 37 38 disabled = pythonOlder "3.7"; ··· 41 owner = "ArangoDB-Community"; 42 repo = "python-arango"; 43 rev = "refs/tags/${version}"; 44 - hash = "sha256-R/59SMEVPZow9aG32gqQApuvB2zQLmPCxf/Mz70ubUU="; 45 }; 46 47 nativeBuildInputs = [
··· 32 33 buildPythonPackage rec { 34 pname = "python-arango"; 35 + version = "7.9.1"; 36 format = "pyproject"; 37 38 disabled = pythonOlder "3.7"; ··· 41 owner = "ArangoDB-Community"; 42 repo = "python-arango"; 43 rev = "refs/tags/${version}"; 44 + hash = "sha256-N10ysJKk0jxFyjgR/MXKHVS2MxCQtfFFGEh1IZ2eJk0="; 45 }; 46 47 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/python-openstackclient/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "python-openstackclient"; 19 - version = "6.4.0"; 20 format = "setuptools"; 21 22 src = fetchPypi { 23 inherit pname version; 24 - hash = "sha256-DGq0AWjqUf7WiBmqJR+CU96aYdrMlt0bZHOfGJ/CGD8="; 25 }; 26 27 nativeBuildInputs = [
··· 16 17 buildPythonPackage rec { 18 pname = "python-openstackclient"; 19 + version = "6.5.0"; 20 format = "setuptools"; 21 22 src = fetchPypi { 23 inherit pname version; 24 + hash = "sha256-EvwZNH9rGb/iw28Rx6GEH0FaLufxi5WUE8ISGZe4SVE="; 25 }; 26 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pyupgrade/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "pyupgrade"; 11 - version = "3.3.1"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "asottile"; 18 repo = pname; 19 rev = "v${version}"; 20 - hash = "sha256-vg1eNxIkdHM1MMTkCof/ED6nqFhwSgEiKjYmqAyHMp0="; 21 }; 22 23 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "pyupgrade"; 11 + version = "3.15.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "asottile"; 18 repo = pname; 19 rev = "v${version}"; 20 + hash = "sha256-n6WlJc7Hh7SArJ8Z0fikxidtpXaPQvKTDGn6HukL2q8="; 21 }; 22 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pywebpush/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "pywebpush"; 17 - version = "1.14.0"; 18 format = "setuptools"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-bDbhZ5JoIZ5pO6lA2yvyVMJAygJmTeECtyaa/DxUVzE="; 23 }; 24 25 propagatedBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "pywebpush"; 17 + version = "1.14.1"; 18 format = "setuptools"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-+I1+K/XofGFt+wS4yVwRkjjFEWWbAvc17nfMFoQoVe4="; 23 }; 24 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/redshift-connector/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "redshift-connector"; 18 - version = "2.0.917"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.6"; ··· 24 owner = "aws"; 25 repo = "amazon-redshift-python-driver"; 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-Qrh6ruB/e7ZeZ33fD9VmtAX+I6OUL5I/zjRv9oh1bO0="; 28 }; 29 30 # remove addops as they add test directory and coverage parameters to pytest
··· 15 16 buildPythonPackage rec { 17 pname = "redshift-connector"; 18 + version = "2.0.918"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.6"; ··· 24 owner = "aws"; 25 repo = "amazon-redshift-python-driver"; 26 rev = "refs/tags/v${version}"; 27 + hash = "sha256-hGj/KZz3QYpA/MQE4TcX4wYazMs10RIJCDNyZ+puEYY="; 28 }; 29 30 # remove addops as they add test directory and coverage parameters to pytest
+3 -3
pkgs/development/python-modules/rich-rst/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "rich-rst"; 11 - version = "1.1.7"; 12 format = "pyproject"; 13 14 src = fetchFromGitHub { 15 owner = "wasi-master"; 16 repo = pname; 17 - rev = "v${version}"; 18 - hash = "sha256-s48hdJo1LIRXTf+PeSBa6y/AH1NLmnyAafFydJ+exDk="; 19 }; 20 21 nativeBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "rich-rst"; 11 + version = "1.2.0"; 12 format = "pyproject"; 13 14 src = fetchFromGitHub { 15 owner = "wasi-master"; 16 repo = pname; 17 + rev = "refs/tags/v${version}"; 18 + hash = "sha256-jFPboZ5/T2I6EuyVM+45lrLWen8Kqf94gWXS1WDf1qU="; 19 }; 20 21 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/social-auth-core/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "social-auth-core"; 22 - version = "4.5.1"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; ··· 28 owner = "python-social-auth"; 29 repo = "social-core"; 30 rev = "refs/tags/${version}"; 31 - hash = "sha256-yji10s3oHwUcKUs1njctkkmODyQRgiQDSRqolJFTifw="; 32 }; 33 34 nativeBuildInputs = [
··· 19 20 buildPythonPackage rec { 21 pname = "social-auth-core"; 22 + version = "4.5.2"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; ··· 28 owner = "python-social-auth"; 29 repo = "social-core"; 30 rev = "refs/tags/${version}"; 31 + hash = "sha256-4oUSGTDNJc+qZRYiexRUaz8IOaZRXlwqswfPiEzTuR4="; 32 }; 33 34 nativeBuildInputs = [
+3 -5
pkgs/development/python-modules/unearth/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "unearth"; 18 - version = "0.12.1"; 19 format = "pyproject"; 20 21 - disabled = pythonOlder "3.7"; 22 23 src = fetchPypi { 24 inherit pname version; 25 - hash = "sha256-TKrZQbYPUeUP3BCYZiNNQHkQrvd/EjOqG2tdFox0J+4="; 26 }; 27 28 nativeBuildInputs = [ ··· 32 propagatedBuildInputs = [ 33 packaging 34 requests 35 - ] ++ lib.optionals (pythonOlder "3.8") [ 36 - cached-property 37 ]; 38 39 __darwinAllowLocalNetworking = true;
··· 15 16 buildPythonPackage rec { 17 pname = "unearth"; 18 + version = "0.14.0"; 19 format = "pyproject"; 20 21 + disabled = pythonOlder "3.8"; 22 23 src = fetchPypi { 24 inherit pname version; 25 + hash = "sha256-883fuUrA+GX7z5ZCMVVu9xgwEDecALASBVF6UMeKGG0="; 26 }; 27 28 nativeBuildInputs = [ ··· 32 propagatedBuildInputs = [ 33 packaging 34 requests 35 ]; 36 37 __darwinAllowLocalNetworking = true;
+2 -2
pkgs/development/python-modules/vncdo/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "vncdo"; 16 - version = "1.1.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "sibson"; 23 repo = "vncdotool"; 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-m8msWa8uUuDEjEUlXHCgYi0HFPKXLVXpXLyuQ3quNbA="; 26 }; 27 28 nativeBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "vncdo"; 16 + version = "1.2.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "sibson"; 23 repo = "vncdotool"; 24 rev = "refs/tags/v${version}"; 25 + hash = "sha256-QrD6z/g85FwaZCJ1PRn8CBKCOQcbVjQ9g0NpPIxguqk="; 26 }; 27 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/ytmusicapi/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "ytmusicapi"; 12 - version = "1.5.1"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.8"; ··· 18 owner = "sigma67"; 19 repo = "ytmusicapi"; 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-9HpGmilaV5AhzN90/KLFpJjOZJMKS8SjuSE8cXLcBNA="; 22 }; 23 24 nativeBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "ytmusicapi"; 12 + version = "1.5.2"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.8"; ··· 18 owner = "sigma67"; 19 repo = "ytmusicapi"; 20 rev = "refs/tags/${version}"; 21 + hash = "sha256-3dJ9Mu1cblBJh3BVEyxdfO+RD8kSxpdvnvox7ljMWT4="; 22 }; 23 24 nativeBuildInputs = [
+2 -2
pkgs/development/tools/analysis/checkstyle/default.nix
··· 1 { lib, stdenvNoCC, fetchurl, makeBinaryWrapper, jre }: 2 3 stdenvNoCC.mkDerivation rec { 4 - version = "10.12.6"; 5 pname = "checkstyle"; 6 7 src = fetchurl { 8 url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; 9 - sha256 = "sha256-4oxCnop4ImJs9ltDWso83EsDGeu9WrETEkQzMft5V58="; 10 }; 11 12 nativeBuildInputs = [ makeBinaryWrapper ];
··· 1 { lib, stdenvNoCC, fetchurl, makeBinaryWrapper, jre }: 2 3 stdenvNoCC.mkDerivation rec { 4 + version = "10.13.0"; 5 pname = "checkstyle"; 6 7 src = fetchurl { 8 url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; 9 + sha256 = "sha256-VhEMyn20ubXbsDMHnNS4/E2Aeeyby3U3OV29/uXEQw4="; 10 }; 11 12 nativeBuildInputs = [ makeBinaryWrapper ];
+3 -3
pkgs/development/tools/analysis/stylelint/default.nix
··· 2 3 buildNpmPackage rec { 4 pname = "stylelint"; 5 - version = "16.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "stylelint"; 9 repo = "stylelint"; 10 rev = version; 11 - hash = "sha256-r6FSPMOvx0SI8u2qqk/ALmlSMCcCb3JlAHEawdGoERw="; 12 }; 13 14 - npmDepsHash = "sha256-SHZ7nB4//8IAc8ApmmHbeWi954Za6Ryv+bYuHnZ3Ef0="; 15 16 dontNpmBuild = true; 17
··· 2 3 buildNpmPackage rec { 4 pname = "stylelint"; 5 + version = "16.2.1"; 6 7 src = fetchFromGitHub { 8 owner = "stylelint"; 9 repo = "stylelint"; 10 rev = version; 11 + hash = "sha256-ncJ5oCXe23+an2nFOafMEypFUkwRVW3hZf5pWCKkBNE="; 12 }; 13 14 + npmDepsHash = "sha256-0+jrfXoM6yqkd43lot3JPB+HBTz3XXzqAulGketRsxU="; 15 16 dontNpmBuild = true; 17
+2 -2
pkgs/development/tools/build-managers/conan/default.nix
··· 10 11 python3.pkgs.buildPythonApplication rec { 12 pname = "conan"; 13 - version = "2.0.14"; 14 format = "setuptools"; 15 16 src = fetchFromGitHub { 17 owner = "conan-io"; 18 repo = "conan"; 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-zPN6OlEWYc/OvUb7LHF1/mZYrieG8n2bLcZ/IzwlvtE="; 21 }; 22 23 nativeBuildInputs = with python3.pkgs; [
··· 10 11 python3.pkgs.buildPythonApplication rec { 12 pname = "conan"; 13 + version = "2.0.17"; 14 format = "setuptools"; 15 16 src = fetchFromGitHub { 17 owner = "conan-io"; 18 repo = "conan"; 19 rev = "refs/tags/${version}"; 20 + hash = "sha256-liCeGe0WBW+tOjW81cqrFUiOEWYhlqsBVgns6SxjPNM="; 21 }; 22 23 nativeBuildInputs = with python3.pkgs; [
+3 -3
pkgs/development/tools/container2wasm/default.nix
··· 5 6 buildGoModule rec { 7 pname = "container2wasm"; 8 - version = "0.5.3"; 9 10 src = fetchFromGitHub { 11 owner = "ktock"; 12 repo = "container2wasm"; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-ttRl7buVi0bei3zqq1smzLOEdsgtaFdS/S9VIcMgF8w="; 15 }; 16 17 - vendorHash = "sha256-m2KBO14vwSgYkw2aE2AIbkk91dzb83B9n3QSx4YGiME="; 18 19 ldflags = [ 20 "-s"
··· 5 6 buildGoModule rec { 7 pname = "container2wasm"; 8 + version = "0.6.2"; 9 10 src = fetchFromGitHub { 11 owner = "ktock"; 12 repo = "container2wasm"; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-Vsy3K9gLWgfKK7aszpSX4JbiNSL6ao9vbQUgIxkVr2M="; 15 }; 16 17 + vendorHash = "sha256-xVHBL0bWXisXoRdGb4638+m9mxZZivkoo1U5rr6jG/0="; 18 19 ldflags = [ 20 "-s"
+2 -2
pkgs/development/tools/database/litecli/default.nix
··· 5 6 python3Packages.buildPythonApplication rec { 7 pname = "litecli"; 8 - version = "1.9.0"; 9 disabled = python3Packages.pythonOlder "3.4"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "sha256-Ia8s+gg91N8ePMqiohFxKbXxchJ1b1luoJDilndsJ6E="; 14 }; 15 16 propagatedBuildInputs = with python3Packages; [
··· 5 6 python3Packages.buildPythonApplication rec { 7 pname = "litecli"; 8 + version = "1.10.0"; 9 disabled = python3Packages.pythonOlder "3.4"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-7p4qk9GTpVXA5mHtCDlDpvkyqcjowme2ibRp+ax6Pgw="; 14 }; 15 16 propagatedBuildInputs = with python3Packages; [
+2 -2
pkgs/development/tools/database/sqlcl/default.nix
··· 2 3 stdenv.mkDerivation (finalAttrs: { 4 pname = "sqlcl"; 5 - version = "23.3.0.270.1251"; 6 7 src = fetchurl { 8 url = "https://download.oracle.com/otn_software/java/sqldeveloper/sqlcl-${finalAttrs.version}.zip"; 9 - hash = "sha256-TkQkMtCTKUdfVx9sfAJVJP4nAaQmG4SDcduwaFfAEGs="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper unzip ];
··· 2 3 stdenv.mkDerivation (finalAttrs: { 4 pname = "sqlcl"; 5 + version = "23.4.0.023.2321"; 6 7 src = fetchurl { 8 url = "https://download.oracle.com/otn_software/java/sqldeveloper/sqlcl-${finalAttrs.version}.zip"; 9 + hash = "sha256-8K2yuLYMJI9fFeDcHpWHYmIxZGC06/heYBEW1z2tGc4="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper unzip ];
+3 -3
pkgs/development/tools/devbox/default.nix
··· 5 }: 6 buildGoModule rec { 7 pname = "devbox"; 8 - version = "0.8.5"; 9 10 src = fetchFromGitHub { 11 owner = "jetpack-io"; 12 repo = pname; 13 rev = version; 14 - hash = "sha256-Vgke4CTVU5KW7iDyzk6P1ab5nOyICblvJtUQTISc2jg="; 15 }; 16 17 ldflags = [ ··· 23 # integration tests want file system access 24 doCheck = false; 25 26 - vendorHash = "sha256-rP3vktCfmUeZhc0DaU2osVryNabsnaWWyfFYFy7W1pc="; 27 28 nativeBuildInputs = [ installShellFiles ]; 29
··· 5 }: 6 buildGoModule rec { 7 pname = "devbox"; 8 + version = "0.9.0"; 9 10 src = fetchFromGitHub { 11 owner = "jetpack-io"; 12 repo = pname; 13 rev = version; 14 + hash = "sha256-cM4PiNbfE2sEQHzklBgsJdN/iVK0nT9iZ1F/Cb5tLtM="; 15 }; 16 17 ldflags = [ ··· 23 # integration tests want file system access 24 doCheck = false; 25 26 + vendorHash = "sha256-8G1JX4vdpDAicx6A9Butl8XTjszlHMbh34pJVQyzEs4="; 27 28 nativeBuildInputs = [ installShellFiles ]; 29
+7
pkgs/development/tools/devpi-server/default.nix
··· 20 , strictyaml 21 , waitress 22 , webtest 23 }: 24 25 ··· 64 setuptools 65 strictyaml 66 waitress 67 ] ++ passlib.optional-dependencies.argon2; 68 69 nativeCheckInputs = [ ··· 102 pythonImportsCheck = [ 103 "devpi_server" 104 ]; 105 106 meta = with lib;{ 107 homepage = "http://doc.devpi.net";
··· 20 , strictyaml 21 , waitress 22 , webtest 23 + , testers 24 + , devpi-server 25 }: 26 27 ··· 66 setuptools 67 strictyaml 68 waitress 69 + py 70 ] ++ passlib.optional-dependencies.argon2; 71 72 nativeCheckInputs = [ ··· 105 pythonImportsCheck = [ 106 "devpi_server" 107 ]; 108 + 109 + passthru.tests.version = testers.testVersion { 110 + package = devpi-server; 111 + }; 112 113 meta = with lib;{ 114 homepage = "http://doc.devpi.net";
+2 -2
pkgs/development/tools/doctl/default.nix
··· 2 3 buildGoModule rec { 4 pname = "doctl"; 5 - version = "1.102.0"; 6 7 vendorHash = null; 8 ··· 31 owner = "digitalocean"; 32 repo = "doctl"; 33 rev = "v${version}"; 34 - sha256 = "sha256-TCIdrdCXFaJetP4GgrIn7vy4frMzCTmUsWPVN5pUTD4="; 35 }; 36 37 meta = with lib; {
··· 2 3 buildGoModule rec { 4 pname = "doctl"; 5 + version = "1.104.0"; 6 7 vendorHash = null; 8 ··· 31 owner = "digitalocean"; 32 repo = "doctl"; 33 rev = "v${version}"; 34 + sha256 = "sha256-Ww2tQi6ldRP142AIhLpwWNH4l9DCvUrMSZXCzPrxkxg="; 35 }; 36 37 meta = with lib; {
+2 -2
pkgs/development/tools/eliot-tree/default.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "eliot-tree"; 5 - version = "19.0.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "18gvijsm0vh3x83mv8dd80c3mpm80r7i111qsg4y7rj4i590phma"; 10 }; 11 12 nativeCheckInputs = with python3Packages; [
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "eliot-tree"; 5 + version = "21.0.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-hTl+r+QJPPQ7ss73lty3Wm7DLy2SKGmmgIuJx38ilO8="; 10 }; 11 12 nativeCheckInputs = with python3Packages; [
+3 -3
pkgs/development/tools/firebase-tools/default.nix
··· 8 9 buildNpmPackage rec { 10 pname = "firebase-tools"; 11 - version = "13.0.3"; 12 13 src = fetchFromGitHub { 14 owner = "firebase"; 15 repo = "firebase-tools"; 16 rev = "v${version}"; 17 - hash = "sha256-kq7ZrTh6cbrVCEW2/APtcdLqn9hCKXIxZmGgvgpfG4U="; 18 }; 19 20 - npmDepsHash = "sha256-VR+fpykY38JekzcBCK99qmiM3veuZ85BtGGTNf7TW5o="; 21 22 postPatch = '' 23 ln -s npm-shrinkwrap.json package-lock.json
··· 8 9 buildNpmPackage rec { 10 pname = "firebase-tools"; 11 + version = "13.1.0"; 12 13 src = fetchFromGitHub { 14 owner = "firebase"; 15 repo = "firebase-tools"; 16 rev = "v${version}"; 17 + hash = "sha256-S8biY6aOCvz//SLdqFkPLCfQn9CtrVxKgp9A/Z2vRHo="; 18 }; 19 20 + npmDepsHash = "sha256-SoRtQyGhKgaS1TK7ZmuIbNESQByQVJZkBUbvITiLF5w="; 21 22 postPatch = '' 23 ln -s npm-shrinkwrap.json package-lock.json
+3 -3
pkgs/development/tools/fission/default.nix
··· 2 3 buildGoModule rec { 4 pname = "fission"; 5 - version = "1.20.0"; 6 7 src = fetchFromGitHub { 8 owner = "fission"; 9 repo = "fission"; 10 rev = "v${version}"; 11 - hash = "sha256-6g0qJPH4NiA+8VhjvqamVfmb4LdofJ75GOMl/IFN5V4="; 12 }; 13 14 - vendorHash = "sha256-MzMLatTGEnCgTlj6WYBRLbi6D5eSbA4CvqIXVbcvLCM="; 15 16 ldflags = [ "-s" "-w" "-X info.Version=${version}" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "fission"; 5 + version = "1.20.1"; 6 7 src = fetchFromGitHub { 8 owner = "fission"; 9 repo = "fission"; 10 rev = "v${version}"; 11 + hash = "sha256-RT4hBr7qxhhJM1REJFIE9En1Vu3ACvXav242PBYz8IQ="; 12 }; 13 14 + vendorHash = "sha256-hZmQxG4cw1Len3ZyGhWVTXB8N9fDRkgNDyF18/8dKuo="; 15 16 ldflags = [ "-s" "-w" "-X info.Version=${version}" ]; 17
+3 -3
pkgs/development/tools/goa/default.nix
··· 5 6 buildGoModule rec { 7 pname = "goa"; 8 - version = "3.14.4"; 9 10 src = fetchFromGitHub { 11 owner = "goadesign"; 12 repo = "goa"; 13 rev = "v${version}"; 14 - hash = "sha256-BwXO03q/vG6DWon0jhGNYckF8DHzaN9RtrX452VC6ls="; 15 }; 16 - vendorHash = "sha256-z4oXiGEcXKZTS57p/3gHhCCUDKh/imNu2n5e6+6BjKg="; 17 18 subPackages = [ "cmd/goa" ]; 19
··· 5 6 buildGoModule rec { 7 pname = "goa"; 8 + version = "3.14.6"; 9 10 src = fetchFromGitHub { 11 owner = "goadesign"; 12 repo = "goa"; 13 rev = "v${version}"; 14 + hash = "sha256-u26k4jKT68AMb9pQf/5FCuX+yGpcuGJ6uOIqXfWbg2o="; 15 }; 16 + vendorHash = "sha256-PcPYsTjWt4N27ahHCdx+ZylujmuX/hopN9o7vKUAA5w="; 17 18 subPackages = [ "cmd/goa" ]; 19
+20 -1
pkgs/development/tools/grpc-gateway/default.nix
··· 1 - { buildGoModule, fetchFromGitHub, lib }: 2 3 buildGoModule rec { 4 pname = "grpc-gateway"; ··· 12 }; 13 14 vendorHash = "sha256-no7kZGpf/VOuceC3J+izGFQp5aMS3b+Rn+x4BFZ2zgs="; 15 16 meta = with lib; { 17 description =
··· 1 + { buildGoModule, fetchFromGitHub, lib, testers, grpc-gateway }: 2 3 buildGoModule rec { 4 pname = "grpc-gateway"; ··· 12 }; 13 14 vendorHash = "sha256-no7kZGpf/VOuceC3J+izGFQp5aMS3b+Rn+x4BFZ2zgs="; 15 + 16 + ldflags = [ 17 + "-X=main.version=${version}" 18 + "-X=main.date=1970-01-01T00:00:00Z" 19 + "-X=main.commit=unknown" 20 + ]; 21 + 22 + passthru.tests = { 23 + version = testers.testVersion { 24 + package = grpc-gateway; 25 + command = "protoc-gen-grpc-gateway --version"; 26 + version = "Version ${version}, commit unknown, built at 1970-01-01T00:00:00Z"; 27 + }; 28 + openapiv2Version = testers.testVersion { 29 + package = grpc-gateway; 30 + command = "protoc-gen-openapiv2 --version"; 31 + version = "Version ${version}, commit unknown, built at 1970-01-01T00:00:00Z"; 32 + }; 33 + }; 34 35 meta = with lib; { 36 description =
+2 -2
pkgs/development/tools/mbed-cli/default.nix
··· 4 5 buildPythonApplication rec { 6 pname = "mbed-cli"; 7 - version = "1.9.1"; 8 9 src = fetchPypi { 10 inherit pname version; 11 - sha256 = "1228plh55id03qywsw0ai88ypdpbh9iz18jfcyhn21pci7mj77fv"; 12 }; 13 14 nativeCheckInputs = [
··· 4 5 buildPythonApplication rec { 6 pname = "mbed-cli"; 7 + version = "1.10.5"; 8 9 src = fetchPypi { 10 inherit pname version; 11 + sha256 = "sha256-X+hNVM8fsy0VFTqFr1pPKWRimacBenTcY4y+PBJpvlI="; 12 }; 13 14 nativeCheckInputs = [
+3 -3
pkgs/development/tools/melange/default.nix
··· 6 7 buildGoModule rec { 8 pname = "melange"; 9 - version = "0.5.5"; 10 11 src = fetchFromGitHub { 12 owner = "chainguard-dev"; 13 repo = pname; 14 rev = "v${version}"; 15 - hash = "sha256-Dzw49SCdZUtSZoh0I7d1qfqg4JCbl4VEtYUeHIw8Xng="; 16 # populate values that require us to use git. By doing this in postFetch we 17 # can delete .git afterwards and maintain better reproducibility of the src. 18 leaveDotGit = true; ··· 25 ''; 26 }; 27 28 - vendorHash = "sha256-YzKkmz/4KxP/pcdMrhhS7Owu6Nor8VZ3RFqdCsi7pRc="; 29 30 subPackages = [ "." ]; 31
··· 6 7 buildGoModule rec { 8 pname = "melange"; 9 + version = "0.5.6"; 10 11 src = fetchFromGitHub { 12 owner = "chainguard-dev"; 13 repo = pname; 14 rev = "v${version}"; 15 + hash = "sha256-/oQDtUL3gjm4BsUbx7p3AmM7hcrd8Ui5Dih0DFAl5rs="; 16 # populate values that require us to use git. By doing this in postFetch we 17 # can delete .git afterwards and maintain better reproducibility of the src. 18 leaveDotGit = true; ··· 25 ''; 26 }; 27 28 + vendorHash = "sha256-qQm/a7pE7mwqvYFFUceqElV+Qg1G39/z048wxYrV7E4="; 29 30 subPackages = [ "." ]; 31
+16 -16
pkgs/development/tools/misc/blackfire/php-probe.nix
··· 14 let 15 phpMajor = lib.versions.majorMinor php.version; 16 17 - version = "1.92.8"; 18 19 hashes = { 20 "x86_64-linux" = { 21 system = "amd64"; 22 hash = { 23 - "8.1" = "sha256-zN39X2hd++Z5cj9JN3Athiq9j12i7/Q5QCnohw8PVDk="; 24 - "8.2" = "sha256-ZgzegspY+aXQDLfRvDBDm+FtY4VzM/OWJG0ZSr4OAag="; 25 - "8.3" = "sha256-o0ARDtcn5m6z+Ll+QT1JOR1jH2wJNNz1URV9BePViTU="; 26 }; 27 }; 28 "i686-linux" = { 29 system = "i386"; 30 hash = { 31 - "8.1" = "sha256-8Qr1H9lgf8FxBLPTbxueSqi1S5y3HC3kzRQupfQkTew="; 32 - "8.2" = "sha256-exrpoA74Ikr3YWcUIB8ZTCkKnJ7YeK4yZ6oDfpcQ3Sg="; 33 - "8.3" = "sha256-7JirGgtQj8+mtyhEJOiM480bQ+98tv59r4LbMX6/X9Q="; 34 }; 35 }; 36 "aarch64-linux" = { 37 system = "arm64"; 38 hash = { 39 - "8.1" = "sha256-ubNi2WxOuZ10OZhVzroIjfpBxg1gC1s9Nddj+U4fx5M="; 40 - "8.2" = "sha256-iUTCgJxmMtuNiT6+TqCqgKIVXF0THQgycxLiDUYdaeo="; 41 - "8.3" = "sha256-EwVe/hlengd+87w9xpA+pWGu8iXQh5Ldr4tZVgGps2M="; 42 }; 43 }; 44 "aarch64-darwin" = { 45 system = "arm64"; 46 hash = { 47 - "8.1" = "sha256-bSPOUxQpTIsC2pZ95kLvrWJVVUb1bf51ety26miyxy8="; 48 - "8.2" = "sha256-lncGFHCENSoVMGvKgsE5yBhThsfZ2xdIVDoVgECDV+w="; 49 - "8.3" = "sha256-6hVAlaN48OLrGEsoqBo+JdNV+NxWpmLwAdv9ymaWkHY="; 50 }; 51 }; 52 "x86_64-darwin" = { 53 system = "amd64"; 54 hash = { 55 - "8.1" = "sha256-aRLxX2FULffZHUNYyrpypLN+XINC+NTaRMIulh61M1o="; 56 - "8.2" = "sha256-Ma9EgcoM4x3iK8ygcEte/Wtip+/Z4Prs2CvITxGoaLM="; 57 - "8.3" = "sha256-6vPcc5ogaQs7Z/o4jMR0VX2r5Mq1vpxdf0hvMrQGxZE="; 58 }; 59 }; 60 };
··· 14 let 15 phpMajor = lib.versions.majorMinor php.version; 16 17 + version = "1.92.9"; 18 19 hashes = { 20 "x86_64-linux" = { 21 system = "amd64"; 22 hash = { 23 + "8.1" = "sha256-pvJHzqhpKdLyWexqCdynOXIoIkb6WPFogQzzdGSl0Go="; 24 + "8.2" = "sha256-M2ihNS2IK0tO+lXXSrJZLguRzyrV8q/45gmK0pfxjuo="; 25 + "8.3" = "sha256-v4vt0GkM8pbZ+zJrNqu+h1TM680RpnCQwNDyFFD/vuE="; 26 }; 27 }; 28 "i686-linux" = { 29 system = "i386"; 30 hash = { 31 + "8.1" = "sha256-+IrL8OGjny+FPLNNj0N0oJGSuUA9nZFBkalW6qbBtbI="; 32 + "8.2" = "sha256-z5oFFh+0spuku+nZf9ICL17upLHoA2k6StAmVpKIxyw="; 33 + "8.3" = "sha256-1maDNZb92ptbbiIUZxwEBNk6oQPf6f2LVHvsXrpmdQ8="; 34 }; 35 }; 36 "aarch64-linux" = { 37 system = "arm64"; 38 hash = { 39 + "8.1" = "sha256-apIHM85SDtdrNy2zkgue4nLS+IYg0aqO67tjt3iPMvQ="; 40 + "8.2" = "sha256-vafJYIXksjQXNOufSNsRCBOkhh9Da1sp0X1JJtH0wNM="; 41 + "8.3" = "sha256-JTfFszym+zq4U2V1HOkGB41OR/mt7GotHo1HThjLEV0="; 42 }; 43 }; 44 "aarch64-darwin" = { 45 system = "arm64"; 46 hash = { 47 + "8.1" = "sha256-zj4oSpW2ubEdk5n8FjQF4oOWcjMd5V1G5ul8kHj/fyU="; 48 + "8.2" = "sha256-aedyASZs4Sy0CEX9Y5qjJnzzcvUdO9eYg9nZXrOcVnI="; 49 + "8.3" = "sha256-Sla+W+dz2foTnF3ys4MIcnP0FnSjiyWHfsMW0+Vhkpw="; 50 }; 51 }; 52 "x86_64-darwin" = { 53 system = "amd64"; 54 hash = { 55 + "8.1" = "sha256-YorZctBEUgPHnoXtcf8xkn6DfhM1BZnBNpfi5o7y0AM="; 56 + "8.2" = "sha256-5zmwJu1Ux5vebFeu1WMHRCKalB/qgm3/G74OPrd7nhc="; 57 + "8.3" = "sha256-vm2VK3jPR25ICxiKMqzh9DyzG9EVJ/rX3i7LQMox3gs="; 58 }; 59 }; 60 };
+1
pkgs/development/tools/misc/d-spy/default.nix
··· 43 passthru = { 44 updateScript = gnome.updateScript { 45 packageName = "d-spy"; 46 }; 47 }; 48
··· 43 passthru = { 44 updateScript = gnome.updateScript { 45 packageName = "d-spy"; 46 + versionPolicy = "odd-unstable"; 47 }; 48 }; 49
+2 -2
pkgs/development/tools/misc/usbsdmux/default.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "usbsdmux"; 5 - version = "24.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "sha256-Qt60QKRadFoPiHjmpx9tmid4K+6ixCN7JD7JHcT5MDE="; 10 }; 11 12 # usbsdmux is not meant to be used as an importable module and has no tests
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "usbsdmux"; 5 + version = "24.1.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-OtGgToDGUr6pBu9+LS/DxaYw/9+Pd6jPhxVDAM22HB4="; 10 }; 11 12 # usbsdmux is not meant to be used as an importable module and has no tests
+2 -2
pkgs/development/tools/omniorb/default.nix
··· 8 stdenv.mkDerivation rec { 9 10 pname = "omniorb"; 11 - version = "4.3.1"; 12 13 src = fetchurl { 14 url = "mirror://sourceforge/project/omniorb/omniORB/omniORB-${version}/omniORB-${version}.tar.bz2"; 15 - hash = "sha256-D0K8Prc3yuaA2vqFs645WOn1ajeRLF+2uHWTP4+3OQ0="; 16 }; 17 18 nativeBuildInputs = [ pkg-config ];
··· 8 stdenv.mkDerivation rec { 9 10 pname = "omniorb"; 11 + version = "4.3.2"; 12 13 src = fetchurl { 14 url = "mirror://sourceforge/project/omniorb/omniORB/omniORB-${version}/omniORB-${version}.tar.bz2"; 15 + hash = "sha256-HHRTMNAZBK/Xoe0KWJa5puU6waS4ZKSFA7k8fuy/H6g="; 16 }; 17 18 nativeBuildInputs = [ pkg-config ];
+3 -3
pkgs/development/tools/rbspy/default.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "rbspy"; 12 - version = "0.18.1"; 13 14 src = fetchFromGitHub { 15 owner = "rbspy"; 16 repo = "rbspy"; 17 rev = "refs/tags/v${version}"; 18 - hash = "sha256-MfXXqty5ZE7wFbc/qJB/FnMxM+Hzfa4GEGgGKwurXp8="; 19 }; 20 21 - cargoHash = "sha256-gs9m3hUH75T8kGfKRpPLc1CR1n2Jc+uZKE1SZi25VFA="; 22 23 # error: linker `aarch64-linux-gnu-gcc` not found 24 postPatch = ''
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "rbspy"; 12 + version = "0.19.0"; 13 14 src = fetchFromGitHub { 15 owner = "rbspy"; 16 repo = "rbspy"; 17 rev = "refs/tags/v${version}"; 18 + hash = "sha256-OO0EX+r7W8HxPjbER+84m+nagPBM6GlCdB30VQV58mQ="; 19 }; 20 21 + cargoHash = "sha256-yywh/O4odm+VmM0k/Ft0DEihq6r+xehrpjbYryvVStw="; 22 23 # error: linker `aarch64-linux-gnu-gcc` not found 24 postPatch = ''
+3 -3
pkgs/development/tools/rust/cargo-udeps/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-udeps"; 5 - version = "0.1.43"; 6 7 src = fetchFromGitHub { 8 owner = "est31"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-aZzkVyRWxpSB0lPD7A8kbZc93h43OyPn0Pk9tCIZRnA="; 12 }; 13 14 - cargoHash = "sha256-kQ1NQDvOBU8mmQQgNR4l1bBN0nr/ZSudJkL7Gf9hpgU="; 15 16 nativeBuildInputs = [ pkg-config ]; 17
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-udeps"; 5 + version = "0.1.45"; 6 7 src = fetchFromGitHub { 8 owner = "est31"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-pfEvztV/DAPPOxm8An/PsBdoF8S/AK+/S+vllezYCeo="; 12 }; 13 14 + cargoHash = "sha256-SYlFENdnMeKxeDDHw73/edu1807rgrg8ncWTBsmgPtY="; 15 16 nativeBuildInputs = [ pkg-config ]; 17
+2 -2
pkgs/development/tools/schemacrawler/default.nix
··· 7 8 stdenv.mkDerivation (finalAttrs: { 9 pname = "schemacrawler"; 10 - version = "16.20.8"; 11 12 src = fetchzip { 13 url = "https://github.com/schemacrawler/SchemaCrawler/releases/download/v${finalAttrs.version}/schemacrawler-${finalAttrs.version}-bin.zip"; 14 - hash = "sha256-uNk85AqdctxelImyx06yCsY15AxMFEEclOyao6Hu89A="; 15 }; 16 17 nativeBuildInputs = [ makeWrapper ];
··· 7 8 stdenv.mkDerivation (finalAttrs: { 9 pname = "schemacrawler"; 10 + version = "16.21.1"; 11 12 src = fetchzip { 13 url = "https://github.com/schemacrawler/SchemaCrawler/releases/download/v${finalAttrs.version}/schemacrawler-${finalAttrs.version}-bin.zip"; 14 + hash = "sha256-9tZGSWOUpQAAOQAbYxx0w734EKq2BdSYyIR4zmor4+Y="; 15 }; 16 17 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/development/tools/spring-boot-cli/default.nix
··· 2 3 stdenv.mkDerivation (finalAttrs: { 4 pname = "spring-boot-cli"; 5 - version = "3.2.1"; 6 7 src = fetchzip { 8 url = "mirror://maven/org/springframework/boot/${finalAttrs.pname}/${finalAttrs.version}/${finalAttrs.pname}-${finalAttrs.version}-bin.zip"; 9 - hash = "sha256-hZexasMid9yZqTyX7LouTg44rG7WO/KU+CmAtSdpc2Q="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper installShellFiles ];
··· 2 3 stdenv.mkDerivation (finalAttrs: { 4 pname = "spring-boot-cli"; 5 + version = "3.2.2"; 6 7 src = fetchzip { 8 url = "mirror://maven/org/springframework/boot/${finalAttrs.pname}/${finalAttrs.version}/${finalAttrs.pname}-${finalAttrs.version}-bin.zip"; 9 + hash = "sha256-Jlczhy4Nfquhrm+SO/MRfBsHrHRHDkU4TUTTPTH7aVk="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper installShellFiles ];
+3 -3
pkgs/development/tools/subxt/default.nix
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "subxt"; 11 - version = "0.33.0"; 12 13 src = fetchFromGitHub { 14 owner = "paritytech"; 15 repo = "subxt"; 16 rev = "v${version}"; 17 - hash = "sha256-ZTBWGNbCwe6GyGXk/8QBGLiAp4ZO7VZuJvtZicJsvgA="; 18 }; 19 20 - cargoHash = "sha256-FBtwmItzT5uFsKCx36POrYk5qDmlX9Nkx0E3hx17HqI="; 21 22 # Only build the command line client 23 cargoBuildFlags = [ "--bin" "subxt" ];
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "subxt"; 11 + version = "0.34.0"; 12 13 src = fetchFromGitHub { 14 owner = "paritytech"; 15 repo = "subxt"; 16 rev = "v${version}"; 17 + hash = "sha256-1SkAYJ6YdZeaD3c1pekd/nwTEI9Zt/2fmA3Y7PPLxoE="; 18 }; 19 20 + cargoHash = "sha256-a3LPvPCQklmrtC9XpxARgYeL4bmj2vFsLbiRGjNUGio="; 21 22 # Only build the command line client 23 cargoBuildFlags = [ "--bin" "subxt" ];
+3 -3
pkgs/development/tools/trunk/default.nix
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "trunk"; 15 - version = "0.18.3"; 16 17 src = fetchFromGitHub { 18 owner = "thedodd"; 19 repo = "trunk"; 20 rev = "v${version}"; 21 - hash = "sha256-R7i2tY8wd7Jhyx+zs+OqkZ+K+d/triBRqaAsATtCM+o="; 22 }; 23 24 nativeBuildInputs = [ pkg-config ]; ··· 28 # requires network 29 checkFlags = [ "--skip=tools::tests::download_and_install_binaries" ]; 30 31 - cargoHash = "sha256-70fzBqF/6bDStvhpc7IV4ekVEinBFqiCScK4X0HTkgY="; 32 33 # the dependency css-minify contains both README.md and Readme.md, 34 # which causes a hash mismatch on systems with a case-insensitive filesystem
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "trunk"; 15 + version = "0.18.7"; 16 17 src = fetchFromGitHub { 18 owner = "thedodd"; 19 repo = "trunk"; 20 rev = "v${version}"; 21 + hash = "sha256-TNF1J/hQ/b89Qo5gkYkYNZ9EQ/21n2YD0fA8cLQic5g="; 22 }; 23 24 nativeBuildInputs = [ pkg-config ]; ··· 28 # requires network 29 checkFlags = [ "--skip=tools::tests::download_and_install_binaries" ]; 30 31 + cargoHash = "sha256-kqOaqhxBWcduu3Y1ShI7wko10dubJOs3W4FRZMaRNkc="; 32 33 # the dependency css-minify contains both README.md and Readme.md, 34 # which causes a hash mismatch on systems with a case-insensitive filesystem
+2 -2
pkgs/development/tools/vendir/default.nix
··· 2 3 buildGoModule rec { 4 pname = "vendir"; 5 - version = "0.38.0"; 6 7 src = fetchFromGitHub { 8 owner = "vmware-tanzu"; 9 repo = "carvel-vendir"; 10 rev = "v${version}"; 11 - sha256 = "sha256-H5SeDZzl2KdVp3KsRpsmp6/ZOxLq+3y9Coe1NIEi5YQ="; 12 }; 13 14 vendorHash = null;
··· 2 3 buildGoModule rec { 4 pname = "vendir"; 5 + version = "0.39.0"; 6 7 src = fetchFromGitHub { 8 owner = "vmware-tanzu"; 9 repo = "carvel-vendir"; 10 rev = "v${version}"; 11 + sha256 = "sha256-m8dxYq3RcfWFBxja2E3MUqYAl1CYpkrBWPeMIC/7Sgg="; 12 }; 13 14 vendorHash = null;
+5 -5
pkgs/development/web/bun/default.nix
··· 12 }: 13 14 stdenvNoCC.mkDerivation rec { 15 - version = "1.0.25"; 16 pname = "bun"; 17 18 src = passthru.sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); ··· 51 sources = { 52 "aarch64-darwin" = fetchurl { 53 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip"; 54 - hash = "sha256-Upgh45aYCNmW1we/+2VsNbJl718HKQNFoAg0zDmHSwA="; 55 }; 56 "aarch64-linux" = fetchurl { 57 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip"; 58 - hash = "sha256-RhHJ3H6tA8te1sk0eMEb5jBHFoAvfBTUWQo6O3ycMCs="; 59 }; 60 "x86_64-darwin" = fetchurl { 61 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip"; 62 - hash = "sha256-TSnZ727ERoglVxJQ/Ve+YkZNezYD1YxwJRw2sC1F0ro="; 63 }; 64 "x86_64-linux" = fetchurl { 65 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip"; 66 - hash = "sha256-vg8YtbhW122EU/oBuMoh5kPVqA6YRbRxrDZWnoJmdYQ="; 67 }; 68 }; 69 updateScript = writeShellScript "update-bun" ''
··· 12 }: 13 14 stdenvNoCC.mkDerivation rec { 15 + version = "1.0.26"; 16 pname = "bun"; 17 18 src = passthru.sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); ··· 51 sources = { 52 "aarch64-darwin" = fetchurl { 53 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip"; 54 + hash = "sha256-UEYA6q83fxD3yQuHsQiO9bQ5gptQSipFGjE5eGUb+1c="; 55 }; 56 "aarch64-linux" = fetchurl { 57 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip"; 58 + hash = "sha256-H+hmbZdRKjljskwNicLeFguo5STZ8fIxk7FHvOenuRc="; 59 }; 60 "x86_64-darwin" = fetchurl { 61 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip"; 62 + hash = "sha256-mlKspcFpeYXJuINYDvCoDEuNHJDMcDqngPNIBpD39T4="; 63 }; 64 "x86_64-linux" = fetchurl { 65 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip"; 66 + hash = "sha256-mWVe8BFGSXKJYnr2QXZah1XYfir5zN5+2wQ4HfgdOyE="; 67 }; 68 }; 69 updateScript = writeShellScript "update-bun" ''
+2 -2
pkgs/games/hyperrogue/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "hyperrogue"; 6 - version = "13.0"; 7 8 src = fetchFromGitHub { 9 owner = "zenorogue"; 10 repo = "hyperrogue"; 11 rev = "v${version}"; 12 - sha256 = "sha256-RYa0YZCHsGiWyfql73+TlIq5WXM+9UULJ1lOS8m6oIw="; 13 }; 14 15 CXXFLAGS = [
··· 3 4 stdenv.mkDerivation rec { 5 pname = "hyperrogue"; 6 + version = "13.0a"; 7 8 src = fetchFromGitHub { 9 owner = "zenorogue"; 10 repo = "hyperrogue"; 11 rev = "v${version}"; 12 + sha256 = "sha256-ebUS5J2NXv6MRoVLg9Ymc5+h9Wn85fKd9N4ohxMxpq4="; 13 }; 14 15 CXXFLAGS = [
+2 -2
pkgs/games/vassal/default.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "VASSAL"; 12 - version = "3.7.6"; 13 14 src = fetchzip { 15 url = "https://github.com/vassalengine/vassal/releases/download/${version}/${pname}-${version}-linux.tar.bz2"; 16 - sha256 = "sha256-t/GlLLokDxpHBO+ub1MOJ1yjK0tB/FSb6lCBMFVn0V8="; 17 }; 18 19 buildInputs = [
··· 9 10 stdenv.mkDerivation rec { 11 pname = "VASSAL"; 12 + version = "3.7.8"; 13 14 src = fetchzip { 15 url = "https://github.com/vassalengine/vassal/releases/download/${version}/${pname}-${version}-linux.tar.bz2"; 16 + sha256 = "sha256-KZIfgCOZbirstKotQhfcNvJdf3wP1L1o9Wt33ddFrfM="; 17 }; 18 19 buildInputs = [
+3 -3
pkgs/misc/drivers/sc-controller/default.nix
··· 8 9 buildPythonApplication rec { 10 pname = "sc-controller"; 11 - version = "0.4.8.11"; 12 13 src = fetchFromGitHub { 14 owner = "Ryochan7"; 15 repo = pname; 16 - rev = "v${version}"; 17 - sha256 = "xu9QqddJf0cXkhNPrOnE+L8CV5AfgcCyk9DSh+G94c0="; 18 }; 19 20 nativeBuildInputs = [ wrapGAppsHook gobject-introspection ];
··· 8 9 buildPythonApplication rec { 10 pname = "sc-controller"; 11 + version = "0.4.8.13"; 12 13 src = fetchFromGitHub { 14 owner = "Ryochan7"; 15 repo = pname; 16 + rev = "refs/tags/v${version}"; 17 + sha256 = "sha256-vK/5S+GyqVfKTqn5PaPmOV/tXE9PIW57gqYxvhGaJSg="; 18 }; 19 20 nativeBuildInputs = [ wrapGAppsHook gobject-introspection ];
+2 -2
pkgs/misc/rivalcfg/default.nix
··· 2 3 python3Packages.buildPythonPackage rec { 4 pname = "rivalcfg"; 5 - version = "4.10.0"; 6 7 src = fetchFromGitHub { 8 owner = "flozz"; 9 repo = "rivalcfg"; 10 rev = "refs/tags/v${version}"; 11 - sha256 = "sha256-8/2jEwEKdBGv31eQKao631siyUDlbtcy0HwP4+OGSok="; 12 }; 13 14 propagatedBuildInputs = with python3Packages; [ hidapi setuptools ];
··· 2 3 python3Packages.buildPythonPackage rec { 4 pname = "rivalcfg"; 5 + version = "4.11.0"; 6 7 src = fetchFromGitHub { 8 owner = "flozz"; 9 repo = "rivalcfg"; 10 rev = "refs/tags/v${version}"; 11 + sha256 = "sha256-6hgGb2BlXbnJ6uHbk8EUqrS/G1y65jTcw0zVCKt5+3k="; 12 }; 13 14 propagatedBuildInputs = with python3Packages; [ hidapi setuptools ];
+2 -2
pkgs/os-specific/darwin/raycast/default.nix
··· 6 7 stdenvNoCC.mkDerivation (finalAttrs: { 8 pname = "raycast"; 9 - version = "1.64.4"; 10 11 src = fetchurl { 12 name = "Raycast.dmg"; 13 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=universal"; 14 - hash = "sha256-ZnDr4kld4hHojkr5qDhtR6LH2mstimX+ImkD6zxk5Oc="; 15 }; 16 17 dontPatch = true;
··· 6 7 stdenvNoCC.mkDerivation (finalAttrs: { 8 pname = "raycast"; 9 + version = "1.66.2"; 10 11 src = fetchurl { 12 name = "Raycast.dmg"; 13 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=universal"; 14 + hash = "sha256-HV3urzJX33dQjzUxtQhVgMaguGk8nqtXJJBXjHwaqC0="; 15 }; 16 17 dontPatch = true;
+2 -2
pkgs/servers/domoticz/default.nix
··· 19 20 stdenv.mkDerivation rec { 21 pname = "domoticz"; 22 - version = "2023.2"; 23 24 src = fetchFromGitHub { 25 owner = "domoticz"; 26 repo = pname; 27 rev = version; 28 - sha256 = "sha256-DxY9rBeRc20wmt4pDdBS16vyoOjCzczuxhOdUX/Lxao="; 29 fetchSubmodules = true; 30 }; 31
··· 19 20 stdenv.mkDerivation rec { 21 pname = "domoticz"; 22 + version = "2024.4"; 23 24 src = fetchFromGitHub { 25 owner = "domoticz"; 26 repo = pname; 27 rev = version; 28 + sha256 = "sha256-bIA7Dx8XV2zT2Cdm4CwKX6xfedBREhevE/bN76o4r78="; 29 fetchSubmodules = true; 30 }; 31
+2 -2
pkgs/servers/heisenbridge/default.nix
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "heisenbridge"; 5 - version = "1.14.5"; 6 7 src = fetchFromGitHub { 8 owner = "hifi"; 9 repo = pname; 10 rev = "refs/tags/v${version}"; 11 - sha256 = "sha256-OmAmgHM+EmJ3mUY4lPBxIv2rAq8j2QEeTUMux7ZBfRE="; 12 }; 13 14 postPatch = ''
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "heisenbridge"; 5 + version = "1.14.6"; 6 7 src = fetchFromGitHub { 8 owner = "hifi"; 9 repo = pname; 10 rev = "refs/tags/v${version}"; 11 + sha256 = "sha256-1ljRwJYdIKWuTRDnH2EcZ6zQp4o4Rx+/9OqjX6J4gDA="; 12 }; 13 14 postPatch = ''
+2 -2
pkgs/servers/honk/default.nix
··· 8 9 buildGoModule rec { 10 pname = "honk"; 11 - version = "1.2.0"; 12 13 src = fetchurl { 14 url = "https://humungus.tedunangst.com/r/honk/d/honk-${version}.tgz"; 15 - hash = "sha256-kcrEg0KBdCaA4g8ivIgOWIGJVDCtY5rI4P7cp/ZyXe4="; 16 }; 17 vendorHash = null; 18
··· 8 9 buildGoModule rec { 10 pname = "honk"; 11 + version = "1.2.1"; 12 13 src = fetchurl { 14 url = "https://humungus.tedunangst.com/r/honk/d/honk-${version}.tgz"; 15 + hash = "sha256-adBbJG45md7wUGzqYKA06RXzXul3Ltncrtz2eN4Ezqo="; 16 }; 17 vendorHash = null; 18
+2 -2
pkgs/servers/knxd/default.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "knxd"; 17 - version = "0.14.59"; 18 19 src = fetchFromGitHub { 20 owner = "knxd"; 21 repo = "knxd"; 22 rev = version; 23 - hash = "sha256-m3119aD23XTViQJ2s7hwnJZ1ct4bcEFWuyUQajmqySQ="; 24 }; 25 26 postPatch = ''
··· 14 15 stdenv.mkDerivation rec { 16 pname = "knxd"; 17 + version = "0.14.60"; 18 19 src = fetchFromGitHub { 20 owner = "knxd"; 21 repo = "knxd"; 22 rev = version; 23 + hash = "sha256-djcp3b0OSnyrNOkvaacjQ3Nw9H54HOfKeBo26tkz/Ew="; 24 }; 25 26 postPatch = ''
+2 -2
pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix
··· 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-mjolnir-antispam"; 5 - version = "1.6.4"; 6 7 src = fetchFromGitHub { 8 owner = "matrix-org"; 9 repo = "mjolnir"; 10 rev = "refs/tags/v${version}"; 11 - sha256 = "sha256-/vnojWLpu/fktqPUhAdL1QTESxDwFrBVYAkyF79Fj9w="; 12 }; 13 14 sourceRoot = "${src.name}/synapse_antispam";
··· 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-mjolnir-antispam"; 5 + version = "1.6.5"; 6 7 src = fetchFromGitHub { 8 owner = "matrix-org"; 9 repo = "mjolnir"; 10 rev = "refs/tags/v${version}"; 11 + sha256 = "sha256-xejFKz2MmdjMFU0X0SdI+qXTBRAwIvkcfZPQqXB9LV0="; 12 }; 13 14 sourceRoot = "${src.name}/synapse_antispam";
+4 -4
pkgs/servers/mautrix-signal/default.nix
··· 6 # which is broken for new devices, see https://github.com/mautrix/signal/issues/388. 7 # The new Go version fixes this by using the official libsignal as a library and 8 # can be upgraded to directly from the Python version. 9 - version = "unstable-2023-12-30"; 10 11 src = fetchFromGitHub { 12 owner = "mautrix"; 13 repo = "signal"; 14 - rev = "6abe80e6c79b31b5dc37a484b65d346a1ffd4f05"; 15 - hash = "sha256-EDSP+kU0EmIaYbAB/hxAUTEay+H5aqn9ovBQFZg6wJk="; 16 }; 17 18 buildInputs = [ ··· 22 libsignal-ffi 23 ]; 24 25 - vendorHash = "sha256-f3sWX+mBouuxVKu+fZIYTWLXT64fllUWpcUYAxjzQpI="; 26 27 doCheck = false; 28
··· 6 # which is broken for new devices, see https://github.com/mautrix/signal/issues/388. 7 # The new Go version fixes this by using the official libsignal as a library and 8 # can be upgraded to directly from the Python version. 9 + version = "unstable-2024-01-31"; 10 11 src = fetchFromGitHub { 12 owner = "mautrix"; 13 repo = "signal"; 14 + rev = "103666990f30a692c63dd84a499b0dd390cef8a4"; 15 + hash = "sha256-UttLMI+jX5PNG02vs7Dty8pxdko2aM0sVB/90eWwmYw="; 16 }; 17 18 buildInputs = [ ··· 22 libsignal-ffi 23 ]; 24 25 + vendorHash = "sha256-LKs/9yCJ7alKQh1VYQsPEg7y+ugZwUnnJh2l4IEjbaQ="; 26 27 doCheck = false; 28
+2 -2
pkgs/servers/metabase/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "metabase"; 5 - version = "0.48.2"; 6 7 src = fetchurl { 8 url = "https://downloads.metabase.com/v${version}/metabase.jar"; 9 - hash = "sha256-KY+/PNpmGgLyk3O55KkYL6Ev1v4G329Wp4GajKSn9zo="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "metabase"; 5 + version = "0.48.4"; 6 7 src = fetchurl { 8 url = "https://downloads.metabase.com/v${version}/metabase.jar"; 9 + hash = "sha256-megPu4HGVdfMzWkJJyse87EBLSi50yXXHfg7WIk3U10="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/servers/monitoring/thanos/default.nix
··· 10 11 buildGoModule rec { 12 pname = "thanos"; 13 - version = "0.33.0"; 14 15 src = fetchFromGitHub { 16 owner = "thanos-io"; 17 repo = "thanos"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-AM4gJmUea8/Rfg7i4yTIK1ie+8MHz0M+ZG2F//wYHNA="; 20 }; 21 22 - vendorHash = "sha256-JLj0HhcT4Hlc/FpYNGasqbfNz4cV12UueCYuXjamxks="; 23 24 doCheck = true; 25
··· 10 11 buildGoModule rec { 12 pname = "thanos"; 13 + version = "0.34.0"; 14 15 src = fetchFromGitHub { 16 owner = "thanos-io"; 17 repo = "thanos"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-mbDjp8GAkFMkQnLd64A/nbYA/EIA4HpY6EshdDV+b1U="; 20 }; 21 22 + vendorHash = "sha256-ZAPaGDt+TnBUEng5EYIBNHN/o+gpaLzAO4kuSjx9S8U="; 23 24 doCheck = true; 25
+3 -2
pkgs/servers/nosql/mongodb/mongodb.nix
··· 97 libpcap 98 yaml-cpp 99 openssl 100 - net-snmp 101 openldap 102 pcre-cpp 103 variants.python 104 sasl 105 snappy 106 zlib 107 - ] ++ lib.optionals stdenv.isDarwin [ Security CoreFoundation cctools ]; 108 109 # MongoDB keeps track of its build parameters, which tricks nix into 110 # keeping dependencies to build inputs in the final output.
··· 97 libpcap 98 yaml-cpp 99 openssl 100 openldap 101 pcre-cpp 102 variants.python 103 sasl 104 snappy 105 zlib 106 + ] ++ lib.optionals stdenv.isDarwin [ Security CoreFoundation cctools ] 107 + ++ lib.optionals stdenv.isLinux [ net-snmp ]; 108 + 109 110 # MongoDB keeps track of its build parameters, which tricks nix into 111 # keeping dependencies to build inputs in the final output.
+8 -6
pkgs/servers/nosql/neo4j/default.nix
··· 1 - { stdenv, lib, fetchurl, nixosTests, makeWrapper, openjdk11, which, gawk }: 2 3 stdenv.mkDerivation rec { 4 pname = "neo4j"; 5 - version = "4.4.11"; 6 7 src = fetchurl { 8 url = "https://neo4j.com/artifact.php?name=neo4j-community-${version}-unix.tar.gz"; 9 - sha256 = "sha256-KIENqsXeSl1bd84tp9fD2kxczxMoi62IW4M8NblhAMg="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ]; ··· 21 chmod +x "$out/share/neo4j/bin/$NEO4J_SCRIPT" 22 makeWrapper "$out/share/neo4j/bin/$NEO4J_SCRIPT" \ 23 "$out/bin/$NEO4J_SCRIPT" \ 24 - --prefix PATH : "${lib.makeBinPath [ openjdk11 which gawk ]}" \ 25 - --set JAVA_HOME "${openjdk11}" 26 done 27 28 patchShebangs $out/share/neo4j/bin/neo4j-admin 29 # user will be asked to change password on first login 30 - $out/bin/neo4j-admin set-initial-password neo4j 31 ''; 32 33 passthru.tests.nixos = nixosTests.neo4j;
··· 1 + { stdenv, lib, fetchurl, nixosTests, makeWrapper, openjdk17, which, gawk }: 2 3 stdenv.mkDerivation rec { 4 pname = "neo4j"; 5 + version = "5.16.0"; 6 7 src = fetchurl { 8 url = "https://neo4j.com/artifact.php?name=neo4j-community-${version}-unix.tar.gz"; 9 + hash = "sha256-XelRjO74bT6HrrUTy5lvbz9NzhHbW7HSMIyrMn3rmJA="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ]; ··· 21 chmod +x "$out/share/neo4j/bin/$NEO4J_SCRIPT" 22 makeWrapper "$out/share/neo4j/bin/$NEO4J_SCRIPT" \ 23 "$out/bin/$NEO4J_SCRIPT" \ 24 + --prefix PATH : "${lib.makeBinPath [ openjdk17 which gawk ]}" \ 25 + --set JAVA_HOME "${openjdk17}" 26 done 27 28 patchShebangs $out/share/neo4j/bin/neo4j-admin 29 + 30 # user will be asked to change password on first login 31 + # password must be at least 8 characters long 32 + $out/bin/neo4j-admin dbms set-initial-password neo4jadmin 33 ''; 34 35 passthru.tests.nixos = nixosTests.neo4j;
+2 -2
pkgs/servers/nosql/questdb/default.nix
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "questdb"; 11 - version = "7.3.7"; 12 13 src = fetchurl { 14 url = "https://github.com/questdb/questdb/releases/download/${finalAttrs.version}/questdb-${finalAttrs.version}-no-jre-bin.tar.gz"; 15 - hash = "sha256-RvEYnPllmK7ZFJ5l4cmnVrRYr/EFpu5wSqsGzR2Y2K4="; 16 }; 17 18 nativeBuildInputs = [
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "questdb"; 11 + version = "7.3.9"; 12 13 src = fetchurl { 14 url = "https://github.com/questdb/questdb/releases/download/${finalAttrs.version}/questdb-${finalAttrs.version}-no-jre-bin.tar.gz"; 15 + hash = "sha256-kbpLeFOLzVPnoNlnFAPmPhfuNmEEkrrE4QLN3GXMZ1M="; 16 }; 17 18 nativeBuildInputs = [
+2 -2
pkgs/servers/search/weaviate/default.nix
··· 5 6 buildGoModule rec { 7 pname = "weaviate"; 8 - version = "1.23.1"; 9 10 src = fetchFromGitHub { 11 owner = "weaviate"; 12 repo = "weaviate"; 13 rev = "v${version}"; 14 - hash = "sha256-sQp0RarW+SRxhDmXm1fSI1xEPKPMQ8coJiyJK5d2NlA="; 15 }; 16 17 vendorHash = "sha256-UEdGoXKq7ewNszahgcomjjuO2uzRZpiwkvvnXyFc9Og=";
··· 5 6 buildGoModule rec { 7 pname = "weaviate"; 8 + version = "1.23.7"; 9 10 src = fetchFromGitHub { 11 owner = "weaviate"; 12 repo = "weaviate"; 13 rev = "v${version}"; 14 + hash = "sha256-m0CC45C84A/Df526HiKPVmunwcUccamYKHm5KUiB19M="; 15 }; 16 17 vendorHash = "sha256-UEdGoXKq7ewNszahgcomjjuO2uzRZpiwkvvnXyFc9Og=";
+2 -2
pkgs/servers/sip/kamailio/default.nix
··· 21 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "kamailio"; 24 - version = "5.7.3"; 25 26 src = fetchurl { 27 url = "https://www.kamailio.org/pub/kamailio/${finalAttrs.version}/src/kamailio-${finalAttrs.version}_src.tar.gz"; 28 - hash = "sha256-x6YgsDl05OBNQZ4Iancf0Leo4mnz1pwZocZghaSY/Yw="; 29 }; 30 31 buildInputs = [
··· 21 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "kamailio"; 24 + version = "5.7.4"; 25 26 src = fetchurl { 27 url = "https://www.kamailio.org/pub/kamailio/${finalAttrs.version}/src/kamailio-${finalAttrs.version}_src.tar.gz"; 28 + hash = "sha256-AP9zgGFuoM+gsVmoepfedFTwDOM3RpsRpO6gS/4AMfM="; 29 }; 30 31 buildInputs = [
+2 -2
pkgs/servers/spicedb/zed.nix
··· 5 6 buildGoModule rec { 7 pname = "zed"; 8 - version = "0.16.2"; 9 10 src = fetchFromGitHub { 11 owner = "authzed"; 12 repo = "zed"; 13 rev = "v${version}"; 14 - hash = "sha256-MxIeQ8WbTEH342EA03irjpDjfZZyc0sau2hOZOGT27w="; 15 }; 16 17 vendorHash = "sha256-KhtT0v0FJiOvYUhN/rBYxbkUKs0DdIc5HwlhVUAi9cA=";
··· 5 6 buildGoModule rec { 7 pname = "zed"; 8 + version = "0.16.4"; 9 10 src = fetchFromGitHub { 11 owner = "authzed"; 12 repo = "zed"; 13 rev = "v${version}"; 14 + hash = "sha256-PLOzzsW0v4T12NFrQlOYcsC7Cd3OnGD0TYmuavqEtxw="; 15 }; 16 17 vendorHash = "sha256-KhtT0v0FJiOvYUhN/rBYxbkUKs0DdIc5HwlhVUAi9cA=";
+3 -3
pkgs/servers/sql/dolt/default.nix
··· 2 3 buildGoModule rec { 4 pname = "dolt"; 5 - version = "1.30.4"; 6 7 src = fetchFromGitHub { 8 owner = "dolthub"; 9 repo = "dolt"; 10 rev = "v${version}"; 11 - sha256 = "sha256-c9NjwTCPMl694ijDbljoPaSf86NywLXuKpiG00whA1o="; 12 }; 13 14 modRoot = "./go"; 15 subPackages = [ "cmd/dolt" ]; 16 - vendorHash = "sha256-kLFANKOGTHcUtgEARm/GzVH5zPEv5ioHCTpgqSbO+pw="; 17 proxyVendor = true; 18 doCheck = false; 19
··· 2 3 buildGoModule rec { 4 pname = "dolt"; 5 + version = "1.32.6"; 6 7 src = fetchFromGitHub { 8 owner = "dolthub"; 9 repo = "dolt"; 10 rev = "v${version}"; 11 + sha256 = "sha256-ftotZwRxcBErKzh1dZYqScTW12/tCOOHFJuruB5FOMU="; 12 }; 13 14 modRoot = "./go"; 15 subPackages = [ "cmd/dolt" ]; 16 + vendorHash = "sha256-RpwIPWzzAxXvDCf2CGnKo4NtsIe7QS4gVP1zeFgq+BQ="; 17 proxyVendor = true; 18 doCheck = false; 19
+2 -2
pkgs/servers/sql/mysql/jdbc/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "mysql-connector-java"; 5 - version = "8.2.0"; 6 7 src = fetchurl { 8 url = "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-j-${version}.zip"; 9 - hash = "sha256-N0emBuTaYlyL1SS0wDOR8uiz4yGUOMllKR7LC60eFEg="; 10 }; 11 12 installPhase = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "mysql-connector-java"; 5 + version = "8.3.0"; 6 7 src = fetchurl { 8 url = "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-j-${version}.zip"; 9 + hash = "sha256-w2xddRQMjSTEprB9pmK8zKskGtthNuUd9YBPaMym7WE="; 10 }; 11 12 installPhase = ''
+2 -2
pkgs/servers/sql/pgbouncer/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pgbouncer"; 5 - version = "1.21.0"; 6 7 src = fetchurl { 8 url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz"; 9 - hash = "sha256-fh3WIMjYWoSQr/JQYdUFXXrvnPPov+LZ53GbjuWRFOI="; 10 }; 11 12 nativeBuildInputs = [ pkg-config ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pgbouncer"; 5 + version = "1.22.0"; 6 7 src = fetchurl { 8 url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz"; 9 + hash = "sha256-xu43qNfdvrv4RC2PCOwHw9pGr7Kq45ZziMFIFpineFg="; 10 }; 11 12 nativeBuildInputs = [ pkg-config ];
+73
pkgs/servers/sql/postgresql/ext/pgsodium.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , libsodium 5 + , postgresql 6 + , postgresqlTestHook 7 + }: 8 + 9 + stdenv.mkDerivation (finalAttrs: { 10 + pname = "pgsodium"; 11 + version = "3.1.9"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "michelp"; 15 + repo = "pgsodium"; 16 + rev = "v${finalAttrs.version}"; 17 + hash = "sha256-Y8xL3PxF1GQV1JIgolMI1e8oGcUvWAgrPv84om7wKP8="; 18 + }; 19 + 20 + buildInputs = [ 21 + libsodium 22 + postgresql 23 + ]; 24 + 25 + installPhase = '' 26 + runHook preInstall 27 + 28 + install -D -t $out/lib pgsodium${postgresql.dlSuffix} 29 + install -D -t $out/share/postgresql/extension sql/pgsodium-*.sql 30 + install -D -t $out/share/postgresql/extension pgsodium.control 31 + 32 + install -D -t $out/share/pgsodium/getkey_scripts getkey_scripts/* 33 + ln -s $out/share/pgsodium/getkey_scripts/pgsodium_getkey_urandom.sh $out/share/postgresql/extension/pgsodium_getkey 34 + 35 + runHook postInstall 36 + ''; 37 + 38 + passthru.tests.extension = stdenv.mkDerivation { 39 + name = "pgsodium-test"; 40 + dontUnpack = true; 41 + doCheck = true; 42 + nativeCheckInputs = [ postgresqlTestHook (postgresql.withPackages (_: [ finalAttrs.finalPackage ])) ]; 43 + failureHook = "postgresqlStop"; 44 + postgresqlTestUserOptions = "LOGIN SUPERUSER"; 45 + postgresqlExtraSettings = '' 46 + shared_preload_libraries=pgsodium 47 + ''; 48 + passAsFile = [ "sql" ]; 49 + sql = '' 50 + CREATE EXTENSION pgsodium; 51 + 52 + SELECT pgsodium.version(); 53 + SELECT pgsodium.crypto_auth_keygen(); 54 + SELECT pgsodium.randombytes_random() FROM generate_series(0, 5); 55 + SELECT * FROM pgsodium.crypto_box_new_keypair(); 56 + ''; 57 + checkPhase = '' 58 + runHook preCheck 59 + psql -a -v ON_ERROR_STOP=1 -f $sqlPath 60 + runHook postCheck 61 + ''; 62 + installPhase = "touch $out"; 63 + }; 64 + 65 + meta = with lib; { 66 + description = "Modern cryptography for PostgreSQL using libsodium"; 67 + homepage = "https://github.com/michelp/pgsodium"; 68 + changelog = "https://github.com/michelp/pgsodium/releases/tag/v${finalAttrs.version}"; 69 + license = licenses.postgresql; 70 + maintainers = [ maintainers.marsam ]; 71 + platforms = postgresql.meta.platforms; 72 + }; 73 + })
+2
pkgs/servers/sql/postgresql/packages.nix
··· 40 41 pgroonga = super.callPackage ./ext/pgroonga.nix { }; 42 43 pgsql-http = super.callPackage ./ext/pgsql-http.nix { }; 44 45 pgvector = super.callPackage ./ext/pgvector.nix { };
··· 40 41 pgroonga = super.callPackage ./ext/pgroonga.nix { }; 42 43 + pgsodium = super.callPackage ./ext/pgsodium.nix { }; 44 + 45 pgsql-http = super.callPackage ./ext/pgsql-http.nix { }; 46 47 pgvector = super.callPackage ./ext/pgvector.nix { };
+3 -3
pkgs/servers/sql/rqlite/default.nix
··· 5 6 buildGoModule rec { 7 pname = "rqlite"; 8 - version = "8.16.3"; 9 10 src = fetchFromGitHub { 11 owner = "rqlite"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-rgA2OGw5a3J/13864jArqK0BInQSN/7U7wvZ4Yv3+2g="; 15 }; 16 17 - vendorHash = "sha256-DTQiWE31rI0stANvc75Anguo5ymq8hH1vdZIZ5t4JLI="; 18 19 subPackages = [ "cmd/rqlite" "cmd/rqlited" "cmd/rqbench" ]; 20
··· 5 6 buildGoModule rec { 7 pname = "rqlite"; 8 + version = "8.18.7"; 9 10 src = fetchFromGitHub { 11 owner = "rqlite"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-qG04sFy9aPMy9Ba1MKwUZc+8JdA7rvq/ezdBGlGiNwA="; 15 }; 16 17 + vendorHash = "sha256-FzxY6CTcFwSmW9LEKzPRtCsKxsGedwU9G3A3efYG9zk="; 18 19 subPackages = [ "cmd/rqlite" "cmd/rqlited" "cmd/rqbench" ]; 20
+2 -2
pkgs/servers/web-apps/bookstack/default.nix
··· 16 17 in package.override rec { 18 pname = "bookstack"; 19 - version = "23.12.1"; 20 21 src = fetchFromGitHub { 22 owner = "bookstackapp"; 23 repo = pname; 24 rev = "v${version}"; 25 - sha256 = "0ax3mwkypv1wkjh7p7cjpkzi72a4183hw77bjlcjlziw37vsv6kc"; 26 }; 27 28 meta = with lib; {
··· 16 17 in package.override rec { 18 pname = "bookstack"; 19 + version = "23.12.2"; 20 21 src = fetchFromGitHub { 22 owner = "bookstackapp"; 23 repo = pname; 24 rev = "v${version}"; 25 + sha256 = "sha256-ZS93Dk4uK2j55VHWV3d3uJtro3STtaWyuOwdXlXv9Ao="; 26 }; 27 28 meta = with lib; {
+3 -3
pkgs/shells/carapace/default.nix
··· 2 3 buildGoModule rec { 4 pname = "carapace"; 5 - version = "0.29.1"; 6 7 src = fetchFromGitHub { 8 owner = "rsteube"; 9 repo = "${pname}-bin"; 10 rev = "v${version}"; 11 - hash = "sha256-6q6CUZS6blWTwBqpVthsn+wSRd0UJDpweWmvx3RGbgc="; 12 }; 13 14 - vendorHash = "sha256-iMrAapJxipeGyJki8ijtrLKFETi0jEBYnJowgPbBGPg="; 15 16 ldflags = [ 17 "-s"
··· 2 3 buildGoModule rec { 4 pname = "carapace"; 5 + version = "0.30.1"; 6 7 src = fetchFromGitHub { 8 owner = "rsteube"; 9 repo = "${pname}-bin"; 10 rev = "v${version}"; 11 + hash = "sha256-2sf/S6i7f6pkjPEe0LaOJL6GtVNuRpGKXoRP4ZfDfX0="; 12 }; 13 14 + vendorHash = "sha256-iIDtq+wRtBEV/gmGm4xSP87PT3pyUtto1d+nbHPzB04="; 15 16 ldflags = [ 17 "-s"
+44 -26
pkgs/shells/xonsh/default.nix pkgs/by-name/xo/xonsh/unwrapped.nix
··· 1 { lib 2 , fetchFromGitHub 3 - , python3 4 , glibcLocales 5 - , coreutils 6 - , git 7 }: 8 9 - python3.pkgs.buildPythonApplication rec { 10 pname = "xonsh"; 11 - version = "0.14.0"; 12 - format = "pyproject"; 13 14 # fetch from github because the pypi package ships incomplete tests 15 src = fetchFromGitHub { 16 owner = "xonsh"; 17 repo = "xonsh"; 18 rev = "refs/tags/${version}"; 19 - hash = "sha256-ZrPKKa/vl06QAjGr16ZzKF/DAByFHr6ze2WVOCa+wf8="; 20 }; 21 22 env.LC_ALL = "en_US.UTF-8"; 23 ··· 31 find -name "*.xsh" | xargs sed -ie 's|/usr/bin/env|${coreutils}/bin/env|' 32 patchShebangs . 33 ''; 34 - 35 - nativeBuildInputs = with python3.pkgs; [ 36 - setuptools 37 - wheel 38 - ]; 39 40 disabledTests = [ 41 # fails on sandbox ··· 64 "tests/completers/test_bash_completer.py" 65 ]; 66 67 preCheck = '' 68 - HOME=$TMPDIR 69 ''; 70 71 - nativeCheckInputs = [ glibcLocales git ] ++ 72 - (with python3.pkgs; [ pip pyte pytestCheckHook pytest-mock pytest-subprocess ]); 73 74 - propagatedBuildInputs = with python3.pkgs; [ ply prompt-toolkit pygments ]; 75 - 76 - meta = with lib; { 77 description = "A Python-ish, BASHwards-compatible shell"; 78 - homepage = "https://xon.sh/"; 79 changelog = "https://github.com/xonsh/xonsh/raw/${version}/CHANGELOG.rst"; 80 - license = licenses.bsd3; 81 - maintainers = with maintainers; [ vrthra ]; 82 - }; 83 - 84 - passthru = { 85 - shellPath = "/bin/xonsh"; 86 - python = python3; 87 }; 88 }
··· 1 { lib 2 + , coreutils 3 , fetchFromGitHub 4 + , git 5 + , gitUpdater 6 , glibcLocales 7 + , python3 8 }: 9 10 + let 11 pname = "xonsh"; 12 + version = "0.14.4"; 13 + in 14 + python3.pkgs.buildPythonApplication { 15 + inherit pname version; 16 + 17 + pyproject = true; 18 19 # fetch from github because the pypi package ships incomplete tests 20 src = fetchFromGitHub { 21 owner = "xonsh"; 22 repo = "xonsh"; 23 rev = "refs/tags/${version}"; 24 + hash = "sha256-7qOEc4RSdOO059LietKnrxY7cy9MfgmfJjdqZZ5ENLU="; 25 }; 26 + 27 + nativeBuildInputs = with python3.pkgs; [ 28 + setuptools 29 + wheel 30 + ]; 31 + 32 + propagatedBuildInputs = with python3.pkgs; [ 33 + ply 34 + prompt-toolkit 35 + pygments 36 + ]; 37 38 env.LC_ALL = "en_US.UTF-8"; 39 ··· 47 find -name "*.xsh" | xargs sed -ie 's|/usr/bin/env|${coreutils}/bin/env|' 48 patchShebangs . 49 ''; 50 51 disabledTests = [ 52 # fails on sandbox ··· 75 "tests/completers/test_bash_completer.py" 76 ]; 77 78 + nativeCheckInputs = [ 79 + git 80 + glibcLocales 81 + ] ++ (with python3.pkgs; [ 82 + pip 83 + pyte 84 + pytest-mock 85 + pytest-subprocess 86 + pytestCheckHook 87 + ]); 88 + 89 preCheck = '' 90 + export HOME=$TMPDIR 91 ''; 92 93 + passthru = { 94 + shellPath = "/bin/xonsh"; 95 + python = python3; # To the wrapper 96 + updateScript = gitUpdater { }; 97 + }; 98 99 + meta = { 100 + homepage = "https://xon.sh/"; 101 description = "A Python-ish, BASHwards-compatible shell"; 102 changelog = "https://github.com/xonsh/xonsh/raw/${version}/CHANGELOG.rst"; 103 + license = with lib.licenses; [ bsd3 ]; 104 + maintainers = with lib.maintainers; [ AndersonTorres ]; 105 }; 106 }
-24
pkgs/shells/xonsh/wrapper.nix
··· 1 - { runCommand 2 - , xonsh-unwrapped 3 - , lib 4 - , extraPackages ? (ps: [ ]) 5 - }: 6 - 7 - let 8 - xonsh = xonsh-unwrapped; 9 - inherit (xonsh.passthru) python; 10 - 11 - pythonEnv = python.withPackages (ps: [ 12 - (ps.toPythonModule xonsh) 13 - ] ++ extraPackages ps); 14 - 15 - in 16 - runCommand "${xonsh.pname}-${xonsh.version}" 17 - { 18 - inherit (xonsh) pname version meta passthru; 19 - } '' 20 - mkdir -p $out/bin 21 - for bin in ${lib.getBin xonsh}/bin/*; do 22 - ln -s ${pythonEnv}/bin/$(basename "$bin") $out/bin/ 23 - done 24 - ''
···
+3 -3
pkgs/shells/zsh/zsh-prezto/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "zsh-prezto"; 5 - version = "unstable-2024-01-18"; 6 7 src = fetchFromGitHub { 8 owner = "sorin-ionescu"; 9 repo = "prezto"; 10 - rev = "ac356c8cf6af51f276483ae8bb8c9c4954183eb9"; 11 - sha256 = "tyj92iZUFfS0xMaEkqIYvPJcksNlAQS4bKtDkWp0Ctc="; 12 fetchSubmodules = true; 13 }; 14
··· 2 3 stdenv.mkDerivation rec { 4 pname = "zsh-prezto"; 5 + version = "unstable-2024-01-26"; 6 7 src = fetchFromGitHub { 8 owner = "sorin-ionescu"; 9 repo = "prezto"; 10 + rev = "d03bc03fddbd80ead45986b68880001ccbbb98c1"; 11 + sha256 = "qM+F4DDZbjARKnZK2mbBlvx2uV/X2CseayTGkFNpSsk="; 12 fetchSubmodules = true; 13 }; 14
+2 -1
pkgs/tools/X11/wpgtk/default.nix
··· 49 homepage = "https://github.com/deviantfero/wpgtk"; 50 license = licenses.gpl2Only; 51 platforms = platforms.linux; 52 - maintainers = [ maintainers.melkor333 maintainers.cafkafk ]; 53 }; 54 }
··· 49 homepage = "https://github.com/deviantfero/wpgtk"; 50 license = licenses.gpl2Only; 51 platforms = platforms.linux; 52 + maintainers = with maintainers; [ melkor333 cafkafk ]; 53 + mainProgram = "wpg"; 54 }; 55 }
+3 -3
pkgs/tools/admin/bom/default.nix
··· 6 7 buildGoModule rec { 8 pname = "bom"; 9 - version = "0.5.1"; 10 11 src = fetchFromGitHub { 12 owner = "kubernetes-sigs"; 13 repo = pname; 14 rev = "v${version}"; 15 - sha256 = "sha256-/a+0kQn2m5JFxhlgs1pUeyWwwqVFrRbYCyUfcLsNGz8="; 16 # populate values that require us to use git. By doing this in postFetch we 17 # can delete .git afterwards and maintain better reproducibility of the src. 18 leaveDotGit = true; ··· 25 ''; 26 }; 27 28 - vendorHash = "sha256-+dFHVIE3YFQVgYwEDtUWJAfHSnBZox8qejJtuIMPS2I="; 29 30 nativeBuildInputs = [ installShellFiles ]; 31
··· 6 7 buildGoModule rec { 8 pname = "bom"; 9 + version = "0.6.0"; 10 11 src = fetchFromGitHub { 12 owner = "kubernetes-sigs"; 13 repo = pname; 14 rev = "v${version}"; 15 + sha256 = "sha256-nYzBaFtOJhqO0O6MJsxTw/mxsIOa+cnU27nOFRe2/uI="; 16 # populate values that require us to use git. By doing this in postFetch we 17 # can delete .git afterwards and maintain better reproducibility of the src. 18 leaveDotGit = true; ··· 25 ''; 26 }; 27 28 + vendorHash = "sha256-q2dK1hO3ruvts4BtQ1VGgTH3qNMzmS22CUuA52t5OvE="; 29 30 nativeBuildInputs = [ installShellFiles ]; 31
+3 -3
pkgs/tools/admin/okta-aws-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "okta-aws-cli"; 5 - version = "1.2.2"; 6 7 subPackages = [ "cmd/okta-aws-cli" ]; 8 ··· 10 owner = "okta"; 11 repo = "okta-aws-cli"; 12 rev = "v${version}"; 13 - sha256 = "sha256-GF+2xPoc9dztB7w6pOLwiZ6D9b4P1YEJrZxL33j4aew="; 14 }; 15 16 - vendorHash = "sha256-AJmQxMRj602yodzIdhZV+R22KxnEIbT9iSz/5G5T6r8="; 17 18 ldflags = [ "-s" "-w" ]; 19
··· 2 3 buildGoModule rec { 4 pname = "okta-aws-cli"; 5 + version = "2.0.1"; 6 7 subPackages = [ "cmd/okta-aws-cli" ]; 8 ··· 10 owner = "okta"; 11 repo = "okta-aws-cli"; 12 rev = "v${version}"; 13 + sha256 = "sha256-A49TpwvF7zQFCqffLeb1FOxbRwe4yhKSGs7YKNfpNSY="; 14 }; 15 16 + vendorHash = "sha256-SjABVO6tHYRc/1pYjOqfZP+NfnK1/WnAcY5NQ4hMssE="; 17 18 ldflags = [ "-s" "-w" ]; 19
+2 -2
pkgs/tools/admin/ossutil/default.nix
··· 1 { lib, buildGoModule, fetchFromGitHub }: 2 3 buildGoModule rec { 4 - version = "1.7.17"; 5 pname = "ossutil"; 6 7 src = fetchFromGitHub { 8 owner = "aliyun"; 9 repo = "ossutil"; 10 rev = "refs/tags/v${version}"; 11 - hash = "sha256-5Z0mMgDYexUQAcngeEd0m5J5kRwWTGIS2Q+idBcTV98="; 12 }; 13 14 vendorHash = "sha256-4a/bNH47sxxwgYYQhHTqyXddJit3VbeM49/4IEfjWsY=";
··· 1 { lib, buildGoModule, fetchFromGitHub }: 2 3 buildGoModule rec { 4 + version = "1.7.18"; 5 pname = "ossutil"; 6 7 src = fetchFromGitHub { 8 owner = "aliyun"; 9 repo = "ossutil"; 10 rev = "refs/tags/v${version}"; 11 + hash = "sha256-M7Jh3rmWdUlsvj+P0UKazjQoe0zLDro882f/l8wFZGQ="; 12 }; 13 14 vendorHash = "sha256-4a/bNH47sxxwgYYQhHTqyXddJit3VbeM49/4IEfjWsY=";
+2 -2
pkgs/tools/backup/pgbackrest/default.nix
··· 13 }: 14 stdenv.mkDerivation rec { 15 pname = "pgbackrest"; 16 - version = "2.49"; 17 18 src = fetchFromGitHub { 19 owner = "pgbackrest"; 20 repo = "pgbackrest"; 21 rev = "release/${version}"; 22 - sha256 = "sha256-i1IcBNrobhgu+B/ezKFknTiqiZe6LktBxf9YU8JS2Wc="; 23 }; 24 25 nativeBuildInputs = [ pkg-config ];
··· 13 }: 14 stdenv.mkDerivation rec { 15 pname = "pgbackrest"; 16 + version = "2.50"; 17 18 src = fetchFromGitHub { 19 owner = "pgbackrest"; 20 repo = "pgbackrest"; 21 rev = "release/${version}"; 22 + sha256 = "sha256-RjkTg80LAUndSVfTrol9hvgNOG6PMC+OkMVjdtjpdbI="; 23 }; 24 25 nativeBuildInputs = [ pkg-config ];
+10 -3
pkgs/tools/backup/rustic-rs/default.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "rustic-rs"; 13 - version = "0.6.1"; 14 15 src = fetchFromGitHub { 16 owner = "rustic-rs"; 17 repo = "rustic"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-rpIEgQYwfManfgTrhCt6/Q4VBY2yyn4edC6/mz5D7nM="; 20 }; 21 22 - cargoHash = "sha256-q+K887jPB9i9iXpFYXjn3zppAPWNlTc2AG7ivOr77J4="; 23 24 nativeBuildInputs = [ installShellFiles ]; 25
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "rustic-rs"; 13 + version = "0.7.0"; 14 15 src = fetchFromGitHub { 16 owner = "rustic-rs"; 17 repo = "rustic"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-jUAmboJTzX4oJZy9rFiPRbm94bVpZGa0SaqotoCU/Ss="; 20 }; 21 22 + cargoHash = "sha256-iZuWlYDGGziwb49BfKdt9Ahs6oQ0Ij2iiT0tvL7ZIVk="; 23 + 24 + # At the time of writing, upstream defaults to "self-update" and "webdav". 25 + # "self-update" is a self-updater, which we don't want in nixpkgs. 26 + buildNoDefaultFeatures = true; 27 + buildFeatures = [ 28 + "webdav" 29 + ]; 30 31 nativeBuildInputs = [ installShellFiles ]; 32
+2 -2
pkgs/tools/backup/zfs-autobackup/default.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "zfs-autobackup"; 5 - version = "3.1.3"; 6 7 src = fetchPypi { 8 inherit version; 9 pname = "zfs_autobackup"; 10 - sha256 = "sha256-ckikq8Am81O0wkL4ozRBFTCa15PrmkD54A2qEY6kA5c="; 11 }; 12 13 nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ];
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "zfs-autobackup"; 5 + version = "3.2"; 6 7 src = fetchPypi { 8 inherit version; 9 pname = "zfs_autobackup"; 10 + sha256 = "sha256-rvtY7fsn2K2hueAsQkaPXcwxUAgE8j+GsQFF3eJKG2o="; 11 }; 12 13 nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ];
+2 -2
pkgs/tools/filesystems/dwarfs/default.nix
··· 26 27 stdenv.mkDerivation rec { 28 pname = "dwarfs"; 29 - version = "0.7.4"; 30 31 src = fetchFromGitHub { 32 owner = "mhx"; 33 repo = "dwarfs"; 34 rev = "v${version}"; 35 fetchSubmodules = true; 36 - hash = "sha256-wclUyATUZmF7EEkrK9nWASmfiB+MBrvEzc73ngOrhZ0="; 37 }; 38 39 patches = [
··· 26 27 stdenv.mkDerivation rec { 28 pname = "dwarfs"; 29 + version = "0.7.5"; 30 31 src = fetchFromGitHub { 32 owner = "mhx"; 33 repo = "dwarfs"; 34 rev = "v${version}"; 35 fetchSubmodules = true; 36 + hash = "sha256-Zzm2SaFR31TBBMDfgJulVbqsJBh1He2wBFzHRC/c5vg="; 37 }; 38 39 patches = [
+3 -3
pkgs/tools/filesystems/ssdfs-utils/default.nix
··· 12 # as ssdfs-utils, not ssdfs-tools. 13 pname = "ssdfs-utils"; 14 # The version is taken from `configure.ac`, there are no tags. 15 - version = "4.37"; 16 17 src = fetchFromGitHub { 18 owner = "dubeyko"; 19 repo = "ssdfs-tools"; 20 - rev = "f83f70409c5e4fa81e9a67f8ed7f824368aba063"; 21 - hash = "sha256-OuGQ876HRjjSyxMbd/l8yySxmEjW1Yo1PTyO9zEt8+Q="; 22 }; 23 24 strictDeps = true;
··· 12 # as ssdfs-utils, not ssdfs-tools. 13 pname = "ssdfs-utils"; 14 # The version is taken from `configure.ac`, there are no tags. 15 + version = "4.38"; 16 17 src = fetchFromGitHub { 18 owner = "dubeyko"; 19 repo = "ssdfs-tools"; 20 + rev = "14c0e9eb63f75c100a711493a16665c313c7bcf7"; 21 + hash = "sha256-s8HWuUub7EzDVZTFSitW/Zg2u0PSrXnmb5fnfOyrNL0="; 22 }; 23 24 strictDeps = true;
+2 -2
pkgs/tools/graphics/gfxreconstruct/default.nix
··· 17 18 stdenv.mkDerivation rec { 19 pname = "gfxreconstruct"; 20 - version = "1.0.1"; 21 22 src = fetchFromGitHub { 23 owner = "LunarG"; 24 repo = "gfxreconstruct"; 25 rev = "v${version}"; 26 - hash = "sha256-+h7r6uLRw08c1CHRHxGCdkPYqI10i2Q/Oep617rLhx0="; 27 fetchSubmodules = true; 28 }; 29
··· 17 18 stdenv.mkDerivation rec { 19 pname = "gfxreconstruct"; 20 + version = "1.0.2"; 21 22 src = fetchFromGitHub { 23 owner = "LunarG"; 24 repo = "gfxreconstruct"; 25 rev = "v${version}"; 26 + hash = "sha256-4jFHnDiLO2BrfXzxKXU3FGhvcmkUXCT2k/7A+DJPz90="; 27 fetchSubmodules = true; 28 }; 29
+2 -2
pkgs/tools/misc/birdfont/xmlbird.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "xmlbird"; 5 - version = "1.2.14"; 6 7 src = fetchurl { 8 url = "https://birdfont.org/${pname}-releases/lib${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-qygvJC1glSfvwWL7oQPFykgitvnWXwHMhycSjSBGksU="; 10 }; 11 12 nativeBuildInputs = [ python3 pkg-config vala gobject-introspection ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "xmlbird"; 5 + version = "1.2.15"; 6 7 src = fetchurl { 8 url = "https://birdfont.org/${pname}-releases/lib${pname}-${version}.tar.xz"; 9 + sha256 = "sha256-8GX4ijF+AxaGGFlSxRPOAoUezRG6592jOrifz/mWTRM="; 10 }; 11 12 nativeBuildInputs = [ python3 pkg-config vala gobject-introspection ];
+3 -3
pkgs/tools/misc/bonk/default.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "bonk"; 8 - version = "0.3.2"; 9 10 src = fetchFromGitHub { 11 owner = "elliot40404"; 12 repo = "bonk"; 13 rev = "v${version}"; 14 - hash = "sha256-Y6Hia+B7kIvdvpuZwWGJBsn+pOBmMynXai4KWkNs4ck="; 15 }; 16 17 - cargoHash = "sha256-XphSjB49zFB3zXYpdjjcVRdTAW2Bvg91aZkxDLvFy3M="; 18 19 meta = { 20 description = "The blazingly fast touch alternative written in Rust";
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "bonk"; 8 + version = "0.4.0"; 9 10 src = fetchFromGitHub { 11 owner = "elliot40404"; 12 repo = "bonk"; 13 rev = "v${version}"; 14 + hash = "sha256-sAMIteNkGRqmE7BQD/TNC01K3eQQTLKuc0jcxHxtKF8="; 15 }; 16 17 + cargoHash = "sha256-/qBuIG5ETUWMv2iOGpW3/awuhZb35qsBAflNJv3xTUs="; 18 19 meta = { 20 description = "The blazingly fast touch alternative written in Rust";
+2 -2
pkgs/tools/misc/cyberchef/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 pname = "cyberchef"; 8 - version = "10.5.2"; 9 10 src = fetchzip { 11 url = "https://github.com/gchq/CyberChef/releases/download/v${version}/CyberChef_v${version}.zip"; 12 - sha256 = "sha256-sN8dCgmLj0jHfoaUNk2ml/iEJy8/QFfCTRCn9tyTz78="; 13 stripRoot = false; 14 }; 15
··· 5 6 stdenv.mkDerivation rec { 7 pname = "cyberchef"; 8 + version = "10.6.0"; 9 10 src = fetchzip { 11 url = "https://github.com/gchq/CyberChef/releases/download/v${version}/CyberChef_v${version}.zip"; 12 + sha256 = "sha256-vJ2NbD0SqUd5HKkjaZXPxn48xC1vMS95dnmp+u2W1SM="; 13 stripRoot = false; 14 }; 15
+2 -2
pkgs/tools/misc/dateutils/default.nix
··· 1 { lib, stdenv, fetchurl, autoreconfHook, tzdata }: 2 3 stdenv.mkDerivation rec { 4 - version = "0.4.10"; 5 pname = "dateutils"; 6 7 src = fetchurl { 8 url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-PFCOKIm51a7Kt9WdcyWnAIlZMRGhIwpJbasPWtZ3zew="; 10 }; 11 12 # https://github.com/hroptatyr/dateutils/issues/148
··· 1 { lib, stdenv, fetchurl, autoreconfHook, tzdata }: 2 3 stdenv.mkDerivation rec { 4 + version = "0.4.11"; 5 pname = "dateutils"; 6 7 src = fetchurl { 8 url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${pname}-${version}.tar.xz"; 9 + sha256 = "sha256-uP6gsJcUu63yArmzQ0zOa1nCgueGkmjQwIuFiA/btEY="; 10 }; 11 12 # https://github.com/hroptatyr/dateutils/issues/148
+3 -2
pkgs/tools/misc/esptool/default.nix
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "esptool"; 9 - version = "4.6.2"; 10 11 format = "setuptools"; 12 ··· 14 owner = "espressif"; 15 repo = "esptool"; 16 rev = "v${version}"; 17 - hash = "sha256-3uvTyJrGCpulu/MR/VfCgnIxibxJj2ehBIBSveq7EfI="; 18 }; 19 20 postPatch = '' ··· 28 bitstring 29 cryptography 30 ecdsa 31 pyserial 32 reedsolo 33 pyyaml
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "esptool"; 9 + version = "4.7.0"; 10 11 format = "setuptools"; 12 ··· 14 owner = "espressif"; 15 repo = "esptool"; 16 rev = "v${version}"; 17 + hash = "sha256-yrEwCg0e+8jZorL6jcqeuKUCFoV0oP9HVFh1n/ezjPg="; 18 }; 19 20 postPatch = '' ··· 28 bitstring 29 cryptography 30 ecdsa 31 + intelhex 32 pyserial 33 reedsolo 34 pyyaml
+2 -2
pkgs/tools/misc/gigalixir/default.nix
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "gigalixir"; 10 - version = "1.6.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - hash = "sha256-01CoCT++mGiwZ40vAjU3OFE74WGWlBuhaTwsNFIR1a0="; 16 }; 17 18 postPatch = ''
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "gigalixir"; 10 + version = "1.10.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + hash = "sha256-yIf8a54vA/1q5qhaWsrrROB1IB7X5f/KMoryPew4tAI="; 16 }; 17 18 postPatch = ''
+3 -3
pkgs/tools/misc/google-cloud-sql-proxy/default.nix
··· 5 6 buildGoModule rec { 7 pname = "google-cloud-sql-proxy"; 8 - version = "2.8.1"; 9 10 src = fetchFromGitHub { 11 owner = "GoogleCloudPlatform"; 12 repo = "cloud-sql-proxy"; 13 rev = "v${version}"; 14 - hash = "sha256-7BkzDfAXc06pEDz2gHwlJ2HKmWWkqbVwyre8NrQHY6M="; 15 }; 16 17 subPackages = [ "." ]; 18 19 - vendorHash = "sha256-9xe/4yMkCSD7Tfm3CWvN940odeT67HPGbBAimNOGgIc="; 20 21 preCheck = '' 22 buildFlagsArray+="-short"
··· 5 6 buildGoModule rec { 7 pname = "google-cloud-sql-proxy"; 8 + version = "2.8.2"; 9 10 src = fetchFromGitHub { 11 owner = "GoogleCloudPlatform"; 12 repo = "cloud-sql-proxy"; 13 rev = "v${version}"; 14 + hash = "sha256-ZCUBr7K7mGpV/oCS4X6cteUGRjMjqAAA3saPfZ6Vowk="; 15 }; 16 17 subPackages = [ "." ]; 18 19 + vendorHash = "sha256-ScGfP5HdXkMlU2PQmlQxuRC7a+iadf3dOKpFFi2EaAY="; 20 21 preCheck = '' 22 buildFlagsArray+="-short"
+3 -3
pkgs/tools/misc/jfrog-cli/default.nix
··· 5 6 buildGoModule rec { 7 pname = "jfrog-cli"; 8 - version = "2.52.9"; 9 10 src = fetchFromGitHub { 11 owner = "jfrog"; 12 repo = "jfrog-cli"; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-VzItfVmt/+B+rTBxKIjhdrI1B+Xq2ca/VG+EXm99Bw4="; 15 }; 16 17 - vendorHash = "sha256-zGhVAcTQN//YIQQhD9qLN5BTJZ54cVGj1NZd6NXNgjI="; 18 19 postInstall = '' 20 # Name the output the same way as the original build script does
··· 5 6 buildGoModule rec { 7 pname = "jfrog-cli"; 8 + version = "2.52.10"; 9 10 src = fetchFromGitHub { 11 owner = "jfrog"; 12 repo = "jfrog-cli"; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-sqKlYHOpjIxNff1QK540Xxqr7w+WZ+pZXgfAKjRbMuM="; 15 }; 16 17 + vendorHash = "sha256-Cm6Wu2U2i6WZfps1WLAjYuVZZ1y7J4WXFLmX2bkevd4="; 18 19 postInstall = '' 20 # Name the output the same way as the original build script does
+3 -3
pkgs/tools/misc/mise/default.nix
··· 17 18 rustPlatform.buildRustPackage rec { 19 pname = "mise"; 20 - version = "2024.1.35"; 21 22 src = fetchFromGitHub { 23 owner = "jdx"; 24 repo = "mise"; 25 rev = "v${version}"; 26 - hash = "sha256-U5L66cZXgvKLQKTYIAKWcYVs5IV4OKegKxYvLr83g8k="; 27 }; 28 29 - cargoHash = "sha256-Hn6uDDA/RJ9d5s3bLsR90Gd8mahYwnBmkkJ3ToGwpyM="; 30 31 nativeBuildInputs = [ installShellFiles pkg-config ]; 32 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
··· 17 18 rustPlatform.buildRustPackage rec { 19 pname = "mise"; 20 + version = "2024.2.4"; 21 22 src = fetchFromGitHub { 23 owner = "jdx"; 24 repo = "mise"; 25 rev = "v${version}"; 26 + hash = "sha256-SBfnfEY2ostzVWUWPB1f381XnzcNpkqeV+L9xRcRYaw="; 27 }; 28 29 + cargoHash = "sha256-Q63h6ln1uswyvAhWlKhMLJGCZRJCbY3Rovu+jJ1O+0c="; 30 31 nativeBuildInputs = [ installShellFiles pkg-config ]; 32 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
+2 -2
pkgs/tools/misc/nb/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "nb"; 5 - version = "7.9.1"; 6 7 src = fetchFromGitHub { 8 owner = "xwmx"; 9 repo = "nb"; 10 rev = version; 11 - sha256 = "sha256-GS/8UpW99VofpY7R1V5A/Td8niLFthJcNzLS0hI89SI="; 12 }; 13 14 nativeBuildInputs = [ installShellFiles ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "nb"; 5 + version = "7.10.3"; 6 7 src = fetchFromGitHub { 8 owner = "xwmx"; 9 repo = "nb"; 10 rev = version; 11 + sha256 = "sha256-1zZdgL4zy+3u7y4MptDLcmQDSmLZ3gJVlk27enW6xQc="; 12 }; 13 14 nativeBuildInputs = [ installShellFiles ];
+3 -3
pkgs/tools/misc/pandoc-include/default.nix
··· 8 9 buildPythonApplication rec { 10 pname = "pandoc-include"; 11 - version = "1.2.0"; 12 format = "pyproject"; 13 14 src = fetchFromGitHub { 15 owner = "DCsunset"; 16 repo = pname; 17 - rev = "v${version}"; 18 - sha256 = "sha256-kuxud7m+sWcNqE8A+Fwb8ATgiUwxQvHeYBTyw1UzX4U="; 19 }; 20 21 nativeBuildInputs = [
··· 8 9 buildPythonApplication rec { 10 pname = "pandoc-include"; 11 + version = "1.2.1"; 12 format = "pyproject"; 13 14 src = fetchFromGitHub { 15 owner = "DCsunset"; 16 repo = pname; 17 + rev = "refs/tags/v${version}"; 18 + sha256 = "sha256-BDMg3zxNoVtO4dI1t4Msi1UwH+D8uZjBIezsER5KWHA="; 19 }; 20 21 nativeBuildInputs = [
+2 -2
pkgs/tools/misc/rpi-imager/default.nix
··· 21 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "rpi-imager"; 24 - version = "1.8.4"; 25 26 src = fetchFromGitHub { 27 owner = "raspberrypi"; 28 repo = "rpi-imager"; 29 rev = "refs/tags/v${finalAttrs.version}"; 30 - sha256 = "sha256-ZuS/fhPpVlLSdaD+t+qIw6fdEbi7c82X+BxcgWlPntg="; 31 }; 32 33 nativeBuildInputs = [
··· 21 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "rpi-imager"; 24 + version = "1.8.5"; 25 26 src = fetchFromGitHub { 27 owner = "raspberrypi"; 28 repo = "rpi-imager"; 29 rev = "refs/tags/v${finalAttrs.version}"; 30 + sha256 = "sha256-JrotKMyAgQO3Y5RsFAar9N5/wDpWiBcy8RfvBWDiJMs="; 31 }; 32 33 nativeBuildInputs = [
+3 -3
pkgs/tools/misc/star-history/default.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "star-history"; 12 - version = "1.0.17"; 13 14 src = fetchCrate { 15 inherit pname version; 16 - sha256 = "sha256-r1mDMpnu0/xWLtfM7WsVdO8nbkqNBXvYn31hB9qzgVY="; 17 }; 18 19 - cargoHash = "sha256-e65WlmHfo6zIXkQ/7RqqX4wYjbATfC1ke9Zwcm+EQ7M="; 20 21 nativeBuildInputs = [ pkg-config ]; 22
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "star-history"; 12 + version = "1.0.18"; 13 14 src = fetchCrate { 15 inherit pname version; 16 + sha256 = "sha256-PKQyGDSLFRf5eEUICdtDAkbzfljdj0HN40c7+V21wHI="; 17 }; 18 19 + cargoHash = "sha256-LriRO5XdcTqp+7quV11RwjNQgfzQsc5EV8GNwkuwz8s="; 20 21 nativeBuildInputs = [ pkg-config ]; 22
+2 -2
pkgs/tools/misc/vtm/default.nix
··· 6 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "vtm"; 9 - version = "0.9.57"; 10 11 src = fetchFromGitHub { 12 owner = "netxs-group"; 13 repo = "vtm"; 14 rev = "v${finalAttrs.version}"; 15 - hash = "sha256-QdlEi8L9WwzPJK4mE+5Z7BDYKsT4QMtAjaui0LWH4q4="; 16 }; 17 18 nativeBuildInputs = [
··· 6 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "vtm"; 9 + version = "0.9.63"; 10 11 src = fetchFromGitHub { 12 owner = "netxs-group"; 13 repo = "vtm"; 14 rev = "v${finalAttrs.version}"; 15 + hash = "sha256-6WRSkS2uPHOcEmk2xB63G+zxbRu1tlz1D7k92ITEgSQ="; 16 }; 17 18 nativeBuildInputs = [
+3 -3
pkgs/tools/networking/aardvark-dns/default.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "aardvark-dns"; 9 - version = "1.9.0"; 10 11 src = fetchFromGitHub { 12 owner = "containers"; 13 repo = pname; 14 rev = "v${version}"; 15 - hash = "sha256-ZpZlmAlHtlg7a/81TEGRj80Z6Vahk0CFgQmjU9W/tc8="; 16 }; 17 18 - cargoHash = "sha256-6OMiLcSTndX/c5xHe896PMuRpvT21jFpDfCxH15UQIA="; 19 20 passthru.tests = { inherit (nixosTests) podman; }; 21
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "aardvark-dns"; 9 + version = "1.10.0"; 10 11 src = fetchFromGitHub { 12 owner = "containers"; 13 repo = pname; 14 rev = "v${version}"; 15 + hash = "sha256-BZJn0XrqDttNlKNpLy2iZzt8xcpxCoBrWV+L8MstMnM="; 16 }; 17 18 + cargoHash = "sha256-hDskOYyOo18EWsYTIf1trZxhRQK0Jf+T4bXb1JJKjEo="; 19 20 passthru.tests = { inherit (nixosTests) podman; }; 21
+2 -2
pkgs/tools/networking/flannel/default.nix
··· 2 3 buildGoModule rec { 4 pname = "flannel"; 5 - version = "0.24.0"; 6 rev = "v${version}"; 7 8 vendorHash = "sha256-vxzcFVFbbXeBb9kAJaAkvk26ptGo8CdnPJdcuC9qdF0="; ··· 11 inherit rev; 12 owner = "flannel-io"; 13 repo = "flannel"; 14 - sha256 = "sha256-Tog1H5/7B2Dke3vFqOyqKxYo0UzMzA80Da0LFscto2A="; 15 }; 16 17 ldflags = [ "-X github.com/flannel-io/flannel/pkg/version.Version=${rev}" ];
··· 2 3 buildGoModule rec { 4 pname = "flannel"; 5 + version = "0.24.2"; 6 rev = "v${version}"; 7 8 vendorHash = "sha256-vxzcFVFbbXeBb9kAJaAkvk26ptGo8CdnPJdcuC9qdF0="; ··· 11 inherit rev; 12 owner = "flannel-io"; 13 repo = "flannel"; 14 + sha256 = "sha256-pCgrIVB29OhegUuSuWVUaDWcLVI54FH5YlLjDcRf3j8="; 15 }; 16 17 ldflags = [ "-X github.com/flannel-io/flannel/pkg/version.Version=${rev}" ];
+3 -3
pkgs/tools/networking/goodhosts/default.nix
··· 6 7 buildGoModule rec { 8 pname = "goodhosts"; 9 - version = "1.1.1"; 10 11 src = fetchFromGitHub { 12 owner = "goodhosts"; 13 repo = "cli"; 14 rev = "v${version}"; 15 - hash = "sha256-VXOMyYM4jS3gYxm3WiKw3uKeC535ppd9iHumPiupGbc="; 16 }; 17 18 ldflags = [ ··· 23 mv $out/bin/cli $out/bin/goodhosts 24 ''; 25 26 - vendorHash = "sha256-pL1z8cfnzcmX5iMVHQJGXYmzGuf8bp4Txbqoh5wSPWQ="; 27 28 meta = with lib; { 29 description = "A CLI tool for managing hostfiles";
··· 6 7 buildGoModule rec { 8 pname = "goodhosts"; 9 + version = "1.1.2"; 10 11 src = fetchFromGitHub { 12 owner = "goodhosts"; 13 repo = "cli"; 14 rev = "v${version}"; 15 + hash = "sha256-ZasS7AYGYPV+nzp9JbJC5pD0yQ+ik+QnuL+3qC1uqFk="; 16 }; 17 18 ldflags = [ ··· 23 mv $out/bin/cli $out/bin/goodhosts 24 ''; 25 26 + vendorHash = "sha256-t/pdJWz6rLnBbH8iq9Nqy+E+DD2770UCEcowwStPdqM="; 27 28 meta = with lib; { 29 description = "A CLI tool for managing hostfiles";
+2 -2
pkgs/tools/networking/gvproxy/default.nix
··· 2 3 buildGoModule rec { 4 pname = "gvproxy"; 5 - version = "0.7.1"; 6 7 src = fetchFromGitHub { 8 owner = "containers"; 9 repo = "gvisor-tap-vsock"; 10 rev = "v${version}"; 11 - hash = "sha256-FEYQ/WRplfUCruJigri4w8F1PS7aNq+m9aZ4/FoIxr4="; 12 }; 13 14 vendorHash = null;
··· 2 3 buildGoModule rec { 4 pname = "gvproxy"; 5 + version = "0.7.2"; 6 7 src = fetchFromGitHub { 8 owner = "containers"; 9 repo = "gvisor-tap-vsock"; 10 rev = "v${version}"; 11 + hash = "sha256-7WV/PHuZwRnhENolvCAdl9QIQ56B3IvH3n4Db1BvG1o="; 12 }; 13 14 vendorHash = null;
+6 -6
pkgs/tools/networking/ntopng/default.nix
··· 24 , zeromq 25 }: 26 27 - stdenv.mkDerivation rec { 28 pname = "ntopng"; 29 - version = "5.6"; 30 31 src = fetchFromGitHub { 32 owner = "ntop"; 33 repo = "ntopng"; 34 - rev = "refs/tags/${version}"; 35 - hash = "sha256-pIm0C1+4JLVDdXxSaQtd6ON8R2l6KG8ZXuDDuRd6dQI="; 36 fetchSubmodules = true; 37 }; 38 ··· 85 meta = with lib; { 86 description = "High-speed web-based traffic analysis and flow collection tool"; 87 homepage = "https://www.ntop.org/products/traffic-analysis/ntop/"; 88 - changelog = "https://github.com/ntop/ntopng/blob/${version}/CHANGELOG.md"; 89 license = licenses.gpl3Plus; 90 platforms = platforms.linux ++ platforms.darwin; 91 maintainers = with maintainers; [ bjornfor ]; 92 }; 93 - }
··· 24 , zeromq 25 }: 26 27 + stdenv.mkDerivation (finalAttrs: { 28 pname = "ntopng"; 29 + version = "6.0"; 30 31 src = fetchFromGitHub { 32 owner = "ntop"; 33 repo = "ntopng"; 34 + rev = "refs/tags/${finalAttrs.version}"; 35 + hash = "sha256-zLtJ4x1eWtvnd60iNuNkMOX8LinZMEJHSt/Y0FVQ8vw="; 36 fetchSubmodules = true; 37 }; 38 ··· 85 meta = with lib; { 86 description = "High-speed web-based traffic analysis and flow collection tool"; 87 homepage = "https://www.ntop.org/products/traffic-analysis/ntop/"; 88 + changelog = "https://github.com/ntop/ntopng/blob/${finalAttrs.version}/CHANGELOG.md"; 89 license = licenses.gpl3Plus; 90 platforms = platforms.linux ++ platforms.darwin; 91 maintainers = with maintainers; [ bjornfor ]; 92 }; 93 + })
+2 -2
pkgs/tools/networking/ofono/default.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "ofono"; 15 - version = "2.2"; 16 17 outputs = [ "out" "dev" ]; 18 19 src = fetchzip { 20 url = "https://git.kernel.org/pub/scm/network/ofono/ofono.git/snapshot/ofono-${version}.tar.gz"; 21 - sha256 = "sha256-mnh0qzmgPDfimN/M33HntYj90Xcgc/uF8tKbzeQV1Yg="; 22 }; 23 24 patches = [
··· 12 13 stdenv.mkDerivation rec { 14 pname = "ofono"; 15 + version = "2.3"; 16 17 outputs = [ "out" "dev" ]; 18 19 src = fetchzip { 20 url = "https://git.kernel.org/pub/scm/network/ofono/ofono.git/snapshot/ofono-${version}.tar.gz"; 21 + sha256 = "sha256-rX3ngXoW7YISyytpRPLX/lGmQa5LPtFxeA2XdtU1gV0="; 22 }; 23 24 patches = [
+3 -3
pkgs/tools/networking/q/default.nix
··· 2 3 buildGoModule rec { 4 pname = "q"; 5 - version = "0.15.1"; 6 7 src = fetchFromGitHub { 8 owner = "natesales"; 9 repo = "q"; 10 rev = "v${version}"; 11 - sha256 = "sha256-yItgytsPR/FkiERHhLTq1vNJbZ204DckEc3xK3PaPKM="; 12 }; 13 14 - vendorHash = "sha256-xLv2F/rOSjMTnTrLck/1E8Y0fTbpUutQIJGmqetqYjg="; 15 16 doCheck = false; # tries to resolve DNS 17
··· 2 3 buildGoModule rec { 4 pname = "q"; 5 + version = "0.19.2"; 6 7 src = fetchFromGitHub { 8 owner = "natesales"; 9 repo = "q"; 10 rev = "v${version}"; 11 + sha256 = "sha256-kfuf0iwRYNxd9TfIIHvAqLxXjesQh7jC0evT9DQrrzQ="; 12 }; 13 14 + vendorHash = "sha256-6kdf+LwMrIjwC3uZHlMdpEHvonxKfr86PQaMOgzgYOc="; 15 16 doCheck = false; # tries to resolve DNS 17
+3 -3
pkgs/tools/networking/qrcp/default.nix
··· 7 8 buildGoModule rec { 9 pname = "qrcp"; 10 - version = "0.10.1"; 11 12 src = fetchFromGitHub { 13 owner = "claudiodangelis"; 14 repo = "qrcp"; 15 rev = version; 16 - sha256 = "sha256-3GPZ6+gx5i/xULM3lq7D+b0onBC6clgeZsI1CvZ943s="; 17 }; 18 19 - vendorHash = "sha256-XVBDPhQsnUdftS+jZ1zWZlfSbFXxXrKSqiGTPpLq5i0="; 20 21 subPackages = [ "." ]; 22
··· 7 8 buildGoModule rec { 9 pname = "qrcp"; 10 + version = "0.11.2"; 11 12 src = fetchFromGitHub { 13 owner = "claudiodangelis"; 14 repo = "qrcp"; 15 rev = version; 16 + hash = "sha256-BuZn+7gTjsHTUDu33JXTrntb5LUzcq3ZsmgFg+6ivZg="; 17 }; 18 19 + vendorHash = "sha256-lqGPPyoSO12MyeYIuYcqDVHukj7oR3zmHgsS6SxY3yo="; 20 21 subPackages = [ "." ]; 22
+3 -3
pkgs/tools/networking/xray/default.nix
··· 11 12 buildGoModule rec { 13 pname = "xray"; 14 - version = "1.8.6"; 15 16 src = fetchFromGitHub { 17 owner = "XTLS"; 18 repo = "Xray-core"; 19 rev = "v${version}"; 20 - hash = "sha256-M1iu/93eOBIk9VxYKNJm/TPx9G35yO5SpcQm/lAJ1Q8="; 21 }; 22 23 - vendorHash = "sha256-zLnYjZmrsWd/WwtkkLiA8Eoh7aDJz+TsvK0yvIrSr8c="; 24 25 nativeBuildInputs = [ makeWrapper ]; 26
··· 11 12 buildGoModule rec { 13 pname = "xray"; 14 + version = "1.8.7"; 15 16 src = fetchFromGitHub { 17 owner = "XTLS"; 18 repo = "Xray-core"; 19 rev = "v${version}"; 20 + hash = "sha256-yS2DsM9RVAHStoqWVns9GkoYuFS69v7S3uTbRaV9Aog="; 21 }; 22 23 + vendorHash = "sha256-HRUUZjc0TcZ/fXTneG/h/m3QyesHL+/Nu1pFqZ3LUDI="; 24 25 nativeBuildInputs = [ makeWrapper ]; 26
+2 -2
pkgs/tools/package-management/opkg/default.nix
··· 15 16 stdenv.mkDerivation rec { 17 pname = "opkg"; 18 - version = "0.6.2"; 19 20 src = fetchurl { 21 url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz"; 22 - hash = "sha256-rHOpCiVJzQSUjlY9kVkSx44bi6D0OvdcWlP8ykdK29U="; 23 }; 24 25 nativeBuildInputs = [
··· 15 16 stdenv.mkDerivation rec { 17 pname = "opkg"; 18 + version = "0.6.3"; 19 20 src = fetchurl { 21 url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz"; 22 + hash = "sha256-85OONZZGtAbEDV1EKhRnx+cjV/kauCLkQml1KWQeBt4="; 23 }; 24 25 nativeBuildInputs = [
+3 -3
pkgs/tools/security/cdxgen/default.nix
··· 5 6 buildNpmPackage rec { 7 pname = "cdxgen"; 8 - version = "9.11.1"; 9 10 src = fetchFromGitHub { 11 owner = "AppThreat"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-UrwC6T0XJeEETMtwphLWAnN7grWPI/O4aa3IKrWMhOM="; 15 }; 16 17 - npmDepsHash = "sha256-RbHauQkggFlIoIgDdC7A4Y/O4viTsDWNB2MPeDi8oZc="; 18 19 dontNpmBuild = true; 20
··· 5 6 buildNpmPackage rec { 7 pname = "cdxgen"; 8 + version = "10.0.3"; 9 10 src = fetchFromGitHub { 11 owner = "AppThreat"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-YdMJPYRXH1OEMYcb7Erl0++bCMu90hlBSEMf5vL1/Ss="; 15 }; 16 17 + npmDepsHash = "sha256-RmAxOQ7fvZXVgcexKWgHUmUd7qhQZ683Wo5pazsCUOU="; 18 19 dontNpmBuild = true; 20
+3 -3
pkgs/tools/security/crowdsec/default.nix
··· 2 3 buildGoModule rec { 4 pname = "crowdsec"; 5 - version = "1.5.5"; 6 7 src = fetchFromGitHub { 8 owner = "crowdsecurity"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-dE2PeYyC75y9dc84QdhQ6xaLMPdPWtPDse2sY5bFGwU="; 12 }; 13 14 - vendorHash = "sha256-hvandF9LPh1g4zIgmNIyId2YhqHU4RPKHGCtJI9aoPk="; 15 16 nativeBuildInputs = [ installShellFiles ]; 17
··· 2 3 buildGoModule rec { 4 pname = "crowdsec"; 5 + version = "1.6.0"; 6 7 src = fetchFromGitHub { 8 owner = "crowdsecurity"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-5jK+f6IFPhGit+jxkSLTcWN1+nJRQaCZKpWZYId+2bk="; 12 }; 13 14 + vendorHash = "sha256-tUvFT+rE58yxNJGhqqwSG0GlGushkUpngxLkmyjjFFY="; 15 16 nativeBuildInputs = [ installShellFiles ]; 17
+2 -2
pkgs/tools/security/frida-tools/default.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "frida-tools"; 5 - version = "12.1.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - hash = "sha256-9SlDyp1fLOzLqu6sxVqY2jwEzQjrnbzfQXIRoyviPJY="; 10 }; 11 12 propagatedBuildInputs = with python3Packages; [
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "frida-tools"; 5 + version = "12.3.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + hash = "sha256-jtxn0a43kv9bLcY1CM3k0kf5K30Ne/FT10ohptWNwEU="; 10 }; 11 12 propagatedBuildInputs = with python3Packages; [
+3 -3
pkgs/tools/security/step-kms-plugin/default.nix
··· 11 12 buildGoModule rec { 13 pname = "step-kms-plugin"; 14 - version = "0.9.2"; 15 16 src = fetchFromGitHub { 17 owner = "smallstep"; 18 repo = pname; 19 rev = "v${version}"; 20 - hash = "sha256-l0MMcLghhqVVQAdhk0a0nDqYvJbXCV2PFbRtiGQcDn0="; 21 }; 22 23 - vendorHash = "sha256-3du8KlM08N5hKmzZWYZdfPOL5R+BspbK6ABF+RSJzHg="; 24 25 proxyVendor = true; 26
··· 11 12 buildGoModule rec { 13 pname = "step-kms-plugin"; 14 + version = "0.10.0"; 15 16 src = fetchFromGitHub { 17 owner = "smallstep"; 18 repo = pname; 19 rev = "v${version}"; 20 + hash = "sha256-TmIQjkIESZm6u7CajyJGgf1xm3SvjA6EINUAKehzafs="; 21 }; 22 23 + vendorHash = "sha256-mwi7ux4pnnotdwW6v0j+q8mx5i7W6fJVuAKOEqVDueY="; 24 25 proxyVendor = true; 26
+513 -412
pkgs/tools/system/amdgpu_top/Cargo.lock
··· 20 21 [[package]] 22 name = "accesskit" 23 - version = "0.12.1" 24 source = "registry+https://github.com/rust-lang/crates.io-index" 25 - checksum = "ca8410747ed85a17c4a1e9ed3f5a74d3e7bdcc876cf9a18ff40ae21d645997b2" 26 dependencies = [ 27 "enumn", 28 "serde", ··· 59 60 [[package]] 61 name = "amdgpu_top" 62 - version = "0.6.1" 63 dependencies = [ 64 "amdgpu_top_gui", 65 "amdgpu_top_json", 66 "amdgpu_top_tui", 67 "gix", 68 "libamdgpu_top", 69 ] 70 71 [[package]] 72 name = "amdgpu_top_gui" 73 - version = "0.6.1" 74 dependencies = [ 75 "eframe", 76 "egui_plot", ··· 83 84 [[package]] 85 name = "amdgpu_top_json" 86 - version = "0.6.1" 87 dependencies = [ 88 "libamdgpu_top", 89 "serde_json", ··· 91 92 [[package]] 93 name = "amdgpu_top_tui" 94 - version = "0.6.1" 95 dependencies = [ 96 "cursive", 97 "libamdgpu_top", ··· 99 100 [[package]] 101 name = "android-activity" 102 - version = "0.4.3" 103 source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "64529721f27c2314ced0890ce45e469574a73e5e6fdd6e9da1860eb29285f5e0" 105 dependencies = [ 106 "android-properties", 107 - "bitflags 1.3.2", 108 "cc", 109 "jni-sys", 110 "libc", 111 "log", 112 "ndk", 113 "ndk-context", 114 "ndk-sys", 115 - "num_enum 0.6.1", 116 ] 117 118 [[package]] ··· 123 124 [[package]] 125 name = "anyhow" 126 - version = "1.0.78" 127 source = "registry+https://github.com/rust-lang/crates.io-index" 128 - checksum = "ca87830a3e3fb156dc96cfbd31cb620265dd053be734723f22b760d6cc3c3051" 129 130 [[package]] 131 name = "arboard" ··· 141 "parking_lot", 142 "thiserror", 143 "winapi", 144 - "x11rb", 145 ] 146 147 [[package]] ··· 151 checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 152 153 [[package]] 154 name = "autocfg" 155 version = "1.1.0" 156 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 158 159 [[package]] 160 name = "base64" 161 - version = "0.21.5" 162 source = "registry+https://github.com/rust-lang/crates.io-index" 163 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 164 165 [[package]] 166 name = "bitflags" ··· 170 171 [[package]] 172 name = "bitflags" 173 - version = "2.4.1" 174 source = "registry+https://github.com/rust-lang/crates.io-index" 175 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 176 dependencies = [ 177 "serde", 178 ] ··· 194 195 [[package]] 196 name = "block-sys" 197 - version = "0.1.0-beta.1" 198 source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "0fa55741ee90902547802152aaf3f8e5248aab7e21468089560d4c8840561146" 200 dependencies = [ 201 "objc-sys", 202 ] 203 204 [[package]] 205 name = "block2" 206 - version = "0.2.0-alpha.6" 207 source = "registry+https://github.com/rust-lang/crates.io-index" 208 - checksum = "8dd9e63c1744f755c2f60332b88de39d341e5e86239014ad839bd71c106dec42" 209 dependencies = [ 210 "block-sys", 211 - "objc2-encode", 212 ] 213 214 [[package]] ··· 239 240 [[package]] 241 name = "bytemuck" 242 - version = "1.14.0" 243 source = "registry+https://github.com/rust-lang/crates.io-index" 244 - checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 245 dependencies = [ 246 "bytemuck_derive", 247 ] ··· 254 dependencies = [ 255 "proc-macro2", 256 "quote", 257 - "syn 2.0.44", 258 ] 259 260 [[package]] ··· 271 272 [[package]] 273 name = "calloop" 274 - version = "0.10.6" 275 source = "registry+https://github.com/rust-lang/crates.io-index" 276 - checksum = "52e0d00eb1ea24371a97d2da6201c6747a633dc6dc1988ef503403b4c59504a8" 277 dependencies = [ 278 - "bitflags 1.3.2", 279 "log", 280 - "nix 0.25.1", 281 - "slotmap", 282 "thiserror", 283 - "vec_map", 284 ] 285 286 [[package]] ··· 339 340 [[package]] 341 name = "cocoa" 342 - version = "0.24.1" 343 source = "registry+https://github.com/rust-lang/crates.io-index" 344 - checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a" 345 dependencies = [ 346 "bitflags 1.3.2", 347 "block", ··· 384 ] 385 386 [[package]] 387 name = "core-foundation" 388 version = "0.9.4" 389 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 401 402 [[package]] 403 name = "core-graphics" 404 - version = "0.22.3" 405 source = "registry+https://github.com/rust-lang/crates.io-index" 406 - checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 407 dependencies = [ 408 "bitflags 1.3.2", 409 "core-foundation", ··· 425 426 [[package]] 427 name = "cpufeatures" 428 - version = "0.2.11" 429 source = "registry+https://github.com/rust-lang/crates.io-index" 430 - checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 431 dependencies = [ 432 "libc", 433 ] ··· 443 444 [[package]] 445 name = "crossbeam-channel" 446 - version = "0.5.10" 447 source = "registry+https://github.com/rust-lang/crates.io-index" 448 - checksum = "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2" 449 dependencies = [ 450 - "cfg-if", 451 "crossbeam-utils", 452 ] 453 454 [[package]] 455 name = "crossbeam-utils" 456 - version = "0.8.18" 457 source = "registry+https://github.com/rust-lang/crates.io-index" 458 - checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c" 459 - dependencies = [ 460 - "cfg-if", 461 - ] 462 463 [[package]] 464 name = "crossterm" ··· 535 ] 536 537 [[package]] 538 name = "darling" 539 - version = "0.20.3" 540 source = "registry+https://github.com/rust-lang/crates.io-index" 541 - checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 542 dependencies = [ 543 "darling_core", 544 "darling_macro", ··· 546 547 [[package]] 548 name = "darling_core" 549 - version = "0.20.3" 550 source = "registry+https://github.com/rust-lang/crates.io-index" 551 - checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 552 dependencies = [ 553 "fnv", 554 "ident_case", 555 "proc-macro2", 556 "quote", 557 - "syn 2.0.44", 558 ] 559 560 [[package]] 561 name = "darling_macro" 562 - version = "0.20.3" 563 source = "registry+https://github.com/rust-lang/crates.io-index" 564 - checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 565 dependencies = [ 566 "darling_core", 567 "quote", 568 - "syn 2.0.44", 569 ] 570 571 [[package]] ··· 635 dependencies = [ 636 "proc-macro2", 637 "quote", 638 - "syn 2.0.44", 639 ] 640 641 [[package]] ··· 644 source = "registry+https://github.com/rust-lang/crates.io-index" 645 checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 646 dependencies = [ 647 - "libloading 0.8.1", 648 ] 649 650 [[package]] ··· 661 662 [[package]] 663 name = "ecolor" 664 - version = "0.24.1" 665 source = "registry+https://github.com/rust-lang/crates.io-index" 666 - checksum = "4b7637fc2e74d17e52931bac90ff4fc061ac776ada9c7fa272f24cdca5991972" 667 dependencies = [ 668 "bytemuck", 669 "serde", ··· 671 672 [[package]] 673 name = "eframe" 674 - version = "0.24.1" 675 source = "registry+https://github.com/rust-lang/crates.io-index" 676 - checksum = "cdd73918a828c35a7efb4d7188ea973df4bffc589178ed95f521c917b03ddcfa" 677 dependencies = [ 678 "bytemuck", 679 "cocoa", ··· 704 705 [[package]] 706 name = "egui" 707 - version = "0.24.1" 708 source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "c55bcb864b764eb889515a38b8924757657a250738ad15126637ee2df291ee6b" 710 dependencies = [ 711 "accesskit", 712 "ahash", ··· 719 720 [[package]] 721 name = "egui-winit" 722 - version = "0.24.1" 723 source = "registry+https://github.com/rust-lang/crates.io-index" 724 - checksum = "3b673606b6606b12b95e3a3194d7882bf5cff302db36a520b8144c7c342e4e84" 725 dependencies = [ 726 "arboard", 727 "egui", ··· 736 737 [[package]] 738 name = "egui_glow" 739 - version = "0.24.1" 740 source = "registry+https://github.com/rust-lang/crates.io-index" 741 - checksum = "262151f9d57c557c02a40a46f27b9e050a6eb0b006b94dced9c6f4519a04d489" 742 dependencies = [ 743 "bytemuck", 744 "egui", 745 "glow", 746 "log", 747 - "memoffset 0.7.1", 748 "wasm-bindgen", 749 "web-sys", 750 ] 751 752 [[package]] 753 name = "egui_plot" 754 - version = "0.24.1" 755 source = "registry+https://github.com/rust-lang/crates.io-index" 756 - checksum = "b37b2edcdd197db41825266ae7979bd7591fa2eb6b40152375ac05eb323eb9d2" 757 dependencies = [ 758 "egui", 759 ] 760 761 [[package]] 762 name = "emath" 763 - version = "0.24.1" 764 source = "registry+https://github.com/rust-lang/crates.io-index" 765 - checksum = "a045c6c0b44b35e98513fc1e9d183ab42881ac27caccb9fa345465601f56cce4" 766 dependencies = [ 767 "bytemuck", 768 "serde", ··· 785 dependencies = [ 786 "proc-macro2", 787 "quote", 788 - "syn 2.0.44", 789 ] 790 791 [[package]] 792 name = "enumn" 793 - version = "0.1.12" 794 source = "registry+https://github.com/rust-lang/crates.io-index" 795 - checksum = "c2ad8cef1d801a4686bfd8919f0b30eac4c8e48968c437a6405ded4fb5272d2b" 796 dependencies = [ 797 "proc-macro2", 798 "quote", 799 - "syn 2.0.44", 800 ] 801 802 [[package]] ··· 817 "darling", 818 "proc-macro2", 819 "quote", 820 - "syn 2.0.44", 821 ] 822 823 [[package]] 824 name = "epaint" 825 - version = "0.24.1" 826 source = "registry+https://github.com/rust-lang/crates.io-index" 827 - checksum = "7d1b9e000d21bab9b535ce78f9f7745be28b3f777f6c7223936561c5c7fefab8" 828 dependencies = [ 829 "ab_glyph", 830 "ahash", ··· 880 881 [[package]] 882 name = "fdeflate" 883 - version = "0.3.3" 884 source = "registry+https://github.com/rust-lang/crates.io-index" 885 - checksum = "209098dd6dfc4445aa6111f0e98653ac323eaa4dfd212c9ca3931bf9955c31bd" 886 dependencies = [ 887 "simd-adler32", 888 ] ··· 958 959 [[package]] 960 name = "foreign-types" 961 - version = "0.3.2" 962 source = "registry+https://github.com/rust-lang/crates.io-index" 963 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 964 dependencies = [ 965 "foreign-types-shared", 966 ] 967 968 [[package]] 969 name = "foreign-types-shared" 970 - version = "0.1.1" 971 source = "registry+https://github.com/rust-lang/crates.io-index" 972 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 973 974 [[package]] 975 name = "form_urlencoded" ··· 1001 ] 1002 1003 [[package]] 1004 name = "getrandom" 1005 - version = "0.2.11" 1006 source = "registry+https://github.com/rust-lang/crates.io-index" 1007 - checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 1008 dependencies = [ 1009 "cfg-if", 1010 "libc", ··· 1085 "gix-chunk", 1086 "gix-features", 1087 "gix-hash", 1088 - "memmap2 0.9.3", 1089 "thiserror", 1090 ] 1091 ··· 1112 1113 [[package]] 1114 name = "gix-config-value" 1115 - version = "0.14.3" 1116 source = "registry+https://github.com/rust-lang/crates.io-index" 1117 - checksum = "52e0be46f4cf1f8f9e88d0e3eb7b29718aff23889563249f379119bd1ab6910e" 1118 dependencies = [ 1119 - "bitflags 2.4.1", 1120 "bstr", 1121 "gix-path", 1122 "libc", ··· 1194 source = "registry+https://github.com/rust-lang/crates.io-index" 1195 checksum = "5db19298c5eeea2961e5b3bf190767a2d1f09b8802aeb5f258e42276350aff19" 1196 dependencies = [ 1197 - "bitflags 2.4.1", 1198 "bstr", 1199 "gix-features", 1200 "gix-path", ··· 1240 dependencies = [ 1241 "proc-macro2", 1242 "quote", 1243 - "syn 2.0.44", 1244 ] 1245 1246 [[package]] ··· 1303 1304 [[package]] 1305 name = "gix-path" 1306 - version = "0.10.3" 1307 source = "registry+https://github.com/rust-lang/crates.io-index" 1308 - checksum = "b8dd0998ab245f33d40ca2267e58d542fe54185ebd1dc41923346cf28d179fb6" 1309 dependencies = [ 1310 "bstr", 1311 "gix-trace", ··· 1393 1394 [[package]] 1395 name = "gix-sec" 1396 - version = "0.10.3" 1397 source = "registry+https://github.com/rust-lang/crates.io-index" 1398 - checksum = "78f6dce0c6683e2219e8169aac4b1c29e89540a8262fef7056b31d80d969408c" 1399 dependencies = [ 1400 - "bitflags 2.4.1", 1401 "gix-path", 1402 "libc", 1403 - "windows", 1404 ] 1405 1406 [[package]] ··· 1418 1419 [[package]] 1420 name = "gix-trace" 1421 - version = "0.1.6" 1422 source = "registry+https://github.com/rust-lang/crates.io-index" 1423 - checksum = "e8e1127ede0475b58f4fe9c0aaa0d9bb0bad2af90bbd93ccd307c8632b863d89" 1424 1425 [[package]] 1426 name = "gix-traverse" ··· 1454 1455 [[package]] 1456 name = "gix-utils" 1457 - version = "0.1.8" 1458 source = "registry+https://github.com/rust-lang/crates.io-index" 1459 - checksum = "de6225e2de30b6e9bca2d9f1cc4731640fcef0fb3cabddceee366e7e85d3e94f" 1460 dependencies = [ 1461 "fastrand", 1462 ] 1463 1464 [[package]] ··· 1484 1485 [[package]] 1486 name = "glow" 1487 - version = "0.12.3" 1488 source = "registry+https://github.com/rust-lang/crates.io-index" 1489 - checksum = "ca0fe580e4b60a8ab24a868bc08e2f03cbcb20d3d676601fa909386713333728" 1490 dependencies = [ 1491 "js-sys", 1492 "slotmap", ··· 1496 1497 [[package]] 1498 name = "glutin" 1499 - version = "0.30.10" 1500 source = "registry+https://github.com/rust-lang/crates.io-index" 1501 - checksum = "8fc93b03242719b8ad39fb26ed2b01737144ce7bd4bfc7adadcef806596760fe" 1502 dependencies = [ 1503 - "bitflags 1.3.2", 1504 "cfg_aliases", 1505 "cgl", 1506 "core-foundation", ··· 1508 "glutin_egl_sys", 1509 "glutin_glx_sys", 1510 "glutin_wgl_sys", 1511 - "libloading 0.7.4", 1512 "objc2", 1513 "once_cell", 1514 "raw-window-handle", 1515 - "wayland-sys 0.30.1", 1516 - "windows-sys 0.45.0", 1517 "x11-dl", 1518 ] 1519 1520 [[package]] 1521 name = "glutin-winit" 1522 - version = "0.3.0" 1523 source = "registry+https://github.com/rust-lang/crates.io-index" 1524 - checksum = "629a873fc04062830bfe8f97c03773bcd7b371e23bcc465d0a61448cd1588fa4" 1525 dependencies = [ 1526 "cfg_aliases", 1527 "glutin", ··· 1531 1532 [[package]] 1533 name = "glutin_egl_sys" 1534 - version = "0.5.1" 1535 source = "registry+https://github.com/rust-lang/crates.io-index" 1536 - checksum = "af784eb26c5a68ec85391268e074f0aa618c096eadb5d6330b0911cf34fe57c5" 1537 dependencies = [ 1538 "gl_generator", 1539 - "windows-sys 0.45.0", 1540 ] 1541 1542 [[package]] 1543 name = "glutin_glx_sys" 1544 - version = "0.4.0" 1545 source = "registry+https://github.com/rust-lang/crates.io-index" 1546 - checksum = "1b53cb5fe568964aa066a3ba91eac5ecbac869fb0842cd0dc9e412434f1a1494" 1547 dependencies = [ 1548 "gl_generator", 1549 "x11-dl", ··· 1551 1552 [[package]] 1553 name = "glutin_wgl_sys" 1554 - version = "0.4.0" 1555 source = "registry+https://github.com/rust-lang/crates.io-index" 1556 - checksum = "ef89398e90033fc6bc65e9bd42fd29bbbfd483bda5b56dc5562f455550618165" 1557 dependencies = [ 1558 "gl_generator", 1559 ] ··· 1583 "serde", 1584 "serde_derive", 1585 "thiserror", 1586 - "toml 0.8.8", 1587 "unic-langid", 1588 ] 1589 ··· 1626 "proc-macro2", 1627 "quote", 1628 "strsim", 1629 - "syn 2.0.44", 1630 "unic-langid", 1631 ] 1632 ··· 1640 "i18n-config", 1641 "proc-macro2", 1642 "quote", 1643 - "syn 2.0.44", 1644 ] 1645 1646 [[package]] ··· 1661 1662 [[package]] 1663 name = "image" 1664 - version = "0.24.7" 1665 source = "registry+https://github.com/rust-lang/crates.io-index" 1666 - checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 1667 dependencies = [ 1668 "bytemuck", 1669 "byteorder", 1670 "color_quant", 1671 - "num-rational", 1672 "num-traits", 1673 "png", 1674 ] 1675 1676 [[package]] 1677 name = "indexmap" 1678 - version = "2.1.0" 1679 source = "registry+https://github.com/rust-lang/crates.io-index" 1680 - checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 1681 dependencies = [ 1682 "equivalent", 1683 "hashbrown", 1684 ] 1685 1686 [[package]] 1687 - name = "instant" 1688 - version = "0.1.12" 1689 - source = "registry+https://github.com/rust-lang/crates.io-index" 1690 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1691 - dependencies = [ 1692 - "cfg-if", 1693 - "js-sys", 1694 - "wasm-bindgen", 1695 - "web-sys", 1696 - ] 1697 - 1698 - [[package]] 1699 name = "intl-memoizer" 1700 version = "0.5.1" 1701 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1753 1754 [[package]] 1755 name = "js-sys" 1756 - version = "0.3.66" 1757 source = "registry+https://github.com/rust-lang/crates.io-index" 1758 - checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" 1759 dependencies = [ 1760 "wasm-bindgen", 1761 ] ··· 1774 1775 [[package]] 1776 name = "libamdgpu_top" 1777 - version = "0.6.1" 1778 dependencies = [ 1779 "anyhow", 1780 "libdrm_amdgpu_sys", ··· 1782 1783 [[package]] 1784 name = "libc" 1785 - version = "0.2.151" 1786 source = "registry+https://github.com/rust-lang/crates.io-index" 1787 - checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" 1788 1789 [[package]] 1790 name = "libdrm_amdgpu_sys" 1791 - version = "0.4.1" 1792 - source = "git+https://github.com/Umio-Yasuno/libdrm-amdgpu-sys-rs#d2e0bd7d1dd822b95789842d96e183ae1bb31aeb" 1793 dependencies = [ 1794 "libc", 1795 - ] 1796 - 1797 - [[package]] 1798 - name = "libloading" 1799 - version = "0.7.4" 1800 - source = "registry+https://github.com/rust-lang/crates.io-index" 1801 - checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 1802 - dependencies = [ 1803 - "cfg-if", 1804 - "winapi", 1805 ] 1806 1807 [[package]] ··· 1820 source = "registry+https://github.com/rust-lang/crates.io-index" 1821 checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 1822 dependencies = [ 1823 - "bitflags 2.4.1", 1824 "libc", 1825 "redox_syscall 0.4.1", 1826 ] ··· 1831 source = "registry+https://github.com/rust-lang/crates.io-index" 1832 checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607" 1833 dependencies = [ 1834 - "bitflags 2.4.1", 1835 "libc", 1836 "redox_syscall 0.4.1", 1837 ] 1838 1839 [[package]] 1840 name = "linux-raw-sys" 1841 - version = "0.4.12" 1842 source = "registry+https://github.com/rust-lang/crates.io-index" 1843 - checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 1844 1845 [[package]] 1846 name = "locale_config" ··· 1888 1889 [[package]] 1890 name = "memmap2" 1891 - version = "0.5.10" 1892 - source = "registry+https://github.com/rust-lang/crates.io-index" 1893 - checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 1894 - dependencies = [ 1895 - "libc", 1896 - ] 1897 - 1898 - [[package]] 1899 - name = "memmap2" 1900 version = "0.7.1" 1901 source = "registry+https://github.com/rust-lang/crates.io-index" 1902 checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6" ··· 1906 1907 [[package]] 1908 name = "memmap2" 1909 - version = "0.9.3" 1910 source = "registry+https://github.com/rust-lang/crates.io-index" 1911 - checksum = "45fd3a57831bf88bc63f8cebc0cf956116276e97fef3966103e96416209f7c92" 1912 dependencies = [ 1913 "libc", 1914 ] 1915 1916 [[package]] 1917 name = "memoffset" 1918 - version = "0.6.5" 1919 - source = "registry+https://github.com/rust-lang/crates.io-index" 1920 - checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1921 - dependencies = [ 1922 - "autocfg", 1923 - ] 1924 - 1925 - [[package]] 1926 - name = "memoffset" 1927 version = "0.7.1" 1928 source = "registry+https://github.com/rust-lang/crates.io-index" 1929 checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" ··· 1933 1934 [[package]] 1935 name = "miniz_oxide" 1936 - version = "0.7.1" 1937 source = "registry+https://github.com/rust-lang/crates.io-index" 1938 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1939 dependencies = [ 1940 "adler", 1941 "simd-adler32", ··· 1955 1956 [[package]] 1957 name = "ndk" 1958 - version = "0.7.0" 1959 source = "registry+https://github.com/rust-lang/crates.io-index" 1960 - checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" 1961 dependencies = [ 1962 - "bitflags 1.3.2", 1963 "jni-sys", 1964 "ndk-sys", 1965 - "num_enum 0.5.11", 1966 "raw-window-handle", 1967 "thiserror", 1968 ] ··· 1975 1976 [[package]] 1977 name = "ndk-sys" 1978 - version = "0.4.1+23.1.7779620" 1979 source = "registry+https://github.com/rust-lang/crates.io-index" 1980 - checksum = "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3" 1981 dependencies = [ 1982 "jni-sys", 1983 ] 1984 1985 [[package]] 1986 name = "nix" 1987 - version = "0.24.3" 1988 - source = "registry+https://github.com/rust-lang/crates.io-index" 1989 - checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" 1990 - dependencies = [ 1991 - "bitflags 1.3.2", 1992 - "cfg-if", 1993 - "libc", 1994 - "memoffset 0.6.5", 1995 - ] 1996 - 1997 - [[package]] 1998 - name = "nix" 1999 - version = "0.25.1" 2000 - source = "registry+https://github.com/rust-lang/crates.io-index" 2001 - checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" 2002 - dependencies = [ 2003 - "autocfg", 2004 - "bitflags 1.3.2", 2005 - "cfg-if", 2006 - "libc", 2007 - "memoffset 0.6.5", 2008 - ] 2009 - 2010 - [[package]] 2011 - name = "nix" 2012 version = "0.26.4" 2013 source = "registry+https://github.com/rust-lang/crates.io-index" 2014 checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" ··· 2016 "bitflags 1.3.2", 2017 "cfg-if", 2018 "libc", 2019 - "memoffset 0.7.1", 2020 ] 2021 2022 [[package]] ··· 2048 ] 2049 2050 [[package]] 2051 name = "num-integer" 2052 version = "0.1.45" 2053 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2090 2091 [[package]] 2092 name = "num_enum" 2093 - version = "0.5.11" 2094 - source = "registry+https://github.com/rust-lang/crates.io-index" 2095 - checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 2096 - dependencies = [ 2097 - "num_enum_derive 0.5.11", 2098 - ] 2099 - 2100 - [[package]] 2101 - name = "num_enum" 2102 - version = "0.6.1" 2103 source = "registry+https://github.com/rust-lang/crates.io-index" 2104 - checksum = "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" 2105 dependencies = [ 2106 - "num_enum_derive 0.6.1", 2107 ] 2108 2109 [[package]] 2110 name = "num_enum_derive" 2111 - version = "0.5.11" 2112 source = "registry+https://github.com/rust-lang/crates.io-index" 2113 - checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 2114 dependencies = [ 2115 "proc-macro-crate", 2116 "proc-macro2", 2117 "quote", 2118 - "syn 1.0.109", 2119 - ] 2120 - 2121 - [[package]] 2122 - name = "num_enum_derive" 2123 - version = "0.6.1" 2124 - source = "registry+https://github.com/rust-lang/crates.io-index" 2125 - checksum = "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" 2126 - dependencies = [ 2127 - "proc-macro-crate", 2128 - "proc-macro2", 2129 - "quote", 2130 - "syn 2.0.44", 2131 ] 2132 2133 [[package]] ··· 2161 2162 [[package]] 2163 name = "objc-sys" 2164 - version = "0.2.0-beta.2" 2165 source = "registry+https://github.com/rust-lang/crates.io-index" 2166 - checksum = "df3b9834c1e95694a05a828b59f55fa2afec6288359cda67146126b3f90a55d7" 2167 2168 [[package]] 2169 name = "objc2" 2170 - version = "0.3.0-beta.3.patch-leaks.3" 2171 source = "registry+https://github.com/rust-lang/crates.io-index" 2172 - checksum = "7e01640f9f2cb1220bbe80325e179e532cb3379ebcd1bf2279d703c19fe3a468" 2173 dependencies = [ 2174 - "block2", 2175 "objc-sys", 2176 "objc2-encode", 2177 ] 2178 2179 [[package]] 2180 name = "objc2-encode" 2181 - version = "2.0.0-pre.2" 2182 source = "registry+https://github.com/rust-lang/crates.io-index" 2183 - checksum = "abfcac41015b00a120608fdaa6938c44cb983fee294351cc4bac7638b4e50512" 2184 - dependencies = [ 2185 - "objc-sys", 2186 - ] 2187 2188 [[package]] 2189 name = "objc_id" ··· 2257 checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2258 2259 [[package]] 2260 name = "pkg-config" 2261 - version = "0.3.28" 2262 source = "registry+https://github.com/rust-lang/crates.io-index" 2263 - checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a" 2264 2265 [[package]] 2266 name = "png" 2267 - version = "0.17.10" 2268 source = "registry+https://github.com/rust-lang/crates.io-index" 2269 - checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 2270 dependencies = [ 2271 "bitflags 1.3.2", 2272 "crc32fast", ··· 2276 ] 2277 2278 [[package]] 2279 name = "powerfmt" 2280 version = "0.2.0" 2281 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2283 2284 [[package]] 2285 name = "proc-macro-crate" 2286 - version = "1.3.1" 2287 source = "registry+https://github.com/rust-lang/crates.io-index" 2288 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2289 dependencies = [ 2290 - "once_cell", 2291 - "toml_edit 0.19.15", 2292 ] 2293 2294 [[package]] ··· 2317 2318 [[package]] 2319 name = "proc-macro2" 2320 - version = "1.0.73" 2321 source = "registry+https://github.com/rust-lang/crates.io-index" 2322 - checksum = "2dd5e8a1f1029c43224ad5898e50140c2aebb1705f19e67c918ebf5b9e797fe1" 2323 dependencies = [ 2324 "unicode-ident", 2325 ] ··· 2331 checksum = "794b5bf8e2d19b53dcdcec3e4bba628e20f5b6062503ba89281fa7037dd7bbcf" 2332 2333 [[package]] 2334 name = "quote" 2335 - version = "1.0.34" 2336 source = "registry+https://github.com/rust-lang/crates.io-index" 2337 - checksum = "22a37c9326af5ed140c86a46655b5278de879853be5573c01df185b6f49a580a" 2338 dependencies = [ 2339 "proc-macro2", 2340 ] ··· 2376 2377 [[package]] 2378 name = "regex" 2379 - version = "1.10.2" 2380 source = "registry+https://github.com/rust-lang/crates.io-index" 2381 - checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 2382 dependencies = [ 2383 "aho-corasick", 2384 "memchr", ··· 2388 2389 [[package]] 2390 name = "regex-automata" 2391 - version = "0.4.3" 2392 source = "registry+https://github.com/rust-lang/crates.io-index" 2393 - checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 2394 dependencies = [ 2395 "aho-corasick", 2396 "memchr", ··· 2410 checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 2411 dependencies = [ 2412 "base64", 2413 - "bitflags 2.4.1", 2414 "serde", 2415 "serde_derive", 2416 ] ··· 2435 "proc-macro2", 2436 "quote", 2437 "rust-embed-utils", 2438 - "syn 2.0.44", 2439 "walkdir", 2440 ] 2441 ··· 2457 2458 [[package]] 2459 name = "rustix" 2460 - version = "0.38.28" 2461 source = "registry+https://github.com/rust-lang/crates.io-index" 2462 - checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316" 2463 dependencies = [ 2464 - "bitflags 2.4.1", 2465 "errno", 2466 "libc", 2467 "linux-raw-sys", ··· 2512 2513 [[package]] 2514 name = "serde" 2515 - version = "1.0.193" 2516 source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 2518 dependencies = [ 2519 "serde_derive", 2520 ] 2521 2522 [[package]] 2523 name = "serde_derive" 2524 - version = "1.0.193" 2525 source = "registry+https://github.com/rust-lang/crates.io-index" 2526 - checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 2527 dependencies = [ 2528 "proc-macro2", 2529 "quote", 2530 - "syn 2.0.44", 2531 ] 2532 2533 [[package]] 2534 name = "serde_json" 2535 - version = "1.0.109" 2536 source = "registry+https://github.com/rust-lang/crates.io-index" 2537 - checksum = "cb0652c533506ad7a2e353cce269330d6afd8bdfb6d75e0ace5b35aacbd7b9e9" 2538 dependencies = [ 2539 "itoa", 2540 "ryu", ··· 2604 checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 2605 2606 [[package]] 2607 name = "slotmap" 2608 version = "1.0.7" 2609 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2614 2615 [[package]] 2616 name = "smallvec" 2617 - version = "1.11.2" 2618 source = "registry+https://github.com/rust-lang/crates.io-index" 2619 - checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 2620 2621 [[package]] 2622 name = "smithay-client-toolkit" 2623 - version = "0.16.1" 2624 source = "registry+https://github.com/rust-lang/crates.io-index" 2625 - checksum = "870427e30b8f2cbe64bf43ec4b86e88fe39b0a84b3f15efd9c9c2d020bc86eb9" 2626 dependencies = [ 2627 - "bitflags 1.3.2", 2628 "calloop", 2629 - "dlib", 2630 - "lazy_static", 2631 "log", 2632 - "memmap2 0.5.10", 2633 - "nix 0.24.3", 2634 - "pkg-config", 2635 "wayland-client", 2636 "wayland-cursor", 2637 "wayland-protocols", 2638 ] 2639 2640 [[package]] 2641 name = "smithay-clipboard" 2642 - version = "0.6.6" 2643 source = "registry+https://github.com/rust-lang/crates.io-index" 2644 - checksum = "0a345c870a1fae0b1b779085e81b51e614767c239e93503588e54c5b17f4b0e8" 2645 dependencies = [ 2646 "smithay-client-toolkit", 2647 - "wayland-client", 2648 ] 2649 2650 [[package]] ··· 2678 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2679 dependencies = [ 2680 "proc-macro2", 2681 - "quote", 2682 "unicode-ident", 2683 ] 2684 2685 [[package]] 2686 name = "syn" 2687 - version = "2.0.44" 2688 source = "registry+https://github.com/rust-lang/crates.io-index" 2689 - checksum = "92d27c2c202598d05175a6dd3af46824b7f747f8d8e9b14c623f19fa5069735d" 2690 dependencies = [ 2691 "proc-macro2", 2692 "quote", ··· 2708 2709 [[package]] 2710 name = "thiserror" 2711 - version = "1.0.53" 2712 source = "registry+https://github.com/rust-lang/crates.io-index" 2713 - checksum = "b2cd5904763bad08ad5513ddbb12cf2ae273ca53fa9f68e843e236ec6dfccc09" 2714 dependencies = [ 2715 "thiserror-impl", 2716 ] 2717 2718 [[package]] 2719 name = "thiserror-impl" 2720 - version = "1.0.53" 2721 source = "registry+https://github.com/rust-lang/crates.io-index" 2722 - checksum = "3dcf4a824cce0aeacd6f38ae6f24234c8e80d68632338ebaa1443b5df9e29e19" 2723 dependencies = [ 2724 "proc-macro2", 2725 "quote", 2726 - "syn 2.0.44", 2727 ] 2728 2729 [[package]] 2730 name = "time" 2731 - version = "0.3.31" 2732 source = "registry+https://github.com/rust-lang/crates.io-index" 2733 - checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" 2734 dependencies = [ 2735 "deranged", 2736 "itoa", 2737 "libc", 2738 "num_threads", 2739 "powerfmt", 2740 "serde", ··· 2750 2751 [[package]] 2752 name = "time-macros" 2753 - version = "0.2.16" 2754 source = "registry+https://github.com/rust-lang/crates.io-index" 2755 - checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f" 2756 dependencies = [ 2757 "time-core", 2758 ] 2759 ··· 2792 2793 [[package]] 2794 name = "toml" 2795 - version = "0.8.8" 2796 source = "registry+https://github.com/rust-lang/crates.io-index" 2797 - checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 2798 dependencies = [ 2799 "serde", 2800 "serde_spanned", 2801 "toml_datetime", 2802 - "toml_edit 0.21.0", 2803 ] 2804 2805 [[package]] ··· 2813 2814 [[package]] 2815 name = "toml_edit" 2816 - version = "0.19.15" 2817 source = "registry+https://github.com/rust-lang/crates.io-index" 2818 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 2819 dependencies = [ 2820 "indexmap", 2821 "toml_datetime", 2822 "winnow", 2823 ] 2824 2825 [[package]] 2826 - name = "toml_edit" 2827 - version = "0.21.0" 2828 source = "registry+https://github.com/rust-lang/crates.io-index" 2829 - checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 2830 dependencies = [ 2831 - "indexmap", 2832 - "serde", 2833 - "serde_spanned", 2834 - "toml_datetime", 2835 - "winnow", 2836 ] 2837 2838 [[package]] 2839 name = "ttf-parser" 2840 version = "0.20.0" 2841 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2877 2878 [[package]] 2879 name = "unicode-bidi" 2880 - version = "0.3.14" 2881 source = "registry+https://github.com/rust-lang/crates.io-index" 2882 - checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" 2883 2884 [[package]] 2885 name = "unicode-bom" ··· 2926 ] 2927 2928 [[package]] 2929 - name = "vec_map" 2930 - version = "0.8.2" 2931 - source = "registry+https://github.com/rust-lang/crates.io-index" 2932 - checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 2933 - 2934 - [[package]] 2935 name = "version_check" 2936 version = "0.9.4" 2937 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2955 2956 [[package]] 2957 name = "wasm-bindgen" 2958 - version = "0.2.89" 2959 source = "registry+https://github.com/rust-lang/crates.io-index" 2960 - checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 2961 dependencies = [ 2962 "cfg-if", 2963 "wasm-bindgen-macro", ··· 2965 2966 [[package]] 2967 name = "wasm-bindgen-backend" 2968 - version = "0.2.89" 2969 source = "registry+https://github.com/rust-lang/crates.io-index" 2970 - checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 2971 dependencies = [ 2972 "bumpalo", 2973 "log", 2974 "once_cell", 2975 "proc-macro2", 2976 "quote", 2977 - "syn 2.0.44", 2978 "wasm-bindgen-shared", 2979 ] 2980 2981 [[package]] 2982 name = "wasm-bindgen-futures" 2983 - version = "0.4.39" 2984 source = "registry+https://github.com/rust-lang/crates.io-index" 2985 - checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" 2986 dependencies = [ 2987 "cfg-if", 2988 "js-sys", ··· 2992 2993 [[package]] 2994 name = "wasm-bindgen-macro" 2995 - version = "0.2.89" 2996 source = "registry+https://github.com/rust-lang/crates.io-index" 2997 - checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 2998 dependencies = [ 2999 "quote", 3000 "wasm-bindgen-macro-support", ··· 3002 3003 [[package]] 3004 name = "wasm-bindgen-macro-support" 3005 - version = "0.2.89" 3006 source = "registry+https://github.com/rust-lang/crates.io-index" 3007 - checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 3008 dependencies = [ 3009 "proc-macro2", 3010 "quote", 3011 - "syn 2.0.44", 3012 "wasm-bindgen-backend", 3013 "wasm-bindgen-shared", 3014 ] 3015 3016 [[package]] 3017 name = "wasm-bindgen-shared" 3018 - version = "0.2.89" 3019 source = "registry+https://github.com/rust-lang/crates.io-index" 3020 - checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 3021 3022 [[package]] 3023 - name = "wayland-client" 3024 - version = "0.29.5" 3025 source = "registry+https://github.com/rust-lang/crates.io-index" 3026 - checksum = "3f3b068c05a039c9f755f881dc50f01732214f5685e379829759088967c46715" 3027 dependencies = [ 3028 - "bitflags 1.3.2", 3029 "downcast-rs", 3030 - "libc", 3031 - "nix 0.24.3", 3032 "scoped-tls", 3033 - "wayland-commons", 3034 "wayland-scanner", 3035 - "wayland-sys 0.29.5", 3036 ] 3037 3038 [[package]] 3039 - name = "wayland-commons" 3040 - version = "0.29.5" 3041 source = "registry+https://github.com/rust-lang/crates.io-index" 3042 - checksum = "8691f134d584a33a6606d9d717b95c4fa20065605f798a3f350d78dced02a902" 3043 dependencies = [ 3044 - "nix 0.24.3", 3045 - "once_cell", 3046 - "smallvec", 3047 - "wayland-sys 0.29.5", 3048 ] 3049 3050 [[package]] 3051 name = "wayland-cursor" 3052 - version = "0.29.5" 3053 source = "registry+https://github.com/rust-lang/crates.io-index" 3054 - checksum = "6865c6b66f13d6257bef1cd40cbfe8ef2f150fb8ebbdb1e8e873455931377661" 3055 dependencies = [ 3056 - "nix 0.24.3", 3057 "wayland-client", 3058 "xcursor", 3059 ] 3060 3061 [[package]] 3062 name = "wayland-protocols" 3063 - version = "0.29.5" 3064 source = "registry+https://github.com/rust-lang/crates.io-index" 3065 - checksum = "b950621f9354b322ee817a23474e479b34be96c2e909c14f7bc0100e9a970bc6" 3066 dependencies = [ 3067 - "bitflags 1.3.2", 3068 "wayland-client", 3069 - "wayland-commons", 3070 "wayland-scanner", 3071 ] 3072 3073 [[package]] 3074 - name = "wayland-scanner" 3075 - version = "0.29.5" 3076 source = "registry+https://github.com/rust-lang/crates.io-index" 3077 - checksum = "8f4303d8fa22ab852f789e75a967f0a2cdc430a607751c0499bada3e451cbd53" 3078 dependencies = [ 3079 - "proc-macro2", 3080 - "quote", 3081 - "xml-rs", 3082 ] 3083 3084 [[package]] 3085 - name = "wayland-sys" 3086 - version = "0.29.5" 3087 source = "registry+https://github.com/rust-lang/crates.io-index" 3088 - checksum = "be12ce1a3c39ec7dba25594b97b42cb3195d54953ddb9d3d95a7c3902bc6e9d4" 3089 dependencies = [ 3090 - "dlib", 3091 - "lazy_static", 3092 - "pkg-config", 3093 ] 3094 3095 [[package]] 3096 name = "wayland-sys" 3097 - version = "0.30.1" 3098 source = "registry+https://github.com/rust-lang/crates.io-index" 3099 - checksum = "96b2a02ac608e07132978689a6f9bf4214949c85998c247abadd4f4129b1aa06" 3100 dependencies = [ 3101 "dlib", 3102 - "lazy_static", 3103 "log", 3104 "pkg-config", 3105 ] 3106 3107 [[package]] 3108 name = "web-sys" 3109 - version = "0.3.66" 3110 source = "registry+https://github.com/rust-lang/crates.io-index" 3111 - checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" 3112 dependencies = [ 3113 "js-sys", 3114 "wasm-bindgen", ··· 3180 version = "0.4.0" 3181 source = "registry+https://github.com/rust-lang/crates.io-index" 3182 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3183 - 3184 - [[package]] 3185 - name = "windows" 3186 - version = "0.52.0" 3187 - source = "registry+https://github.com/rust-lang/crates.io-index" 3188 - checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 3189 - dependencies = [ 3190 - "windows-core", 3191 - "windows-targets 0.52.0", 3192 - ] 3193 - 3194 - [[package]] 3195 - name = "windows-core" 3196 - version = "0.52.0" 3197 - source = "registry+https://github.com/rust-lang/crates.io-index" 3198 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 3199 - dependencies = [ 3200 - "windows-targets 0.52.0", 3201 - ] 3202 3203 [[package]] 3204 name = "windows-sys" ··· 3400 3401 [[package]] 3402 name = "winit" 3403 - version = "0.28.7" 3404 source = "registry+https://github.com/rust-lang/crates.io-index" 3405 - checksum = "9596d90b45384f5281384ab204224876e8e8bf7d58366d9b795ad99aa9894b94" 3406 dependencies = [ 3407 "android-activity", 3408 - "bitflags 1.3.2", 3409 "cfg_aliases", 3410 "core-foundation", 3411 "core-graphics", 3412 - "dispatch", 3413 - "instant", 3414 "libc", 3415 "log", 3416 - "mio", 3417 "ndk", 3418 "objc2", 3419 "once_cell", 3420 "orbclient", 3421 "percent-encoding", 3422 "raw-window-handle", 3423 "redox_syscall 0.3.5", 3424 "smithay-client-toolkit", 3425 "wasm-bindgen", 3426 "wayland-client", 3427 - "wayland-commons", 3428 "wayland-protocols", 3429 - "wayland-scanner", 3430 "web-sys", 3431 - "windows-sys 0.45.0", 3432 "x11-dl", 3433 ] 3434 3435 [[package]] 3436 name = "winnow" 3437 - version = "0.5.31" 3438 source = "registry+https://github.com/rust-lang/crates.io-index" 3439 - checksum = "97a4882e6b134d6c28953a387571f1acdd3496830d5e36c5e3a1075580ea641c" 3440 dependencies = [ 3441 "memchr", 3442 ] ··· 3458 source = "registry+https://github.com/rust-lang/crates.io-index" 3459 checksum = "b1641b26d4dec61337c35a1b1aaf9e3cba8f46f0b43636c609ab0291a648040a" 3460 dependencies = [ 3461 - "gethostname", 3462 - "nix 0.26.4", 3463 "winapi", 3464 "winapi-wsapoll", 3465 - "x11rb-protocol", 3466 ] 3467 3468 [[package]] ··· 3471 source = "registry+https://github.com/rust-lang/crates.io-index" 3472 checksum = "82d6c3f9a0fb6701fab8f6cea9b0c0bd5d6876f1f89f7fada07e558077c344bc" 3473 dependencies = [ 3474 - "nix 0.26.4", 3475 ] 3476 3477 [[package]] 3478 name = "xcursor" ··· 3487 checksum = "a67300977d3dc3f8034dae89778f502b6ba20b269527b3223ba59c0cf393bb8a" 3488 3489 [[package]] 3490 name = "xml-rs" 3491 version = "0.8.19" 3492 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3509 dependencies = [ 3510 "proc-macro2", 3511 "quote", 3512 - "syn 2.0.44", 3513 ]
··· 20 21 [[package]] 22 name = "accesskit" 23 + version = "0.12.2" 24 source = "registry+https://github.com/rust-lang/crates.io-index" 25 + checksum = "6cb10ed32c63247e4e39a8f42e8e30fb9442fbf7878c8e4a9849e7e381619bea" 26 dependencies = [ 27 "enumn", 28 "serde", ··· 59 60 [[package]] 61 name = "amdgpu_top" 62 + version = "0.7.0" 63 dependencies = [ 64 "amdgpu_top_gui", 65 "amdgpu_top_json", 66 "amdgpu_top_tui", 67 "gix", 68 "libamdgpu_top", 69 + "libc", 70 ] 71 72 [[package]] 73 name = "amdgpu_top_gui" 74 + version = "0.7.0" 75 dependencies = [ 76 "eframe", 77 "egui_plot", ··· 84 85 [[package]] 86 name = "amdgpu_top_json" 87 + version = "0.7.0" 88 dependencies = [ 89 "libamdgpu_top", 90 "serde_json", ··· 92 93 [[package]] 94 name = "amdgpu_top_tui" 95 + version = "0.7.0" 96 dependencies = [ 97 "cursive", 98 "libamdgpu_top", ··· 100 101 [[package]] 102 name = "android-activity" 103 + version = "0.5.2" 104 source = "registry+https://github.com/rust-lang/crates.io-index" 105 + checksum = "ee91c0c2905bae44f84bfa4e044536541df26b7703fd0888deeb9060fcc44289" 106 dependencies = [ 107 "android-properties", 108 + "bitflags 2.4.2", 109 "cc", 110 + "cesu8", 111 + "jni", 112 "jni-sys", 113 "libc", 114 "log", 115 "ndk", 116 "ndk-context", 117 "ndk-sys", 118 + "num_enum", 119 + "thiserror", 120 ] 121 122 [[package]] ··· 127 128 [[package]] 129 name = "anyhow" 130 + version = "1.0.79" 131 source = "registry+https://github.com/rust-lang/crates.io-index" 132 + checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 133 134 [[package]] 135 name = "arboard" ··· 145 "parking_lot", 146 "thiserror", 147 "winapi", 148 + "x11rb 0.12.0", 149 ] 150 151 [[package]] ··· 155 checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 156 157 [[package]] 158 + name = "as-raw-xcb-connection" 159 + version = "1.0.1" 160 + source = "registry+https://github.com/rust-lang/crates.io-index" 161 + checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b" 162 + 163 + [[package]] 164 + name = "atomic-waker" 165 + version = "1.1.2" 166 + source = "registry+https://github.com/rust-lang/crates.io-index" 167 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 168 + 169 + [[package]] 170 name = "autocfg" 171 version = "1.1.0" 172 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 174 175 [[package]] 176 name = "base64" 177 + version = "0.21.7" 178 source = "registry+https://github.com/rust-lang/crates.io-index" 179 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 180 181 [[package]] 182 name = "bitflags" ··· 186 187 [[package]] 188 name = "bitflags" 189 + version = "2.4.2" 190 source = "registry+https://github.com/rust-lang/crates.io-index" 191 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 192 dependencies = [ 193 "serde", 194 ] ··· 210 211 [[package]] 212 name = "block-sys" 213 + version = "0.2.1" 214 source = "registry+https://github.com/rust-lang/crates.io-index" 215 + checksum = "ae85a0696e7ea3b835a453750bf002770776609115e6d25c6d2ff28a8200f7e7" 216 dependencies = [ 217 "objc-sys", 218 ] 219 220 [[package]] 221 name = "block2" 222 + version = "0.3.0" 223 source = "registry+https://github.com/rust-lang/crates.io-index" 224 + checksum = "15b55663a85f33501257357e6421bb33e769d5c9ffb5ba0921c975a123e35e68" 225 dependencies = [ 226 "block-sys", 227 + "objc2", 228 ] 229 230 [[package]] ··· 255 256 [[package]] 257 name = "bytemuck" 258 + version = "1.14.1" 259 source = "registry+https://github.com/rust-lang/crates.io-index" 260 + checksum = "ed2490600f404f2b94c167e31d3ed1d5f3c225a0f3b80230053b3e0b7b962bd9" 261 dependencies = [ 262 "bytemuck_derive", 263 ] ··· 270 dependencies = [ 271 "proc-macro2", 272 "quote", 273 + "syn 2.0.48", 274 ] 275 276 [[package]] ··· 287 288 [[package]] 289 name = "calloop" 290 + version = "0.12.4" 291 source = "registry+https://github.com/rust-lang/crates.io-index" 292 + checksum = "fba7adb4dd5aa98e5553510223000e7148f621165ec5f9acd7113f6ca4995298" 293 dependencies = [ 294 + "bitflags 2.4.2", 295 "log", 296 + "polling", 297 + "rustix", 298 + "slab", 299 "thiserror", 300 + ] 301 + 302 + [[package]] 303 + name = "calloop-wayland-source" 304 + version = "0.2.0" 305 + source = "registry+https://github.com/rust-lang/crates.io-index" 306 + checksum = "0f0ea9b9476c7fad82841a8dbb380e2eae480c21910feba80725b46931ed8f02" 307 + dependencies = [ 308 + "calloop", 309 + "rustix", 310 + "wayland-backend", 311 + "wayland-client", 312 ] 313 314 [[package]] ··· 367 368 [[package]] 369 name = "cocoa" 370 + version = "0.25.0" 371 source = "registry+https://github.com/rust-lang/crates.io-index" 372 + checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c" 373 dependencies = [ 374 "bitflags 1.3.2", 375 "block", ··· 412 ] 413 414 [[package]] 415 + name = "concurrent-queue" 416 + version = "2.4.0" 417 + source = "registry+https://github.com/rust-lang/crates.io-index" 418 + checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 419 + dependencies = [ 420 + "crossbeam-utils", 421 + ] 422 + 423 + [[package]] 424 name = "core-foundation" 425 version = "0.9.4" 426 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 438 439 [[package]] 440 name = "core-graphics" 441 + version = "0.23.1" 442 source = "registry+https://github.com/rust-lang/crates.io-index" 443 + checksum = "970a29baf4110c26fedbc7f82107d42c23f7e88e404c4577ed73fe99ff85a212" 444 dependencies = [ 445 "bitflags 1.3.2", 446 "core-foundation", ··· 462 463 [[package]] 464 name = "cpufeatures" 465 + version = "0.2.12" 466 source = "registry+https://github.com/rust-lang/crates.io-index" 467 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 468 dependencies = [ 469 "libc", 470 ] ··· 480 481 [[package]] 482 name = "crossbeam-channel" 483 + version = "0.5.11" 484 source = "registry+https://github.com/rust-lang/crates.io-index" 485 + checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" 486 dependencies = [ 487 "crossbeam-utils", 488 ] 489 490 [[package]] 491 name = "crossbeam-utils" 492 + version = "0.8.19" 493 source = "registry+https://github.com/rust-lang/crates.io-index" 494 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 495 496 [[package]] 497 name = "crossterm" ··· 568 ] 569 570 [[package]] 571 + name = "cursor-icon" 572 + version = "1.1.0" 573 + source = "registry+https://github.com/rust-lang/crates.io-index" 574 + checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" 575 + 576 + [[package]] 577 name = "darling" 578 + version = "0.20.5" 579 source = "registry+https://github.com/rust-lang/crates.io-index" 580 + checksum = "fc5d6b04b3fd0ba9926f945895de7d806260a2d7431ba82e7edaecb043c4c6b8" 581 dependencies = [ 582 "darling_core", 583 "darling_macro", ··· 585 586 [[package]] 587 name = "darling_core" 588 + version = "0.20.5" 589 source = "registry+https://github.com/rust-lang/crates.io-index" 590 + checksum = "04e48a959bcd5c761246f5d090ebc2fbf7b9cd527a492b07a67510c108f1e7e3" 591 dependencies = [ 592 "fnv", 593 "ident_case", 594 "proc-macro2", 595 "quote", 596 + "syn 2.0.48", 597 ] 598 599 [[package]] 600 name = "darling_macro" 601 + version = "0.20.5" 602 source = "registry+https://github.com/rust-lang/crates.io-index" 603 + checksum = "1d1545d67a2149e1d93b7e5c7752dce5a7426eb5d1357ddcfd89336b94444f77" 604 dependencies = [ 605 "darling_core", 606 "quote", 607 + "syn 2.0.48", 608 ] 609 610 [[package]] ··· 674 dependencies = [ 675 "proc-macro2", 676 "quote", 677 + "syn 2.0.48", 678 ] 679 680 [[package]] ··· 683 source = "registry+https://github.com/rust-lang/crates.io-index" 684 checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 685 dependencies = [ 686 + "libloading", 687 ] 688 689 [[package]] ··· 700 701 [[package]] 702 name = "ecolor" 703 + version = "0.25.0" 704 source = "registry+https://github.com/rust-lang/crates.io-index" 705 + checksum = "57539aabcdbb733b6806ef421b66dec158dc1582107ad6d51913db3600303354" 706 dependencies = [ 707 "bytemuck", 708 "serde", ··· 710 711 [[package]] 712 name = "eframe" 713 + version = "0.25.0" 714 source = "registry+https://github.com/rust-lang/crates.io-index" 715 + checksum = "79c00143a1d564cf27570234c9a199cbe75dc3d43a135510fb2b93406a87ee8e" 716 dependencies = [ 717 "bytemuck", 718 "cocoa", ··· 743 744 [[package]] 745 name = "egui" 746 + version = "0.25.0" 747 source = "registry+https://github.com/rust-lang/crates.io-index" 748 + checksum = "e0bf640ed7f3bf3d14ebf00d73bacc09c886443ee84ca6494bde37953012c9e3" 749 dependencies = [ 750 "accesskit", 751 "ahash", ··· 758 759 [[package]] 760 name = "egui-winit" 761 + version = "0.25.0" 762 source = "registry+https://github.com/rust-lang/crates.io-index" 763 + checksum = "1d95d9762056c541bd2724de02910d8bccf3af8e37689dc114b21730e64f80a0" 764 dependencies = [ 765 "arboard", 766 "egui", ··· 775 776 [[package]] 777 name = "egui_glow" 778 + version = "0.25.0" 779 source = "registry+https://github.com/rust-lang/crates.io-index" 780 + checksum = "cb2ef815e80d117339c7d6b813f7678d23522d699ccd3243e267ef06166009b9" 781 dependencies = [ 782 "bytemuck", 783 "egui", 784 "glow", 785 "log", 786 + "memoffset", 787 "wasm-bindgen", 788 "web-sys", 789 ] 790 791 [[package]] 792 name = "egui_plot" 793 + version = "0.25.0" 794 source = "registry+https://github.com/rust-lang/crates.io-index" 795 + checksum = "6a159fffebf052f79d1fd26d48e68906a21fec2fce808f7c0a982ec14ed506be" 796 dependencies = [ 797 "egui", 798 ] 799 800 [[package]] 801 name = "emath" 802 + version = "0.25.0" 803 source = "registry+https://github.com/rust-lang/crates.io-index" 804 + checksum = "3ee58355767587db7ba3738930d93cad3052cd834c2b48b9ef6ef26fe4823b7e" 805 dependencies = [ 806 "bytemuck", 807 "serde", ··· 824 dependencies = [ 825 "proc-macro2", 826 "quote", 827 + "syn 2.0.48", 828 ] 829 830 [[package]] 831 name = "enumn" 832 + version = "0.1.13" 833 source = "registry+https://github.com/rust-lang/crates.io-index" 834 + checksum = "6fd000fd6988e73bbe993ea3db9b1aa64906ab88766d654973924340c8cddb42" 835 dependencies = [ 836 "proc-macro2", 837 "quote", 838 + "syn 2.0.48", 839 ] 840 841 [[package]] ··· 856 "darling", 857 "proc-macro2", 858 "quote", 859 + "syn 2.0.48", 860 ] 861 862 [[package]] 863 name = "epaint" 864 + version = "0.25.0" 865 source = "registry+https://github.com/rust-lang/crates.io-index" 866 + checksum = "e638cb066bff0903bbb6143116cfd134a42279c7d68f19c0352a94f15a402de7" 867 dependencies = [ 868 "ab_glyph", 869 "ahash", ··· 919 920 [[package]] 921 name = "fdeflate" 922 + version = "0.3.4" 923 source = "registry+https://github.com/rust-lang/crates.io-index" 924 + checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 925 dependencies = [ 926 "simd-adler32", 927 ] ··· 997 998 [[package]] 999 name = "foreign-types" 1000 + version = "0.5.0" 1001 source = "registry+https://github.com/rust-lang/crates.io-index" 1002 + checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 1003 dependencies = [ 1004 + "foreign-types-macros", 1005 "foreign-types-shared", 1006 ] 1007 1008 [[package]] 1009 + name = "foreign-types-macros" 1010 + version = "0.2.3" 1011 + source = "registry+https://github.com/rust-lang/crates.io-index" 1012 + checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 1013 + dependencies = [ 1014 + "proc-macro2", 1015 + "quote", 1016 + "syn 2.0.48", 1017 + ] 1018 + 1019 + [[package]] 1020 name = "foreign-types-shared" 1021 + version = "0.3.1" 1022 source = "registry+https://github.com/rust-lang/crates.io-index" 1023 + checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1024 1025 [[package]] 1026 name = "form_urlencoded" ··· 1052 ] 1053 1054 [[package]] 1055 + name = "gethostname" 1056 + version = "0.4.3" 1057 + source = "registry+https://github.com/rust-lang/crates.io-index" 1058 + checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" 1059 + dependencies = [ 1060 + "libc", 1061 + "windows-targets 0.48.5", 1062 + ] 1063 + 1064 + [[package]] 1065 name = "getrandom" 1066 + version = "0.2.12" 1067 source = "registry+https://github.com/rust-lang/crates.io-index" 1068 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 1069 dependencies = [ 1070 "cfg-if", 1071 "libc", ··· 1146 "gix-chunk", 1147 "gix-features", 1148 "gix-hash", 1149 + "memmap2 0.9.4", 1150 "thiserror", 1151 ] 1152 ··· 1173 1174 [[package]] 1175 name = "gix-config-value" 1176 + version = "0.14.4" 1177 source = "registry+https://github.com/rust-lang/crates.io-index" 1178 + checksum = "5b8a1e7bfb37a46ed0b8468db37a6d8a0a61d56bdbe4603ae492cb322e5f3958" 1179 dependencies = [ 1180 + "bitflags 2.4.2", 1181 "bstr", 1182 "gix-path", 1183 "libc", ··· 1255 source = "registry+https://github.com/rust-lang/crates.io-index" 1256 checksum = "5db19298c5eeea2961e5b3bf190767a2d1f09b8802aeb5f258e42276350aff19" 1257 dependencies = [ 1258 + "bitflags 2.4.2", 1259 "bstr", 1260 "gix-features", 1261 "gix-path", ··· 1301 dependencies = [ 1302 "proc-macro2", 1303 "quote", 1304 + "syn 2.0.48", 1305 ] 1306 1307 [[package]] ··· 1364 1365 [[package]] 1366 name = "gix-path" 1367 + version = "0.10.5" 1368 source = "registry+https://github.com/rust-lang/crates.io-index" 1369 + checksum = "97e9ad649bf5e109562d6acba657ca428661ec08e77eaf3a755d8fa55485be9c" 1370 dependencies = [ 1371 "bstr", 1372 "gix-trace", ··· 1454 1455 [[package]] 1456 name = "gix-sec" 1457 + version = "0.10.4" 1458 source = "registry+https://github.com/rust-lang/crates.io-index" 1459 + checksum = "f8d9bf462feaf05f2121cba7399dbc6c34d88a9cad58fc1e95027791d6a3c6d2" 1460 dependencies = [ 1461 + "bitflags 2.4.2", 1462 "gix-path", 1463 "libc", 1464 + "windows-sys 0.52.0", 1465 ] 1466 1467 [[package]] ··· 1479 1480 [[package]] 1481 name = "gix-trace" 1482 + version = "0.1.7" 1483 source = "registry+https://github.com/rust-lang/crates.io-index" 1484 + checksum = "02b202d766a7fefc596e2cc6a89cda8ad8ad733aed82da635ac120691112a9b1" 1485 1486 [[package]] 1487 name = "gix-traverse" ··· 1515 1516 [[package]] 1517 name = "gix-utils" 1518 + version = "0.1.9" 1519 source = "registry+https://github.com/rust-lang/crates.io-index" 1520 + checksum = "56e839f3d0798b296411263da6bee780a176ef8008a5dfc31287f7eda9266ab8" 1521 dependencies = [ 1522 "fastrand", 1523 + "unicode-normalization", 1524 ] 1525 1526 [[package]] ··· 1546 1547 [[package]] 1548 name = "glow" 1549 + version = "0.13.1" 1550 source = "registry+https://github.com/rust-lang/crates.io-index" 1551 + checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1" 1552 dependencies = [ 1553 "js-sys", 1554 "slotmap", ··· 1558 1559 [[package]] 1560 name = "glutin" 1561 + version = "0.31.2" 1562 source = "registry+https://github.com/rust-lang/crates.io-index" 1563 + checksum = "005459a22af86adc706522d78d360101118e2638ec21df3852fcc626e0dbb212" 1564 dependencies = [ 1565 + "bitflags 2.4.2", 1566 "cfg_aliases", 1567 "cgl", 1568 "core-foundation", ··· 1570 "glutin_egl_sys", 1571 "glutin_glx_sys", 1572 "glutin_wgl_sys", 1573 + "icrate", 1574 + "libloading", 1575 "objc2", 1576 "once_cell", 1577 "raw-window-handle", 1578 + "wayland-sys", 1579 + "windows-sys 0.48.0", 1580 "x11-dl", 1581 ] 1582 1583 [[package]] 1584 name = "glutin-winit" 1585 + version = "0.4.2" 1586 source = "registry+https://github.com/rust-lang/crates.io-index" 1587 + checksum = "1ebcdfba24f73b8412c5181e56f092b5eff16671c514ce896b258a0a64bd7735" 1588 dependencies = [ 1589 "cfg_aliases", 1590 "glutin", ··· 1594 1595 [[package]] 1596 name = "glutin_egl_sys" 1597 + version = "0.6.0" 1598 source = "registry+https://github.com/rust-lang/crates.io-index" 1599 + checksum = "77cc5623f5309ef433c3dd4ca1223195347fe62c413da8e2fdd0eb76db2d9bcd" 1600 dependencies = [ 1601 "gl_generator", 1602 + "windows-sys 0.48.0", 1603 ] 1604 1605 [[package]] 1606 name = "glutin_glx_sys" 1607 + version = "0.5.0" 1608 source = "registry+https://github.com/rust-lang/crates.io-index" 1609 + checksum = "a165fd686c10dcc2d45380b35796e577eacfd43d4660ee741ec8ebe2201b3b4f" 1610 dependencies = [ 1611 "gl_generator", 1612 "x11-dl", ··· 1614 1615 [[package]] 1616 name = "glutin_wgl_sys" 1617 + version = "0.5.0" 1618 source = "registry+https://github.com/rust-lang/crates.io-index" 1619 + checksum = "6c8098adac955faa2d31079b65dc48841251f69efd3ac25477903fc424362ead" 1620 dependencies = [ 1621 "gl_generator", 1622 ] ··· 1646 "serde", 1647 "serde_derive", 1648 "thiserror", 1649 + "toml 0.8.9", 1650 "unic-langid", 1651 ] 1652 ··· 1689 "proc-macro2", 1690 "quote", 1691 "strsim", 1692 + "syn 2.0.48", 1693 "unic-langid", 1694 ] 1695 ··· 1703 "i18n-config", 1704 "proc-macro2", 1705 "quote", 1706 + "syn 2.0.48", 1707 + ] 1708 + 1709 + [[package]] 1710 + name = "icrate" 1711 + version = "0.0.4" 1712 + source = "registry+https://github.com/rust-lang/crates.io-index" 1713 + checksum = "99d3aaff8a54577104bafdf686ff18565c3b6903ca5782a2026ef06e2c7aa319" 1714 + dependencies = [ 1715 + "block2", 1716 + "dispatch", 1717 + "objc2", 1718 ] 1719 1720 [[package]] ··· 1735 1736 [[package]] 1737 name = "image" 1738 + version = "0.24.8" 1739 source = "registry+https://github.com/rust-lang/crates.io-index" 1740 + checksum = "034bbe799d1909622a74d1193aa50147769440040ff36cb2baa947609b0a4e23" 1741 dependencies = [ 1742 "bytemuck", 1743 "byteorder", 1744 "color_quant", 1745 "num-traits", 1746 "png", 1747 ] 1748 1749 [[package]] 1750 name = "indexmap" 1751 + version = "2.2.2" 1752 source = "registry+https://github.com/rust-lang/crates.io-index" 1753 + checksum = "824b2ae422412366ba479e8111fd301f7b5faece8149317bb81925979a53f520" 1754 dependencies = [ 1755 "equivalent", 1756 "hashbrown", 1757 ] 1758 1759 [[package]] 1760 name = "intl-memoizer" 1761 version = "0.5.1" 1762 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1814 1815 [[package]] 1816 name = "js-sys" 1817 + version = "0.3.67" 1818 source = "registry+https://github.com/rust-lang/crates.io-index" 1819 + checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" 1820 dependencies = [ 1821 "wasm-bindgen", 1822 ] ··· 1835 1836 [[package]] 1837 name = "libamdgpu_top" 1838 + version = "0.7.0" 1839 dependencies = [ 1840 "anyhow", 1841 "libdrm_amdgpu_sys", ··· 1843 1844 [[package]] 1845 name = "libc" 1846 + version = "0.2.153" 1847 source = "registry+https://github.com/rust-lang/crates.io-index" 1848 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 1849 1850 [[package]] 1851 name = "libdrm_amdgpu_sys" 1852 + version = "0.5.0" 1853 + source = "git+https://github.com/Umio-Yasuno/libdrm-amdgpu-sys-rs#6852a973c639385988ce0454b59dddcf40ebcd2f" 1854 dependencies = [ 1855 "libc", 1856 ] 1857 1858 [[package]] ··· 1871 source = "registry+https://github.com/rust-lang/crates.io-index" 1872 checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 1873 dependencies = [ 1874 + "bitflags 2.4.2", 1875 "libc", 1876 "redox_syscall 0.4.1", 1877 ] ··· 1882 source = "registry+https://github.com/rust-lang/crates.io-index" 1883 checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607" 1884 dependencies = [ 1885 + "bitflags 2.4.2", 1886 "libc", 1887 "redox_syscall 0.4.1", 1888 ] 1889 1890 [[package]] 1891 name = "linux-raw-sys" 1892 + version = "0.4.13" 1893 source = "registry+https://github.com/rust-lang/crates.io-index" 1894 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 1895 1896 [[package]] 1897 name = "locale_config" ··· 1939 1940 [[package]] 1941 name = "memmap2" 1942 version = "0.7.1" 1943 source = "registry+https://github.com/rust-lang/crates.io-index" 1944 checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6" ··· 1948 1949 [[package]] 1950 name = "memmap2" 1951 + version = "0.9.4" 1952 source = "registry+https://github.com/rust-lang/crates.io-index" 1953 + checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 1954 dependencies = [ 1955 "libc", 1956 ] 1957 1958 [[package]] 1959 name = "memoffset" 1960 version = "0.7.1" 1961 source = "registry+https://github.com/rust-lang/crates.io-index" 1962 checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" ··· 1966 1967 [[package]] 1968 name = "miniz_oxide" 1969 + version = "0.7.2" 1970 source = "registry+https://github.com/rust-lang/crates.io-index" 1971 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 1972 dependencies = [ 1973 "adler", 1974 "simd-adler32", ··· 1988 1989 [[package]] 1990 name = "ndk" 1991 + version = "0.8.0" 1992 source = "registry+https://github.com/rust-lang/crates.io-index" 1993 + checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7" 1994 dependencies = [ 1995 + "bitflags 2.4.2", 1996 "jni-sys", 1997 + "log", 1998 "ndk-sys", 1999 + "num_enum", 2000 "raw-window-handle", 2001 "thiserror", 2002 ] ··· 2009 2010 [[package]] 2011 name = "ndk-sys" 2012 + version = "0.5.0+25.2.9519653" 2013 source = "registry+https://github.com/rust-lang/crates.io-index" 2014 + checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691" 2015 dependencies = [ 2016 "jni-sys", 2017 ] 2018 2019 [[package]] 2020 name = "nix" 2021 version = "0.26.4" 2022 source = "registry+https://github.com/rust-lang/crates.io-index" 2023 checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" ··· 2025 "bitflags 1.3.2", 2026 "cfg-if", 2027 "libc", 2028 + "memoffset", 2029 ] 2030 2031 [[package]] ··· 2057 ] 2058 2059 [[package]] 2060 + name = "num-conv" 2061 + version = "0.1.0" 2062 + source = "registry+https://github.com/rust-lang/crates.io-index" 2063 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2064 + 2065 + [[package]] 2066 name = "num-integer" 2067 version = "0.1.45" 2068 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2105 2106 [[package]] 2107 name = "num_enum" 2108 + version = "0.7.2" 2109 source = "registry+https://github.com/rust-lang/crates.io-index" 2110 + checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" 2111 dependencies = [ 2112 + "num_enum_derive", 2113 ] 2114 2115 [[package]] 2116 name = "num_enum_derive" 2117 + version = "0.7.2" 2118 source = "registry+https://github.com/rust-lang/crates.io-index" 2119 + checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" 2120 dependencies = [ 2121 "proc-macro-crate", 2122 "proc-macro2", 2123 "quote", 2124 + "syn 2.0.48", 2125 ] 2126 2127 [[package]] ··· 2155 2156 [[package]] 2157 name = "objc-sys" 2158 + version = "0.3.2" 2159 source = "registry+https://github.com/rust-lang/crates.io-index" 2160 + checksum = "c7c71324e4180d0899963fc83d9d241ac39e699609fc1025a850aadac8257459" 2161 2162 [[package]] 2163 name = "objc2" 2164 + version = "0.4.1" 2165 source = "registry+https://github.com/rust-lang/crates.io-index" 2166 + checksum = "559c5a40fdd30eb5e344fbceacf7595a81e242529fb4e21cf5f43fb4f11ff98d" 2167 dependencies = [ 2168 "objc-sys", 2169 "objc2-encode", 2170 ] 2171 2172 [[package]] 2173 name = "objc2-encode" 2174 + version = "3.0.0" 2175 source = "registry+https://github.com/rust-lang/crates.io-index" 2176 + checksum = "d079845b37af429bfe5dfa76e6d087d788031045b25cfc6fd898486fd9847666" 2177 2178 [[package]] 2179 name = "objc_id" ··· 2247 checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2248 2249 [[package]] 2250 + name = "pin-project-lite" 2251 + version = "0.2.13" 2252 + source = "registry+https://github.com/rust-lang/crates.io-index" 2253 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 2254 + 2255 + [[package]] 2256 name = "pkg-config" 2257 + version = "0.3.29" 2258 source = "registry+https://github.com/rust-lang/crates.io-index" 2259 + checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" 2260 2261 [[package]] 2262 name = "png" 2263 + version = "0.17.11" 2264 source = "registry+https://github.com/rust-lang/crates.io-index" 2265 + checksum = "1f6c3c3e617595665b8ea2ff95a86066be38fb121ff920a9c0eb282abcd1da5a" 2266 dependencies = [ 2267 "bitflags 1.3.2", 2268 "crc32fast", ··· 2272 ] 2273 2274 [[package]] 2275 + name = "polling" 2276 + version = "3.3.2" 2277 + source = "registry+https://github.com/rust-lang/crates.io-index" 2278 + checksum = "545c980a3880efd47b2e262f6a4bb6daad6555cf3367aa9c4e52895f69537a41" 2279 + dependencies = [ 2280 + "cfg-if", 2281 + "concurrent-queue", 2282 + "pin-project-lite", 2283 + "rustix", 2284 + "tracing", 2285 + "windows-sys 0.52.0", 2286 + ] 2287 + 2288 + [[package]] 2289 name = "powerfmt" 2290 version = "0.2.0" 2291 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2293 2294 [[package]] 2295 name = "proc-macro-crate" 2296 + version = "3.1.0" 2297 source = "registry+https://github.com/rust-lang/crates.io-index" 2298 + checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 2299 dependencies = [ 2300 + "toml_edit", 2301 ] 2302 2303 [[package]] ··· 2326 2327 [[package]] 2328 name = "proc-macro2" 2329 + version = "1.0.78" 2330 source = "registry+https://github.com/rust-lang/crates.io-index" 2331 + checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 2332 dependencies = [ 2333 "unicode-ident", 2334 ] ··· 2340 checksum = "794b5bf8e2d19b53dcdcec3e4bba628e20f5b6062503ba89281fa7037dd7bbcf" 2341 2342 [[package]] 2343 + name = "quick-xml" 2344 + version = "0.31.0" 2345 + source = "registry+https://github.com/rust-lang/crates.io-index" 2346 + checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 2347 + dependencies = [ 2348 + "memchr", 2349 + ] 2350 + 2351 + [[package]] 2352 name = "quote" 2353 + version = "1.0.35" 2354 source = "registry+https://github.com/rust-lang/crates.io-index" 2355 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 2356 dependencies = [ 2357 "proc-macro2", 2358 ] ··· 2394 2395 [[package]] 2396 name = "regex" 2397 + version = "1.10.3" 2398 source = "registry+https://github.com/rust-lang/crates.io-index" 2399 + checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 2400 dependencies = [ 2401 "aho-corasick", 2402 "memchr", ··· 2406 2407 [[package]] 2408 name = "regex-automata" 2409 + version = "0.4.5" 2410 source = "registry+https://github.com/rust-lang/crates.io-index" 2411 + checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" 2412 dependencies = [ 2413 "aho-corasick", 2414 "memchr", ··· 2428 checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 2429 dependencies = [ 2430 "base64", 2431 + "bitflags 2.4.2", 2432 "serde", 2433 "serde_derive", 2434 ] ··· 2453 "proc-macro2", 2454 "quote", 2455 "rust-embed-utils", 2456 + "syn 2.0.48", 2457 "walkdir", 2458 ] 2459 ··· 2475 2476 [[package]] 2477 name = "rustix" 2478 + version = "0.38.31" 2479 source = "registry+https://github.com/rust-lang/crates.io-index" 2480 + checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 2481 dependencies = [ 2482 + "bitflags 2.4.2", 2483 "errno", 2484 "libc", 2485 "linux-raw-sys", ··· 2530 2531 [[package]] 2532 name = "serde" 2533 + version = "1.0.196" 2534 source = "registry+https://github.com/rust-lang/crates.io-index" 2535 + checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32" 2536 dependencies = [ 2537 "serde_derive", 2538 ] 2539 2540 [[package]] 2541 name = "serde_derive" 2542 + version = "1.0.196" 2543 source = "registry+https://github.com/rust-lang/crates.io-index" 2544 + checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" 2545 dependencies = [ 2546 "proc-macro2", 2547 "quote", 2548 + "syn 2.0.48", 2549 ] 2550 2551 [[package]] 2552 name = "serde_json" 2553 + version = "1.0.113" 2554 source = "registry+https://github.com/rust-lang/crates.io-index" 2555 + checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" 2556 dependencies = [ 2557 "itoa", 2558 "ryu", ··· 2622 checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 2623 2624 [[package]] 2625 + name = "slab" 2626 + version = "0.4.9" 2627 + source = "registry+https://github.com/rust-lang/crates.io-index" 2628 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2629 + dependencies = [ 2630 + "autocfg", 2631 + ] 2632 + 2633 + [[package]] 2634 name = "slotmap" 2635 version = "1.0.7" 2636 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2641 2642 [[package]] 2643 name = "smallvec" 2644 + version = "1.13.1" 2645 source = "registry+https://github.com/rust-lang/crates.io-index" 2646 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 2647 2648 [[package]] 2649 name = "smithay-client-toolkit" 2650 + version = "0.18.0" 2651 source = "registry+https://github.com/rust-lang/crates.io-index" 2652 + checksum = "60e3d9941fa3bacf7c2bf4b065304faa14164151254cd16ce1b1bc8fc381600f" 2653 dependencies = [ 2654 + "bitflags 2.4.2", 2655 "calloop", 2656 + "calloop-wayland-source", 2657 + "cursor-icon", 2658 + "libc", 2659 "log", 2660 + "memmap2 0.9.4", 2661 + "rustix", 2662 + "thiserror", 2663 + "wayland-backend", 2664 "wayland-client", 2665 + "wayland-csd-frame", 2666 "wayland-cursor", 2667 "wayland-protocols", 2668 + "wayland-protocols-wlr", 2669 + "wayland-scanner", 2670 + "xkeysym", 2671 ] 2672 2673 [[package]] 2674 name = "smithay-clipboard" 2675 + version = "0.7.0" 2676 source = "registry+https://github.com/rust-lang/crates.io-index" 2677 + checksum = "0bb62b280ce5a5cba847669933a0948d00904cf83845c944eae96a4738cea1a6" 2678 dependencies = [ 2679 + "libc", 2680 "smithay-client-toolkit", 2681 + "wayland-backend", 2682 + ] 2683 + 2684 + [[package]] 2685 + name = "smol_str" 2686 + version = "0.2.1" 2687 + source = "registry+https://github.com/rust-lang/crates.io-index" 2688 + checksum = "e6845563ada680337a52d43bb0b29f396f2d911616f6573012645b9e3d048a49" 2689 + dependencies = [ 2690 + "serde", 2691 ] 2692 2693 [[package]] ··· 2721 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2722 dependencies = [ 2723 "proc-macro2", 2724 "unicode-ident", 2725 ] 2726 2727 [[package]] 2728 name = "syn" 2729 + version = "2.0.48" 2730 source = "registry+https://github.com/rust-lang/crates.io-index" 2731 + checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 2732 dependencies = [ 2733 "proc-macro2", 2734 "quote", ··· 2750 2751 [[package]] 2752 name = "thiserror" 2753 + version = "1.0.56" 2754 source = "registry+https://github.com/rust-lang/crates.io-index" 2755 + checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" 2756 dependencies = [ 2757 "thiserror-impl", 2758 ] 2759 2760 [[package]] 2761 name = "thiserror-impl" 2762 + version = "1.0.56" 2763 source = "registry+https://github.com/rust-lang/crates.io-index" 2764 + checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" 2765 dependencies = [ 2766 "proc-macro2", 2767 "quote", 2768 + "syn 2.0.48", 2769 ] 2770 2771 [[package]] 2772 name = "time" 2773 + version = "0.3.34" 2774 source = "registry+https://github.com/rust-lang/crates.io-index" 2775 + checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" 2776 dependencies = [ 2777 "deranged", 2778 "itoa", 2779 "libc", 2780 + "num-conv", 2781 "num_threads", 2782 "powerfmt", 2783 "serde", ··· 2793 2794 [[package]] 2795 name = "time-macros" 2796 + version = "0.2.17" 2797 source = "registry+https://github.com/rust-lang/crates.io-index" 2798 + checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" 2799 dependencies = [ 2800 + "num-conv", 2801 "time-core", 2802 ] 2803 ··· 2836 2837 [[package]] 2838 name = "toml" 2839 + version = "0.8.9" 2840 source = "registry+https://github.com/rust-lang/crates.io-index" 2841 + checksum = "c6a4b9e8023eb94392d3dca65d717c53abc5dad49c07cb65bb8fcd87115fa325" 2842 dependencies = [ 2843 "serde", 2844 "serde_spanned", 2845 "toml_datetime", 2846 + "toml_edit", 2847 ] 2848 2849 [[package]] ··· 2857 2858 [[package]] 2859 name = "toml_edit" 2860 + version = "0.21.1" 2861 source = "registry+https://github.com/rust-lang/crates.io-index" 2862 + checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 2863 dependencies = [ 2864 "indexmap", 2865 + "serde", 2866 + "serde_spanned", 2867 "toml_datetime", 2868 "winnow", 2869 ] 2870 2871 [[package]] 2872 + name = "tracing" 2873 + version = "0.1.40" 2874 source = "registry+https://github.com/rust-lang/crates.io-index" 2875 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2876 dependencies = [ 2877 + "pin-project-lite", 2878 + "tracing-core", 2879 ] 2880 2881 [[package]] 2882 + name = "tracing-core" 2883 + version = "0.1.32" 2884 + source = "registry+https://github.com/rust-lang/crates.io-index" 2885 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2886 + 2887 + [[package]] 2888 name = "ttf-parser" 2889 version = "0.20.0" 2890 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2926 2927 [[package]] 2928 name = "unicode-bidi" 2929 + version = "0.3.15" 2930 source = "registry+https://github.com/rust-lang/crates.io-index" 2931 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 2932 2933 [[package]] 2934 name = "unicode-bom" ··· 2975 ] 2976 2977 [[package]] 2978 name = "version_check" 2979 version = "0.9.4" 2980 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2998 2999 [[package]] 3000 name = "wasm-bindgen" 3001 + version = "0.2.90" 3002 source = "registry+https://github.com/rust-lang/crates.io-index" 3003 + checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" 3004 dependencies = [ 3005 "cfg-if", 3006 "wasm-bindgen-macro", ··· 3008 3009 [[package]] 3010 name = "wasm-bindgen-backend" 3011 + version = "0.2.90" 3012 source = "registry+https://github.com/rust-lang/crates.io-index" 3013 + checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" 3014 dependencies = [ 3015 "bumpalo", 3016 "log", 3017 "once_cell", 3018 "proc-macro2", 3019 "quote", 3020 + "syn 2.0.48", 3021 "wasm-bindgen-shared", 3022 ] 3023 3024 [[package]] 3025 name = "wasm-bindgen-futures" 3026 + version = "0.4.40" 3027 source = "registry+https://github.com/rust-lang/crates.io-index" 3028 + checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461" 3029 dependencies = [ 3030 "cfg-if", 3031 "js-sys", ··· 3035 3036 [[package]] 3037 name = "wasm-bindgen-macro" 3038 + version = "0.2.90" 3039 source = "registry+https://github.com/rust-lang/crates.io-index" 3040 + checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" 3041 dependencies = [ 3042 "quote", 3043 "wasm-bindgen-macro-support", ··· 3045 3046 [[package]] 3047 name = "wasm-bindgen-macro-support" 3048 + version = "0.2.90" 3049 source = "registry+https://github.com/rust-lang/crates.io-index" 3050 + checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" 3051 dependencies = [ 3052 "proc-macro2", 3053 "quote", 3054 + "syn 2.0.48", 3055 "wasm-bindgen-backend", 3056 "wasm-bindgen-shared", 3057 ] 3058 3059 [[package]] 3060 name = "wasm-bindgen-shared" 3061 + version = "0.2.90" 3062 source = "registry+https://github.com/rust-lang/crates.io-index" 3063 + checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" 3064 3065 [[package]] 3066 + name = "wayland-backend" 3067 + version = "0.3.3" 3068 source = "registry+https://github.com/rust-lang/crates.io-index" 3069 + checksum = "9d50fa61ce90d76474c87f5fc002828d81b32677340112b4ef08079a9d459a40" 3070 dependencies = [ 3071 + "cc", 3072 "downcast-rs", 3073 + "rustix", 3074 "scoped-tls", 3075 + "smallvec", 3076 + "wayland-sys", 3077 + ] 3078 + 3079 + [[package]] 3080 + name = "wayland-client" 3081 + version = "0.31.2" 3082 + source = "registry+https://github.com/rust-lang/crates.io-index" 3083 + checksum = "82fb96ee935c2cea6668ccb470fb7771f6215d1691746c2d896b447a00ad3f1f" 3084 + dependencies = [ 3085 + "bitflags 2.4.2", 3086 + "rustix", 3087 + "wayland-backend", 3088 "wayland-scanner", 3089 ] 3090 3091 [[package]] 3092 + name = "wayland-csd-frame" 3093 + version = "0.3.0" 3094 source = "registry+https://github.com/rust-lang/crates.io-index" 3095 + checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e" 3096 dependencies = [ 3097 + "bitflags 2.4.2", 3098 + "cursor-icon", 3099 + "wayland-backend", 3100 ] 3101 3102 [[package]] 3103 name = "wayland-cursor" 3104 + version = "0.31.1" 3105 source = "registry+https://github.com/rust-lang/crates.io-index" 3106 + checksum = "71ce5fa868dd13d11a0d04c5e2e65726d0897be8de247c0c5a65886e283231ba" 3107 dependencies = [ 3108 + "rustix", 3109 "wayland-client", 3110 "xcursor", 3111 ] 3112 3113 [[package]] 3114 name = "wayland-protocols" 3115 + version = "0.31.2" 3116 source = "registry+https://github.com/rust-lang/crates.io-index" 3117 + checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4" 3118 dependencies = [ 3119 + "bitflags 2.4.2", 3120 + "wayland-backend", 3121 "wayland-client", 3122 "wayland-scanner", 3123 ] 3124 3125 [[package]] 3126 + name = "wayland-protocols-plasma" 3127 + version = "0.2.0" 3128 source = "registry+https://github.com/rust-lang/crates.io-index" 3129 + checksum = "23803551115ff9ea9bce586860c5c5a971e360825a0309264102a9495a5ff479" 3130 dependencies = [ 3131 + "bitflags 2.4.2", 3132 + "wayland-backend", 3133 + "wayland-client", 3134 + "wayland-protocols", 3135 + "wayland-scanner", 3136 ] 3137 3138 [[package]] 3139 + name = "wayland-protocols-wlr" 3140 + version = "0.2.0" 3141 + source = "registry+https://github.com/rust-lang/crates.io-index" 3142 + checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6" 3143 + dependencies = [ 3144 + "bitflags 2.4.2", 3145 + "wayland-backend", 3146 + "wayland-client", 3147 + "wayland-protocols", 3148 + "wayland-scanner", 3149 + ] 3150 + 3151 + [[package]] 3152 + name = "wayland-scanner" 3153 + version = "0.31.1" 3154 source = "registry+https://github.com/rust-lang/crates.io-index" 3155 + checksum = "63b3a62929287001986fb58c789dce9b67604a397c15c611ad9f747300b6c283" 3156 dependencies = [ 3157 + "proc-macro2", 3158 + "quick-xml", 3159 + "quote", 3160 ] 3161 3162 [[package]] 3163 name = "wayland-sys" 3164 + version = "0.31.1" 3165 source = "registry+https://github.com/rust-lang/crates.io-index" 3166 + checksum = "15a0c8eaff5216d07f226cb7a549159267f3467b289d9a2e52fd3ef5aae2b7af" 3167 dependencies = [ 3168 "dlib", 3169 "log", 3170 + "once_cell", 3171 "pkg-config", 3172 ] 3173 3174 [[package]] 3175 name = "web-sys" 3176 + version = "0.3.67" 3177 source = "registry+https://github.com/rust-lang/crates.io-index" 3178 + checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed" 3179 dependencies = [ 3180 "js-sys", 3181 "wasm-bindgen", ··· 3247 version = "0.4.0" 3248 source = "registry+https://github.com/rust-lang/crates.io-index" 3249 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3250 3251 [[package]] 3252 name = "windows-sys" ··· 3448 3449 [[package]] 3450 name = "winit" 3451 + version = "0.29.10" 3452 source = "registry+https://github.com/rust-lang/crates.io-index" 3453 + checksum = "4c824f11941eeae66ec71111cc2674373c772f482b58939bb4066b642aa2ffcf" 3454 dependencies = [ 3455 + "ahash", 3456 "android-activity", 3457 + "atomic-waker", 3458 + "bitflags 2.4.2", 3459 + "bytemuck", 3460 + "calloop", 3461 "cfg_aliases", 3462 "core-foundation", 3463 "core-graphics", 3464 + "cursor-icon", 3465 + "icrate", 3466 + "js-sys", 3467 "libc", 3468 "log", 3469 + "memmap2 0.9.4", 3470 "ndk", 3471 + "ndk-sys", 3472 "objc2", 3473 "once_cell", 3474 "orbclient", 3475 "percent-encoding", 3476 "raw-window-handle", 3477 "redox_syscall 0.3.5", 3478 + "rustix", 3479 "smithay-client-toolkit", 3480 + "smol_str", 3481 + "unicode-segmentation", 3482 "wasm-bindgen", 3483 + "wasm-bindgen-futures", 3484 + "wayland-backend", 3485 "wayland-client", 3486 "wayland-protocols", 3487 + "wayland-protocols-plasma", 3488 "web-sys", 3489 + "web-time", 3490 + "windows-sys 0.48.0", 3491 "x11-dl", 3492 + "x11rb 0.13.0", 3493 + "xkbcommon-dl", 3494 ] 3495 3496 [[package]] 3497 name = "winnow" 3498 + version = "0.5.37" 3499 source = "registry+https://github.com/rust-lang/crates.io-index" 3500 + checksum = "a7cad8365489051ae9f054164e459304af2e7e9bb407c958076c8bf4aef52da5" 3501 dependencies = [ 3502 "memchr", 3503 ] ··· 3519 source = "registry+https://github.com/rust-lang/crates.io-index" 3520 checksum = "b1641b26d4dec61337c35a1b1aaf9e3cba8f46f0b43636c609ab0291a648040a" 3521 dependencies = [ 3522 + "gethostname 0.3.0", 3523 + "nix", 3524 "winapi", 3525 "winapi-wsapoll", 3526 + "x11rb-protocol 0.12.0", 3527 + ] 3528 + 3529 + [[package]] 3530 + name = "x11rb" 3531 + version = "0.13.0" 3532 + source = "registry+https://github.com/rust-lang/crates.io-index" 3533 + checksum = "f8f25ead8c7e4cba123243a6367da5d3990e0d3affa708ea19dce96356bd9f1a" 3534 + dependencies = [ 3535 + "as-raw-xcb-connection", 3536 + "gethostname 0.4.3", 3537 + "libc", 3538 + "libloading", 3539 + "once_cell", 3540 + "rustix", 3541 + "x11rb-protocol 0.13.0", 3542 ] 3543 3544 [[package]] ··· 3547 source = "registry+https://github.com/rust-lang/crates.io-index" 3548 checksum = "82d6c3f9a0fb6701fab8f6cea9b0c0bd5d6876f1f89f7fada07e558077c344bc" 3549 dependencies = [ 3550 + "nix", 3551 ] 3552 + 3553 + [[package]] 3554 + name = "x11rb-protocol" 3555 + version = "0.13.0" 3556 + source = "registry+https://github.com/rust-lang/crates.io-index" 3557 + checksum = "e63e71c4b8bd9ffec2c963173a4dc4cbde9ee96961d4fcb4429db9929b606c34" 3558 3559 [[package]] 3560 name = "xcursor" ··· 3569 checksum = "a67300977d3dc3f8034dae89778f502b6ba20b269527b3223ba59c0cf393bb8a" 3570 3571 [[package]] 3572 + name = "xkbcommon-dl" 3573 + version = "0.4.1" 3574 + source = "registry+https://github.com/rust-lang/crates.io-index" 3575 + checksum = "6924668544c48c0133152e7eec86d644a056ca3d09275eb8d5cdb9855f9d8699" 3576 + dependencies = [ 3577 + "bitflags 2.4.2", 3578 + "dlib", 3579 + "log", 3580 + "once_cell", 3581 + "xkeysym", 3582 + ] 3583 + 3584 + [[package]] 3585 + name = "xkeysym" 3586 + version = "0.2.0" 3587 + source = "registry+https://github.com/rust-lang/crates.io-index" 3588 + checksum = "054a8e68b76250b253f671d1268cb7f1ae089ec35e195b2efb2a4e9a836d0621" 3589 + 3590 + [[package]] 3591 name = "xml-rs" 3592 version = "0.8.19" 3593 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3610 dependencies = [ 3611 "proc-macro2", 3612 "quote", 3613 + "syn 2.0.48", 3614 ]
+3 -3
pkgs/tools/system/amdgpu_top/default.nix
··· 14 15 rustPlatform.buildRustPackage rec { 16 pname = "amdgpu_top"; 17 - version = "0.6.1"; 18 19 src = fetchFromGitHub { 20 owner = "Umio-Yasuno"; 21 repo = pname; 22 rev = "v${version}"; 23 - hash = "sha256-/8fYoIp0EezqamKYoZYLllKm5BmljJ0iRpaM2uSPw5Q="; 24 }; 25 26 cargoLock = { 27 outputHashes = { 28 - "libdrm_amdgpu_sys-0.4.1" = "sha256-4z6f0vQHF2sAbvAoGMTrAzI953bjsA7Kw719HDuhjg4="; 29 }; 30 lockFile = ./Cargo.lock; 31 };
··· 14 15 rustPlatform.buildRustPackage rec { 16 pname = "amdgpu_top"; 17 + version = "0.7.0"; 18 19 src = fetchFromGitHub { 20 owner = "Umio-Yasuno"; 21 repo = pname; 22 rev = "v${version}"; 23 + hash = "sha256-8fEYIrBh+O+bL3szKHvAD+wBTY+ScxBZvjpNufmfYYA="; 24 }; 25 26 cargoLock = { 27 outputHashes = { 28 + "libdrm_amdgpu_sys-0.5.0" = "sha256-Sqq3Qnt6hMUubhVgetFCPMFqRrcJuGDT9V4ZRaNgcpQ="; 29 }; 30 lockFile = ./Cargo.lock; 31 };
+2 -2
pkgs/tools/system/thermald/default.nix
··· 18 19 stdenv.mkDerivation rec { 20 pname = "thermald"; 21 - version = "2.5.4"; 22 23 outputs = [ "out" "devdoc" ]; 24 ··· 26 owner = "intel"; 27 repo = "thermal_daemon"; 28 rev = "v${version}"; 29 - sha256 = "sha256-5UILKdv+HhilY+NsbMwqqvYjbM3mAeec/lX+CGY0CPE="; 30 }; 31 32 nativeBuildInputs = [
··· 18 19 stdenv.mkDerivation rec { 20 pname = "thermald"; 21 + version = "2.5.6"; 22 23 outputs = [ "out" "devdoc" ]; 24 ··· 26 owner = "intel"; 27 repo = "thermal_daemon"; 28 rev = "v${version}"; 29 + sha256 = "sha256-7QoHq3NtBtGJ/ihiAkGWBng9mP+NAUiNX03Fb4T11cg="; 30 }; 31 32 nativeBuildInputs = [
+2 -2
pkgs/tools/system/zram-generator/Cargo.lock
··· 259 260 [[package]] 261 name = "rustix" 262 - version = "0.38.30" 263 source = "registry+https://github.com/rust-lang/crates.io-index" 264 - checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" 265 dependencies = [ 266 "bitflags 2.4.2", 267 "errno",
··· 259 260 [[package]] 261 name = "rustix" 262 + version = "0.38.31" 263 source = "registry+https://github.com/rust-lang/crates.io-index" 264 + checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 265 dependencies = [ 266 "bitflags 2.4.2", 267 "errno",
-51
pkgs/tools/text/csvkit/default.nix
··· 1 - { lib 2 - , python3 3 - , fetchPypi 4 - }: 5 - 6 - let 7 - python = python3.override { 8 - packageOverrides = self: super: { 9 - sqlalchemy = super.sqlalchemy_1_4; 10 - }; 11 - }; 12 - in 13 - python.pkgs.buildPythonApplication rec { 14 - pname = "csvkit"; 15 - version = "1.1.1"; 16 - format = "setuptools"; 17 - 18 - src = fetchPypi { 19 - inherit pname version; 20 - hash = "sha256-vt23t49rIq2+1urVrV3kv7Md0sVfMhGyorO2VSkEkiM="; 21 - }; 22 - 23 - propagatedBuildInputs = with python.pkgs; [ 24 - agate 25 - agate-excel 26 - agate-dbf 27 - agate-sql 28 - setuptools # csvsql imports pkg_resources 29 - ]; 30 - 31 - nativeCheckInputs = with python.pkgs; [ 32 - pytestCheckHook 33 - ]; 34 - 35 - pythonImportsCheck = [ 36 - "csvkit" 37 - ]; 38 - 39 - disabledTests = [ 40 - # Test is comparing CLI output 41 - "test_decimal_format" 42 - ]; 43 - 44 - meta = with lib; { 45 - changelog = "https://github.com/wireservice/csvkit/blob/${version}/CHANGELOG.rst"; 46 - description = "A suite of command-line tools for converting to and working with CSV"; 47 - homepage = "https://github.com/wireservice/csvkit"; 48 - license = licenses.mit; 49 - maintainers = with maintainers; [ vrthra ]; 50 - }; 51 - }
···
+3 -3
pkgs/tools/text/mdbook-i18n-helpers/default.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "mdbook-i18n-helpers"; 8 - version = "0.3.0"; 9 10 src = fetchFromGitHub { 11 owner = "google"; 12 repo = "mdbook-i18n-helpers"; 13 # TODO fix once upstream uses semver for tags again 14 rev = "refs/tags/mdbook-i18n-helpers-${version}"; 15 - hash = "sha256-oS1U76BgTW+YnhyLPRTlIg03RR9s5oybFIdCm3MVkvc="; 16 }; 17 18 - cargoHash = "sha256-bDv6pJTFs6U5vnWy5vcLv28Mjf7zrepsfs+JCu00xkA="; 19 20 meta = with lib; { 21 description = "Helpers for a mdbook i18n workflow based on Gettext";
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "mdbook-i18n-helpers"; 8 + version = "0.3.2"; 9 10 src = fetchFromGitHub { 11 owner = "google"; 12 repo = "mdbook-i18n-helpers"; 13 # TODO fix once upstream uses semver for tags again 14 rev = "refs/tags/mdbook-i18n-helpers-${version}"; 15 + hash = "sha256-+lXIqq8T6jUkvxzvUnvRDmJg6BnT6rNK67kTm3krR0E="; 16 }; 17 18 + cargoHash = "sha256-xQwag3mlcLKI2ERhp+Sug8FZ6LMxnG4P1JaZNtrzdk8="; 19 20 meta = with lib; { 21 description = "Helpers for a mdbook i18n workflow based on Gettext";
+3 -3
pkgs/tools/text/mdbook-pagetoc/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "mdbook-pagetoc"; 5 - version = "0.1.8"; 6 7 src = fetchFromGitHub { 8 owner = "slowsage"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-yFgzgppGX3moLt7X4Xa6Cqs7v5OYJMjXKTV0sqRFL3o="; 12 }; 13 14 - cargoHash = "sha256-U5KNkUXqCU3cVYOqap19aYpaTyY91kGaGxcW8oxsUxI="; 15 16 meta = with lib; { 17 description = "Table of contents for mdbook (in sidebar)";
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "mdbook-pagetoc"; 5 + version = "0.1.9"; 6 7 src = fetchFromGitHub { 8 owner = "slowsage"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-g7UaQZzIdpv4hZgEtoJ6fyPgA9yQPw3LiATwngjHnWE="; 12 }; 13 14 + cargoHash = "sha256-qSsZaXneGW6zspgy8wHFZvRyTexy6VdySleZv0ieBsI="; 15 16 meta = with lib; { 17 description = "Table of contents for mdbook (in sidebar)";
+2 -2
pkgs/tools/typesetting/lout/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "lout"; 5 - version = "3.42.2"; 6 7 src = fetchFromGitHub { 8 owner = "william8000"; 9 repo = pname; 10 rev = version; 11 - hash = "sha256-rzCRxmwppBno6o4RM2GjE0pe/5yvyzyo375XdfX04As="; 12 }; 13 14 buildInputs = [ ghostscript ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "lout"; 5 + version = "3.43"; 6 7 src = fetchFromGitHub { 8 owner = "william8000"; 9 repo = pname; 10 rev = version; 11 + hash = "sha256-YUFrlM7BnDlG1rUV90yBvWG6lOKW5qKxs/xdq6I/kI0="; 12 }; 13 14 buildInputs = [ ghostscript ];
+2 -2
pkgs/tools/virtualization/guestfs-tools/default.nix
··· 29 30 stdenv.mkDerivation rec { 31 pname = "guestfs-tools"; 32 - version = "1.50.1"; 33 34 src = fetchurl { 35 url = "https://download.libguestfs.org/guestfs-tools/${lib.versions.majorMinor version}-stable/guestfs-tools-${version}.tar.gz"; 36 - sha256 = "sha256-rH/MK9Xid+lb1bKnspCE3gATefBnHDZAQ3NRavhTvLA="; 37 }; 38 39 nativeBuildInputs = [
··· 29 30 stdenv.mkDerivation rec { 31 pname = "guestfs-tools"; 32 + version = "1.52.0"; 33 34 src = fetchurl { 35 url = "https://download.libguestfs.org/guestfs-tools/${lib.versions.majorMinor version}-stable/guestfs-tools-${version}.tar.gz"; 36 + sha256 = "sha256-Iv0TIpcEX5CmdAbw/w7uDyoBBqXxyNz8XDlqYl/3g3Y="; 37 }; 38 39 nativeBuildInputs = [
+2 -2
pkgs/tools/wayland/kanshi/default.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "kanshi"; 15 - version = "1.5.0"; 16 17 src = fetchFromSourcehut { 18 owner = "~emersion"; 19 repo = "kanshi"; 20 rev = "v${version}"; 21 - sha256 = "sha256-vxysZWFcfYwOgFMcRuPzYpWmFOFMiwc62DqI+nTQ4MI="; 22 }; 23 24 strictDeps = true;
··· 12 13 stdenv.mkDerivation rec { 14 pname = "kanshi"; 15 + version = "1.5.1"; 16 17 src = fetchFromSourcehut { 18 owner = "~emersion"; 19 repo = "kanshi"; 20 rev = "v${version}"; 21 + sha256 = "sha256-Ck0yRt9TYLFRojn+VKnjP5RzkX0hciuQOT6drTH7gtU="; 22 }; 23 24 strictDeps = true;
+2 -2
pkgs/tools/wayland/way-displays/default.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "way-displays"; 12 - version = "1.9.0"; 13 14 src = fetchFromGitHub { 15 owner = "alex-courtis"; 16 repo = "way-displays"; 17 rev = version; 18 - sha256 = "sha256-X+/aM+/2pO1FbHGwEiC2w9AxPXHf1EVZkyr+CXtprLk="; 19 }; 20 21 strictDeps = true;
··· 9 10 stdenv.mkDerivation rec { 11 pname = "way-displays"; 12 + version = "1.10.2"; 13 14 src = fetchFromGitHub { 15 owner = "alex-courtis"; 16 repo = "way-displays"; 17 rev = version; 18 + sha256 = "sha256-OEsRSmtNDt3MO5MO7Ch9mOHHHraN+9qfcFn2AhXfvpk="; 19 }; 20 21 strictDeps = true;
+2
pkgs/top-level/aliases.nix
··· 789 openmpt123 = libopenmpt; # Added 2021-09-05 790 openssl_3_0 = openssl_3; # Added 2022-06-27 791 openvpn_24 = throw "openvpn_24 has been removed, because it went EOL. 2.5.x or newer is still available"; # Added 2023-01-23 792 orchis = orchis-theme; # Added 2021-06-09 793 oni2 = throw "oni2 was removed, because it is unmaintained and was abandoned years ago."; #Added 2024-01-15 794 oroborus = throw "oroborus was removed, because it was abandoned years ago."; #Added 2023-09-10 ··· 1149 xdg_utils = xdg-utils; # Added 2021-02-01 1150 xineLib = xine-lib; # Added 2021-04-27 1151 xineUI = xine-ui; # Added 2021-04-27 1152 xtrt = throw "xtrt has been removed due to being abandoned"; # Added 2023-05-25 1153 xulrunner = firefox-unwrapped; # Added 2023-11-03 1154 xvfb_run = xvfb-run; # Added 2021-05-07
··· 789 openmpt123 = libopenmpt; # Added 2021-09-05 790 openssl_3_0 = openssl_3; # Added 2022-06-27 791 openvpn_24 = throw "openvpn_24 has been removed, because it went EOL. 2.5.x or newer is still available"; # Added 2023-01-23 792 + optparse-bash = throw "'optparse-bash' (GitHub: nk412/optparse) has been removed. Use 'argparse' instead"; # Added 2024-01-12 793 orchis = orchis-theme; # Added 2021-06-09 794 oni2 = throw "oni2 was removed, because it is unmaintained and was abandoned years ago."; #Added 2024-01-15 795 oroborus = throw "oroborus was removed, because it was abandoned years ago."; #Added 2023-09-10 ··· 1150 xdg_utils = xdg-utils; # Added 2021-02-01 1151 xineLib = xine-lib; # Added 2021-04-27 1152 xineUI = xine-ui; # Added 2021-04-27 1153 + xonsh-unwrapped = throw "'xonsh-unwrapped' was incorporated into xonsh code; call xonsh directly instead."; # Added 2024-01-20 1154 xtrt = throw "xtrt has been removed due to being abandoned"; # Added 2023-05-25 1155 xulrunner = firefox-unwrapped; # Added 2023-11-03 1156 xvfb_run = xvfb-run; # Added 2021-05-07
-7
pkgs/top-level/all-packages.nix
··· 4940 4941 csview = callPackage ../tools/text/csview { }; 4942 4943 - csvkit = callPackage ../tools/text/csvkit { }; 4944 - 4945 csvquote = callPackage ../tools/text/csvquote { }; 4946 4947 csvtool = callPackage ../development/ocaml-modules/csv/csvtool.nix { }; ··· 15395 15396 rush = callPackage ../shells/rush { }; 15397 15398 - xonsh = callPackage ../shells/xonsh/wrapper.nix { }; 15399 - xonsh-unwrapped = callPackage ../shells/xonsh { }; 15400 - 15401 zsh = callPackage ../shells/zsh { }; 15402 15403 nix-zsh-completions = callPackage ../shells/zsh/nix-zsh-completions { }; ··· 24335 inherit (python3Packages) 24336 buildPythonPackage buildPythonApplication setuptools pycsdr pydigiham; 24337 }; 24338 - 24339 - optparse-bash = callPackage ../development/libraries/optparse-bash { }; 24340 24341 oras = callPackage ../development/tools/oras { }; 24342
··· 4940 4941 csview = callPackage ../tools/text/csview { }; 4942 4943 csvquote = callPackage ../tools/text/csvquote { }; 4944 4945 csvtool = callPackage ../development/ocaml-modules/csv/csvtool.nix { }; ··· 15393 15394 rush = callPackage ../shells/rush { }; 15395 15396 zsh = callPackage ../shells/zsh { }; 15397 15398 nix-zsh-completions = callPackage ../shells/zsh/nix-zsh-completions { }; ··· 24330 inherit (python3Packages) 24331 buildPythonPackage buildPythonApplication setuptools pycsdr pydigiham; 24332 }; 24333 24334 oras = callPackage ../development/tools/oras { }; 24335
+2
pkgs/top-level/php-packages.nix
··· 343 xdebug = callPackage ../development/php-packages/xdebug { }; 344 345 yaml = callPackage ../development/php-packages/yaml { }; 346 } // lib.optionalAttrs config.allowAliases { 347 php-spx = throw "php-spx is deprecated, use spx instead"; 348 } // (
··· 343 xdebug = callPackage ../development/php-packages/xdebug { }; 344 345 yaml = callPackage ../development/php-packages/yaml { }; 346 + 347 + zstd = callPackage ../development/php-packages/zstd { }; 348 } // lib.optionalAttrs config.allowAliases { 349 php-spx = throw "php-spx is deprecated, use spx instead"; 350 } // (