Merge master into staging-next

Changed files
+535 -2687
pkgs
applications
radio
freedv
by-name
_9
_9base
ex
fh
fheroes2
fr
frankenphp
freedv
ha
hactool
hy
hyprpolkitagent
ne
neofetch
nu
nuclear
os
ossia-score
pr
prometheus-nvidia-gpu-exporter
qu
sn
su
sudachi-rs
sudo
ta
taktuk
taterclient-ddnet
up
upcloud-cli
wa
watcher
wb
wi
wit-bindgen
ze
zenith
desktops
pantheon
desktop
elementary-default-settings
development
interpreters
python
python-modules
bloodhound-py
cohere
internetarchive
jiter
lazy
meraki
meshtastic
mkdocs-material
ptest
pyinfra
pyngrok
sudachipy
tess
tools
tools
networking
openssh
security
gnupg
system
zenith
top-level
-93
pkgs/applications/radio/freedv/default.nix
···
-
{ config
-
, lib
-
, stdenv
-
, fetchFromGitHub
-
, cmake
-
, macdylibbundler
-
, makeWrapper
-
, darwin
-
, codec2
-
, libpulseaudio
-
, libsamplerate
-
, libsndfile
-
, lpcnetfreedv
-
, portaudio
-
, speexdsp
-
, hamlib_4
-
, wxGTK32
-
, sioclient
-
, pulseSupport ? config.pulseaudio or stdenv.hostPlatform.isLinux
-
, AppKit
-
, AVFoundation
-
, Cocoa
-
, CoreMedia
-
}:
-
-
stdenv.mkDerivation rec {
-
pname = "freedv";
-
version = "1.9.9.2";
-
-
src = fetchFromGitHub {
-
owner = "drowe67";
-
repo = "freedv-gui";
-
rev = "v${version}";
-
hash = "sha256-oFuAH81mduiSQGIDgDDy1IPskqqCBmfWbpqQstUIw9g=";
-
};
-
-
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
-
substituteInPlace CMakeLists.txt \
-
--replace-fail "-Wl,-ld_classic" ""
-
substituteInPlace src/CMakeLists.txt \
-
--replace-fail "\''${CMAKE_SOURCE_DIR}/macdylibbundler/dylibbundler" "dylibbundler"
-
sed -i "/codesign/d;/hdiutil/d" src/CMakeLists.txt
-
'';
-
-
nativeBuildInputs = [
-
cmake
-
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
-
macdylibbundler
-
makeWrapper
-
darwin.autoSignDarwinBinariesHook
-
];
-
-
buildInputs = [
-
codec2
-
libsamplerate
-
libsndfile
-
lpcnetfreedv
-
speexdsp
-
hamlib_4
-
wxGTK32
-
sioclient
-
] ++ (if pulseSupport then [ libpulseaudio ] else [ portaudio ])
-
++ lib.optionals stdenv.hostPlatform.isDarwin [
-
AppKit
-
AVFoundation
-
Cocoa
-
CoreMedia
-
];
-
-
cmakeFlags = [
-
"-DUSE_INTERNAL_CODEC2:BOOL=FALSE"
-
"-DUSE_STATIC_DEPS:BOOL=FALSE"
-
"-DUNITTEST=ON"
-
"-DUSE_PULSEAUDIO:BOOL=${if pulseSupport then "TRUE" else "FALSE"}"
-
];
-
-
doCheck = true;
-
-
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
-
mkdir -p $out/Applications
-
mv $out/bin/FreeDV.app $out/Applications
-
makeWrapper $out/Applications/FreeDV.app/Contents/MacOS/FreeDV $out/bin/freedv
-
'';
-
-
meta = with lib; {
-
homepage = "https://freedv.org/";
-
description = "Digital voice for HF radio";
-
license = licenses.lgpl21;
-
maintainers = with maintainers; [ mvs wegank ];
-
platforms = platforms.unix;
-
mainProgram = "freedv";
-
};
-
}
+11 -15
pkgs/by-name/_9/_9base/package.nix
···
enableParallelBuilding = true;
strictDeps = true;
nativeBuildInputs = [ pkg-config ];
-
env.NIX_CFLAGS_COMPILE = toString (
-
[
-
# workaround build failure on -fno-common toolchains like upstream
-
# gcc-10. Otherwise build fails as:
-
# ld: diffio.o:(.bss+0x16): multiple definition of `bflag'; diffdir.o:(.bss+0x6): first defined here
-
"-fcommon"
-
# hide really common warning that floods the logs:
-
# warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
-
"-D_DEFAULT_SOURCE"
-
]
-
++ lib.optionals stdenv.cc.isClang [
-
# error: call to undeclared function 'p9mbtowc'; ISO C99 and later do not support implicit function declarations
-
"-Wno-error=implicit-function-declaration"
-
]
-
);
+
env.NIX_CFLAGS_COMPILE = toString ([
+
# workaround build failure on -fno-common toolchains like upstream
+
# gcc-10. Otherwise build fails as:
+
# ld: diffio.o:(.bss+0x16): multiple definition of `bflag'; diffdir.o:(.bss+0x6): first defined here
+
"-fcommon"
+
# hide really common warning that floods the logs:
+
# warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
+
"-D_DEFAULT_SOURCE"
+
# error: call to undeclared function 'p9mbtowc'; ISO C99 and later do not support implicit function declarations
+
"-Wno-error=implicit-function-declaration"
+
]);
env.LDFLAGS = lib.optionalString enableStatic "-static";
makeFlags = [
"PREFIX=${placeholder "out"}"
+7 -7
pkgs/by-name/ex/exo/package.nix
···
stdenv,
fetchFromGitHub,
python3Packages,
-
unstableGitUpdater,
+
gitUpdater,
}:
-
python3Packages.buildPythonApplication {
+
python3Packages.buildPythonApplication rec {
pname = "exo";
-
version = "0-unstable-2024-12-28";
+
version = "0.0.4-alpha";
pyproject = true;
src = fetchFromGitHub {
owner = "exo-explore";
repo = "exo";
-
rev = "a174c78004e5fc62220dd4e9734e8ad4eaa75e39";
-
hash = "sha256-q68dcAz4QPS5mSuHSlQ3BnXkPzOi+2X2XgKLZs6SKhE=";
+
tag = "v${version}";
+
hash = "sha256-tB+/MtAAyBwoculoToiUgwqHOKEOu6Ip1Jvx0+FqC8o=";
};
build-system = with python3Packages; [ setuptools ];
···
doCheck = stdenv.hostPlatform.isDarwin;
passthru = {
-
updateScript = unstableGitUpdater {
-
hardcodeZeroVersion = true;
+
updateScript = gitUpdater {
+
rev-prefix = "v-";
};
};
+3 -3
pkgs/by-name/fh/fheroes2/package.nix
···
stdenv.mkDerivation rec {
pname = "fheroes2";
-
version = "1.1.4";
+
version = "1.1.5";
src = fetchFromGitHub {
owner = "ihhub";
repo = "fheroes2";
rev = version;
-
hash = "sha256-hgFOXAxbCpG3lHWyX6gE/aGJ1A/QymWHMmRwta997+Q=";
+
hash = "sha256-Iy7aDC2IRwaNcX+hqtlKNDdOC8WCIlCxfNVeMRK6KP4=";
};
nativeBuildInputs = [ imagemagick ];
···
installPhase = ''
runHook preInstall
-
install -Dm755 $PWD/src/dist/fheroes2 $out/bin/fheroes2
+
install -Dm755 $PWD/src/dist/fheroes2/fheroes2 $out/bin/fheroes2
install -Dm644 -t $out/share/fheroes2/files/lang $PWD/files/lang/*.mo
install -Dm644 -t $out/share/fheroes2/files/data $PWD/files/data/resurrection.h2d
+9 -4
pkgs/by-name/fr/frankenphp/package.nix
···
fetchFromGitHub,
php,
brotli,
+
watcher,
testers,
frankenphp,
cctools,
···
in
buildGoModule rec {
pname = "frankenphp";
-
version = "1.2.5";
+
version = "1.4.0";
src = fetchFromGitHub {
owner = "dunglas";
repo = "frankenphp";
-
rev = "v${version}";
-
hash = "sha256-X6lWbxgqj0wis/cljoNSh7AsH1zY30GTjSOAGXzUIek=";
+
tag = "v${version}";
+
hash = "sha256-DxKNem7U5DD2l34vIwE6s3TIM1PSixq2J/5jufk1JUc=";
};
sourceRoot = "${src.name}/caddy";
···
# frankenphp requires C code that would be removed with `go mod tidy`
# https://github.com/golang/go/issues/26366
proxyVendor = true;
-
vendorHash = "sha256-U2B0ok6TgqUPMwlnkzpPkJLG22S3VpoU80bWwZAeaJo=";
+
vendorHash = "sha256-KlWRyQz//sR24IJj9RvRtPQG0N0FjVSL6Yrq0Nhgi/A=";
buildInputs = [
phpUnwrapped
brotli
+
watcher
] ++ phpUnwrapped.buildInputs;
nativeBuildInputs =
[ makeBinaryWrapper ]
···
"netgo"
"ousergo"
"static_build"
+
"nobadger"
+
"nomysql"
+
"nopgx"
];
ldflags = [
+89
pkgs/by-name/fr/freedv/package.nix
···
+
{
+
config,
+
lib,
+
stdenv,
+
fetchFromGitHub,
+
cmake,
+
macdylibbundler,
+
makeWrapper,
+
darwin,
+
codec2,
+
libpulseaudio,
+
libsamplerate,
+
libsndfile,
+
lpcnetfreedv,
+
portaudio,
+
speexdsp,
+
hamlib_4,
+
wxGTK32,
+
sioclient,
+
pulseSupport ? config.pulseaudio or stdenv.hostPlatform.isLinux,
+
}:
+
+
stdenv.mkDerivation rec {
+
pname = "freedv";
+
version = "1.9.9.2";
+
+
src = fetchFromGitHub {
+
owner = "drowe67";
+
repo = "freedv-gui";
+
tag = "v${version}";
+
hash = "sha256-oFuAH81mduiSQGIDgDDy1IPskqqCBmfWbpqQstUIw9g=";
+
};
+
+
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
+
substituteInPlace CMakeLists.txt \
+
--replace-fail "-Wl,-ld_classic" ""
+
substituteInPlace src/CMakeLists.txt \
+
--replace-fail "\''${CMAKE_SOURCE_DIR}/macdylibbundler/dylibbundler" "dylibbundler"
+
sed -i "/codesign/d;/hdiutil/d" src/CMakeLists.txt
+
'';
+
+
nativeBuildInputs =
+
[
+
cmake
+
]
+
++ lib.optionals stdenv.hostPlatform.isDarwin [
+
macdylibbundler
+
makeWrapper
+
darwin.autoSignDarwinBinariesHook
+
];
+
+
buildInputs = [
+
codec2
+
libsamplerate
+
libsndfile
+
lpcnetfreedv
+
speexdsp
+
hamlib_4
+
wxGTK32
+
sioclient
+
] ++ (if pulseSupport then [ libpulseaudio ] else [ portaudio ]);
+
+
cmakeFlags = [
+
(lib.cmakeBool "USE_INTERNAL_CODEC2" false)
+
(lib.cmakeBool "USE_STATIC_DEPS" false)
+
(lib.cmakeBool "UNITTEST" true)
+
(lib.cmakeBool "USE_PULSEAUDIO" pulseSupport)
+
];
+
+
doCheck = true;
+
+
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
+
mkdir -p $out/Applications
+
mv $out/bin/FreeDV.app $out/Applications
+
makeWrapper $out/Applications/FreeDV.app/Contents/MacOS/FreeDV $out/bin/freedv
+
'';
+
+
meta = {
+
homepage = "https://freedv.org/";
+
description = "Digital voice for HF radio";
+
license = lib.licenses.lgpl21Only;
+
maintainers = with lib.maintainers; [
+
mvs
+
wegank
+
];
+
platforms = lib.platforms.unix;
+
mainProgram = "freedv";
+
};
+
}
+2 -2
pkgs/by-name/ha/hactool/package.nix
···
enableParallelBuilding = true;
installPhase = ''
-
install -D hactool $out/bin/hactool
+
install -D hactool${stdenv.hostPlatform.extensions.executable} $out/bin/hactool${stdenv.hostPlatform.extensions.executable}
'';
meta = with lib; {
···
longDescription = "A tool to view information about, decrypt, and extract common file formats for the Nintendo Switch, especially Nintendo Content Archives";
license = licenses.isc;
maintainers = [ ];
-
platforms = platforms.unix;
+
platforms = platforms.all;
mainProgram = "hactool";
};
}
+2 -2
pkgs/by-name/hy/hyprpolkitagent/package.nix
···
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hyprpolkitagent";
-
version = "0.1.1";
+
version = "0.1.2";
src = fetchFromGitHub {
owner = "hyprwm";
repo = "hyprpolkitagent";
tag = "v${finalAttrs.version}";
-
hash = "sha256-fhG6YqByDW0DAixXXX6AwTJOH3MqDlQ2XrVvpusZ3Ek=";
+
hash = "sha256-K1nSPFlh5VBWNagcaZ/157gfifAXTH8lzeyfYt/UEX8=";
};
nativeBuildInputs = [
+4 -2
pkgs/by-name/ne/neofetch/package.nix
···
bash,
makeWrapper,
pciutils,
-
x11Support ? true,
+
x11Support ? !stdenvNoCC.isOpenBSD,
ueberzug,
fetchpatch,
}:
···
postInstall = ''
wrapProgram $out/bin/neofetch \
-
--prefix PATH : ${lib.makeBinPath ([ pciutils ] ++ lib.optional x11Support ueberzug)}
+
--prefix PATH : ${
+
lib.makeBinPath (lib.optional (!stdenvNoCC.isOpenBSD) pciutils ++ lib.optional x11Support ueberzug)
+
}
'';
makeFlags = [
+2 -2
pkgs/by-name/nu/nuclear/package.nix
···
}:
let
pname = "nuclear";
-
version = "0.6.40";
+
version = "0.6.41";
src = fetchurl {
# Nuclear currenntly only publishes AppImage releases for x86_64, which is hardcoded in
···
# provide more arches, we should use stdenv.hostPlatform to determine the arch and choose
# source URL accordingly.
url = "https://github.com/nukeop/nuclear/releases/download/v${version}/${pname}-v${version}-x86_64.AppImage";
-
hash = "sha256-OzTT4f+cdMzmSwdTHk8LXGg3AQcWw1ItIBbrfp16qAw=";
+
hash = "sha256-hPnFz3cQMQj8EzwqC8bNYf2MidBbLUa8U3I+vQbWpcE=";
};
appimageContents = appimageTools.extract { inherit pname version src; };
+2 -2
pkgs/by-name/os/ossia-score/package.nix
···
clangStdenv.mkDerivation (finalAttrs: {
pname = "ossia-score";
-
version = "3.3.2";
+
version = "3.4.0";
src = fetchFromGitHub {
owner = "ossia";
repo = "score";
rev = "v${finalAttrs.version}";
-
hash = "sha256-RMPsZIUZNWnnezxdZhW9oA0Cprb89NQhpwX9THHYN4M=";
+
hash = "sha256-UuU9WP8AIwNSipt9gikb5YY2mQpIbSENPv1vyIOLfVo=";
fetchSubmodules = true;
};
+3 -3
pkgs/by-name/pr/prometheus-nvidia-gpu-exporter/package.nix
···
buildGoModule rec {
pname = "prometheus-nvidia-gpu-exporter";
-
version = "1.2.1";
+
version = "1.3.0";
src = fetchFromGitHub {
owner = "utkuozdemir";
repo = "nvidia_gpu_exporter";
rev = "v${version}";
-
hash = "sha256-+YmZ25OhOeIulkOH/Apqh3jGQ4Vanv0GIuc/EjBiZ+w=";
+
hash = "sha256-nBNQqnXomQpEgspC9kmI574Onhkcg7UCXIf7O7XiiH0=";
};
-
vendorHash = "sha256-Dsp98EWRiRaawYmdr3KR2YTteeD9cmHUHQoq5CnH9gA=";
+
vendorHash = "sha256-ZzZ7MJUxXL+rX7SAHHT+KMHDkCDi5qTeAIkg4bAtMio=";
ldflags = [
"-s"
+116 -106
pkgs/by-name/qu/quickgui/pubspec.lock.json
···
"dependency": "transitive",
"description": {
"name": "_discoveryapis_commons",
-
"sha256": "f8bb1fdbd77f3d5c1d62b5b0eca75fbf1e41bf4f6c62628f880582e2182ae45d",
+
"sha256": "113c4100b90a5b70a983541782431b82168b3cae166ab130649c36eb3559d498",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "1.0.6"
+
"version": "1.0.7"
},
"ansicolor": {
"dependency": "transitive",
"description": {
"name": "ansicolor",
-
"sha256": "8bf17a8ff6ea17499e40a2d2542c2f481cd7615760c6d34065cb22bfd22e6880",
+
"sha256": "50e982d500bc863e1d703448afdbf9e5a72eb48840a4f766fa361ffd6877055f",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.0.2"
+
"version": "2.0.3"
},
"archive": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "args",
-
"sha256": "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a",
+
"sha256": "bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.5.0"
+
"version": "2.6.0"
},
"async": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "cli_util",
-
"sha256": "c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19",
+
"sha256": "ff6785f7e9e3c38ac98b2fb035701789de90154024a75b6cb926445e83197d1c",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "0.4.1"
+
"version": "0.4.2"
},
"clock": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "cross_file",
-
"sha256": "55d7b444feb71301ef6b8838dbc1ae02e63dd48c8773f3810ff53bb1e2945b32",
+
"sha256": "7caf6a750a0c04effbb52a676dce9a4a592e10ad35c34d6d2d0e4811160d5670",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "0.3.4+1"
+
"version": "0.3.4+2"
},
"crypto": {
"dependency": "transitive",
"description": {
"name": "crypto",
-
"sha256": "ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab",
+
"sha256": "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "3.0.3"
+
"version": "3.0.6"
},
"cupertino_icons": {
"dependency": "direct main",
···
"dependency": "transitive",
"description": {
"name": "dio",
-
"sha256": "11e40df547d418cc0c4900a9318b26304e665da6fa4755399a9ff9efd09034b5",
+
"sha256": "5598aa796bbf4699afd5c67c0f5f6e2ed542afc956884b9cd58c306966efc260",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "5.4.3+1"
+
"version": "5.7.0"
+
},
+
"dio_web_adapter": {
+
"dependency": "transitive",
+
"description": {
+
"name": "dio_web_adapter",
+
"sha256": "33259a9276d6cea88774a0000cfae0d861003497755969c92faa223108620dc8",
+
"url": "https://pub.dev"
+
},
+
"source": "hosted",
+
"version": "2.0.0"
},
"fake_async": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "ffi",
-
"sha256": "493f37e7df1804778ff3a53bd691d8692ddf69702cf4c1c1096a2e41b4779e21",
+
"sha256": "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.1.2"
+
"version": "2.1.3"
},
"file": {
"dependency": "transitive",
"description": {
"name": "file",
-
"sha256": "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c",
+
"sha256": "a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "7.0.0"
+
"version": "7.0.1"
},
"file_picker": {
"dependency": "direct main",
"description": {
"name": "file_picker",
-
"sha256": "824f5b9f389bfc4dddac3dea76cd70c51092d9dff0b2ece7ef4f53db8547d258",
+
"sha256": "16dc141db5a2ccc6520ebb6a2eb5945b1b09e95085c021d9f914f8ded7f1465c",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "8.0.6"
+
"version": "8.1.4"
},
"flutter": {
"dependency": "direct main",
···
"dependency": "transitive",
"description": {
"name": "flutter_plugin_android_lifecycle",
-
"sha256": "c6b0b4c05c458e1c01ad9bcc14041dd7b1f6783d487be4386f793f47a8a4d03e",
+
"sha256": "9b78450b89f059e96c9ebb355fa6b3df1d6b330436e0b885fb49594c41721398",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.0.20"
+
"version": "2.0.23"
},
"flutter_svg": {
"dependency": "direct main",
"description": {
"name": "flutter_svg",
-
"sha256": "7b4ca6cf3304575fe9c8ec64813c8d02ee41d2afe60bcfe0678bcb5375d596a2",
+
"sha256": "54900a1a1243f3c4a5506d853a2b5c2dbc38d5f27e52a52618a8054401431123",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.0.10+1"
+
"version": "2.0.16"
},
"flutter_test": {
"dependency": "direct dev",
···
"dependency": "transitive",
"description": {
"name": "google_identity_services_web",
-
"sha256": "9482364c9f8b7bd36902572ebc3a7c2b5c8ee57a9c93e6eb5099c1a9ec5265d8",
+
"sha256": "55580f436822d64c8ff9a77e37d61f5fb1e6c7ec9d632a43ee324e2a05c3c6c9",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "0.3.1+1"
+
"version": "0.3.3"
},
"googleapis": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "http",
-
"sha256": "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938",
+
"sha256": "b9c29a161230ee03d3ccf545097fccd9b87a5264228c5d348202e0f0c28f9010",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "1.2.1"
+
"version": "1.2.2"
},
"http_parser": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "image",
-
"sha256": "2237616a36c0d69aef7549ab439b833fb7f9fb9fc861af2cc9ac3eedddd69ca8",
+
"sha256": "f31d52537dc417fdcde36088fdf11d191026fd5e4fae742491ebd40e5a8bea7d",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "4.2.0"
+
"version": "4.3.0"
},
"intl": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "leak_tracker",
-
"sha256": "7f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341a",
+
"sha256": "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "10.0.4"
+
"version": "10.0.5"
},
"leak_tracker_flutter_testing": {
"dependency": "transitive",
"description": {
"name": "leak_tracker_flutter_testing",
-
"sha256": "06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8",
+
"sha256": "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "3.0.3"
+
"version": "3.0.5"
},
"leak_tracker_testing": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "logging",
-
"sha256": "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340",
+
"sha256": "c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "1.2.0"
+
"version": "1.3.0"
},
"matcher": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "material_color_utilities",
-
"sha256": "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a",
+
"sha256": "f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "0.8.0"
+
"version": "0.11.1"
},
"meta": {
"dependency": "transitive",
"description": {
"name": "meta",
-
"sha256": "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136",
+
"sha256": "bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "1.12.0"
+
"version": "1.15.0"
},
"msix": {
"dependency": "transitive",
"description": {
"name": "msix",
-
"sha256": "519b183d15dc9f9c594f247e2d2339d855cf0eaacc30e19b128e14f3ecc62047",
+
"sha256": "c50d6bd1aafe0d071a3c1e5a5ccb056404502935cb0a549e3178c4aae16caf33",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "3.16.7"
+
"version": "3.16.8"
},
"mustache_template": {
"dependency": "transitive",
···
"dependency": "direct main",
"description": {
"name": "package_info_plus",
-
"sha256": "b93d8b4d624b4ea19b0a5a208b2d6eff06004bc3ce74c06040b120eeadd00ce0",
+
"sha256": "da8d9ac8c4b1df253d1a328b7bf01ae77ef132833479ab40763334db13b91cce",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "8.0.0"
+
"version": "8.1.1"
},
"package_info_plus_platform_interface": {
"dependency": "transitive",
"description": {
"name": "package_info_plus_platform_interface",
-
"sha256": "f49918f3433a3146047372f9d4f1f847511f2acd5cd030e1f44fe5a50036b70e",
+
"sha256": "ac1f4a4847f1ade8e6a87d1f39f5d7c67490738642e2542f559ec38c37489a66",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "3.0.0"
+
"version": "3.0.1"
},
"parse_app_package": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "path_parsing",
-
"sha256": "e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf",
+
"sha256": "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "1.0.1"
+
"version": "1.1.0"
},
"path_provider_linux": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "path_provider_windows",
-
"sha256": "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170",
+
"sha256": "bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.2.1"
+
"version": "2.3.0"
},
"petitparser": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "platform",
-
"sha256": "9b71283fc13df574056616011fb138fd3b793ea47cc509c189a6c3fa5f8a1a65",
+
"sha256": "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "3.1.5"
+
"version": "3.1.6"
},
"plist_parser": {
"dependency": "transitive",
···
"dependency": "direct main",
"description": {
"name": "process_run",
-
"sha256": "6052115540ad88715d6bcee60656970f70c68c85846d1948b92e435f0382899e",
+
"sha256": "a68fa9727392edad97a2a96a77ce8b0c17d28336ba1b284b1dfac9595a4299ea",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "1.0.0+1"
+
"version": "1.2.2+1"
},
"provider": {
"dependency": "direct main",
···
"dependency": "direct main",
"description": {
"name": "quiver",
-
"sha256": "b1c1ac5ce6688d77f65f3375a9abb9319b3cb32486bdc7a1e0fdf004d7ba4e47",
+
"sha256": "ea0b925899e64ecdfbf9c7becb60d5b50e706ade44a85b2363be2a22d88117d2",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "3.2.1"
+
"version": "3.2.2"
},
"recase": {
"dependency": "transitive",
···
"dependency": "direct main",
"description": {
"name": "shared_preferences",
-
"sha256": "d3bbe5553a986e83980916ded2f0b435ef2e1893dfaa29d5a7a790d0eca12180",
+
"sha256": "95f9997ca1fb9799d494d0cb2a780fd7be075818d59f00c43832ed112b158a82",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.2.3"
+
"version": "2.3.3"
},
"shared_preferences_android": {
"dependency": "transitive",
"description": {
"name": "shared_preferences_android",
-
"sha256": "93d0ec9dd902d85f326068e6a899487d1f65ffcd5798721a95330b26c8131577",
+
"sha256": "7f172d1b06de5da47b6264c2692ee2ead20bbbc246690427cdb4fc301cd0c549",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.2.3"
+
"version": "2.3.4"
},
"shared_preferences_foundation": {
"dependency": "transitive",
"description": {
"name": "shared_preferences_foundation",
-
"sha256": "0a8a893bf4fd1152f93fec03a415d11c27c74454d96e2318a7ac38dd18683ab7",
+
"sha256": "07e050c7cd39bad516f8d64c455f04508d09df104be326d8c02551590a0d513d",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.4.0"
+
"version": "2.5.3"
},
"shared_preferences_linux": {
"dependency": "transitive",
"description": {
"name": "shared_preferences_linux",
-
"sha256": "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa",
+
"sha256": "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.3.2"
+
"version": "2.4.1"
},
"shared_preferences_platform_interface": {
"dependency": "transitive",
"description": {
"name": "shared_preferences_platform_interface",
-
"sha256": "22e2ecac9419b4246d7c22bfbbda589e3acf5c0351137d87dd2939d984d37c3b",
+
"sha256": "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.3.2"
+
"version": "2.4.1"
},
"shared_preferences_web": {
"dependency": "transitive",
"description": {
"name": "shared_preferences_web",
-
"sha256": "9aee1089b36bd2aafe06582b7d7817fd317ef05fc30e6ba14bff247d0933042a",
+
"sha256": "d2ca4132d3946fec2184261726b355836a82c33d7d5b67af32692aff18a4684e",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.3.0"
+
"version": "2.4.2"
},
"shared_preferences_windows": {
"dependency": "transitive",
"description": {
"name": "shared_preferences_windows",
-
"sha256": "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59",
+
"sha256": "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.3.2"
+
"version": "2.4.1"
},
"shell_executor": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "synchronized",
-
"sha256": "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558",
+
"sha256": "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "3.1.0+1"
+
"version": "3.3.0+3"
},
"term_glyph": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "test_api",
-
"sha256": "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f",
+
"sha256": "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "0.7.0"
+
"version": "0.7.2"
},
"tuple": {
"dependency": "direct main",
···
"dependency": "transitive",
"description": {
"name": "typed_data",
-
"sha256": "facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c",
+
"sha256": "f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "1.3.2"
+
"version": "1.4.0"
},
"url_launcher": {
"dependency": "direct main",
"description": {
"name": "url_launcher",
-
"sha256": "21b704ce5fa560ea9f3b525b43601c678728ba46725bab9b01187b4831377ed3",
+
"sha256": "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "6.3.0"
+
"version": "6.3.1"
},
"url_launcher_android": {
"dependency": "transitive",
"description": {
"name": "url_launcher_android",
-
"sha256": "ceb2625f0c24ade6ef6778d1de0b2e44f2db71fded235eb52295247feba8c5cf",
+
"sha256": "6fc2f56536ee873eeb867ad176ae15f304ccccc357848b351f6f0d8d4a40d193",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "6.3.3"
+
"version": "6.3.14"
},
"url_launcher_ios": {
"dependency": "transitive",
"description": {
"name": "url_launcher_ios",
-
"sha256": "7068716403343f6ba4969b4173cbf3b84fc768042124bc2c011e5d782b24fe89",
+
"sha256": "e43b677296fadce447e987a2f519dcf5f6d1e527dc35d01ffab4fff5b8a7063e",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "6.3.0"
+
"version": "6.3.1"
},
"url_launcher_linux": {
"dependency": "transitive",
"description": {
"name": "url_launcher_linux",
-
"sha256": "ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811",
+
"sha256": "4e9ba368772369e3e08f231d2301b4ef72b9ff87c31192ef471b380ef29a4935",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "3.1.1"
+
"version": "3.2.1"
},
"url_launcher_macos": {
"dependency": "transitive",
"description": {
"name": "url_launcher_macos",
-
"sha256": "9a1a42d5d2d95400c795b2914c36fdcb525870c752569438e4ebb09a2b5d90de",
+
"sha256": "769549c999acdb42b8bcfa7c43d72bf79a382ca7441ab18a808e101149daf672",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "3.2.0"
+
"version": "3.2.1"
},
"url_launcher_platform_interface": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "url_launcher_web",
-
"sha256": "8d9e750d8c9338601e709cd0885f95825086bd8b642547f26bda435aade95d8a",
+
"sha256": "772638d3b34c779ede05ba3d38af34657a05ac55b06279ea6edd409e323dca8e",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "2.3.1"
+
"version": "2.3.3"
},
"url_launcher_windows": {
"dependency": "transitive",
"description": {
"name": "url_launcher_windows",
-
"sha256": "ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7",
+
"sha256": "44cf3aabcedde30f2dba119a9dea3b0f2672fbe6fa96e85536251d678216b3c4",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "3.1.1"
+
"version": "3.1.3"
},
"uuid": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "vector_graphics",
-
"sha256": "32c3c684e02f9bc0afb0ae0aa653337a2fe022e8ab064bcd7ffda27a74e288e3",
+
"sha256": "27d5fefe86fb9aace4a9f8375b56b3c292b64d8c04510df230f849850d912cb7",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "1.1.11+1"
+
"version": "1.1.15"
},
"vector_graphics_codec": {
"dependency": "transitive",
"description": {
"name": "vector_graphics_codec",
-
"sha256": "c86987475f162fadff579e7320c7ddda04cd2fdeffbe1129227a85d9ac9e03da",
+
"sha256": "2430b973a4ca3c4dbc9999b62b8c719a160100dcbae5c819bae0cacce32c9cdb",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "1.1.11+1"
+
"version": "1.1.12"
},
"vector_graphics_compiler": {
"dependency": "transitive",
"description": {
"name": "vector_graphics_compiler",
-
"sha256": "12faff3f73b1741a36ca7e31b292ddeb629af819ca9efe9953b70bd63fc8cd81",
+
"sha256": "1b4b9e706a10294258727674a340ae0d6e64a7231980f9f9a3d12e4b42407aad",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "1.1.11+1"
+
"version": "1.1.16"
},
"vector_math": {
"dependency": "transitive",
···
"dependency": "transitive",
"description": {
"name": "vm_service",
-
"sha256": "3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec",
+
"sha256": "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "14.2.1"
+
"version": "14.2.5"
},
"web": {
"dependency": "transitive",
"description": {
"name": "web",
-
"sha256": "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27",
+
"sha256": "cd3543bd5798f6ad290ea73d210f423502e71900302dde696f8bff84bf89a1cb",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "0.5.1"
+
"version": "1.1.0"
},
"win32": {
"dependency": "transitive",
"description": {
"name": "win32",
-
"sha256": "a79dbe579cb51ecd6d30b17e0cae4e0ea15e2c0e66f69ad4198f22a6789e94f4",
+
"sha256": "8b338d4486ab3fbc0ba0db9f9b4f5239b6697fcee427939a40e720cbb9ee0a69",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "5.5.1"
+
"version": "5.9.0"
},
"window_size": {
"dependency": "direct main",
···
"dependency": "transitive",
"description": {
"name": "xdg_directories",
-
"sha256": "faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d",
+
"sha256": "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15",
"url": "https://pub.dev"
},
"source": "hosted",
-
"version": "1.0.4"
+
"version": "1.1.0"
},
"xml": {
"dependency": "transitive",
···
},
"sdks": {
-
"dart": ">=3.4.0 <4.0.0",
-
"flutter": ">=3.22.0"
+
"dart": ">=3.5.0 <4.0.0",
+
"flutter": ">=3.24.0"
+3 -4
pkgs/by-name/sn/snyk/package.nix
···
lib,
buildNpmPackage,
fetchFromGitHub,
-
stdenv,
testers,
snyk,
nodejs_20,
}:
let
-
version = "1.1294.0";
+
version = "1.1295.0";
in
buildNpmPackage {
pname = "snyk";
···
owner = "snyk";
repo = "cli";
tag = "v${version}";
-
hash = "sha256-AO36b3VWdklfMjSEE3JMZUVS1KmBSra2xX6hqlf3OUM=";
+
hash = "sha256-KFSEnNO1K1dAU8IIrWMOXtgoRmCaGeHdEUtU+bHjIOk=";
};
-
npmDepsHash = "sha256-xGRmZyDXZVuFdpT1LcSLBh9bY86rOjGvVjyCt9PSigg=";
+
npmDepsHash = "sha256-RuIavwtTbgo5Ni7oGH2i5VAcVxfS4wKKSX6qHD8CHIw=";
postPatch = ''
substituteInPlace package.json \
+3 -3
pkgs/by-name/su/sudachi-rs/package.nix
···
rustPlatform.buildRustPackage rec {
pname = "sudachi-rs";
-
version = "0.6.9";
+
version = "0.6.10";
src = fetchFromGitHub {
owner = "WorksApplications";
repo = "sudachi.rs";
tag = "v${version}";
-
hash = "sha256-G+lJzOYxrR/Le2lgfZMXbbjCqPYmCKMy1pIomTP5NIg=";
+
hash = "sha256-2sJ9diE/EjrQmFcCc4VluE4Gu4RebTYitd7zzfgj3g4=";
};
postPatch = ''
···
--replace '"resources"' '"${placeholder "out"}/share/resources"'
'';
-
cargoHash = "sha256-iECIk5+QvTP1xiH9AcEJGKt1YHG8KASYmsuIq0vHD20=";
+
cargoHash = "sha256-fFvuxLOerqdjYogfTH3JiSlNPw2t7QT09lxp7prIpA8=";
# prepare the resources before the build so that the binary can find sudachidict
preBuild = ''
+2 -2
pkgs/by-name/su/sudo/package.nix
···
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ groff ];
-
buildInputs = [ pam ];
+
buildInputs = lib.optionals (!stdenv.hostPlatform.isOpenBSD) [ pam ];
enableParallelBuilding = true;
···
zlib
];
maintainers = with maintainers; [ rhendric ];
-
platforms = platforms.linux ++ platforms.freebsd;
+
platforms = platforms.linux ++ platforms.freebsd ++ platforms.openbsd;
mainProgram = "sudo";
};
})
+23 -6
pkgs/by-name/ta/taktuk/package.nix
···
{
lib,
stdenv,
-
fetchurl,
+
autoreconfHook,
+
fetchFromGitLab,
perl,
+
buildPackages,
}:
stdenv.mkDerivation rec {
version = "3.7.7";
pname = "taktuk";
+
nativeBuildInputs = [
+
autoreconfHook
+
perl # pod2man pod2html
+
];
+
buildInputs = [ perl ];
-
src = fetchurl {
-
url = "https://gforge.inria.fr/frs/download.php/33412/${pname}-${version}.tar.gz";
-
sha256 = "0w0h3ynlcxvq2nzm8hkj20g0805ww3vkw53g0qwj7wvp7p3gcvnr";
+
src = fetchFromGitLab {
+
domain = "gitlab.inria.fr";
+
owner = "taktuk";
+
repo = "taktuk";
+
rev = "dcd763e389a414f540b43674cbc63752176f1ce3"; # does not tag releases
+
hash = "sha256-CerOBn1VDiKFLaW2WXv6wLxfcqy1H3dlF70lrequbog=";
};
preBuild = ''
-
substituteInPlace ./taktuk --replace "/usr/bin/perl" "${perl}/bin/perl"
+
substituteInPlace ./taktuk --replace-fail "/usr/bin/perl" "${lib.getExe buildPackages.perl}"
+
'';
+
+
enableParallelBuilding = true;
+
+
preFixup = ''
+
substituteInPlace ./taktuk --replace-fail "${lib.getExe buildPackages.perl}" "/usr/bin/env perl"
'';
meta = {
···
network to transport commands and perform I/Os multiplexing. It doesn't
require any specific software on the nodes thanks to a self-propagation
algorithm.'';
-
homepage = "http://taktuk.gforge.inria.fr/";
+
homepage = "https://taktuk.gitlabpages.inria.fr/";
+
changelog = "https://gitlab.inria.fr/taktuk/taktuk/-/blob/HEAD/ChangeLog";
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.bzizou ];
platforms = lib.platforms.linux;
+3 -3
pkgs/by-name/ta/taterclient-ddnet/package.nix
···
in
stdenv.mkDerivation (finalAttrs: {
pname = "taterclient-ddnet";
-
version = "9.0.2";
+
version = "10.0.1";
src = fetchFromGitHub {
owner = "sjrc6";
repo = "taterclient-ddnet";
tag = "V${finalAttrs.version}";
-
hash = "sha256-hGbeIhtAZcgaPCsDUmZqq8mLGi1yVvauha4wGMBbmBc=";
+
hash = "sha256-mYT/njNzMwGOFKcWZMGOpS0DMu7Wy07nBP4wGpDi4Fc=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit (finalAttrs) pname src version;
-
hash = "sha256-iykFbo1zSeG9r9cIr8CGjd9GtCGcQ6vH73xpEl8J3i8=";
+
hash = "sha256-aJmdh9OthB2OyrFdxkq4xjLBphA7nn3JVmcNdJZ4pZ8=";
};
nativeBuildInputs = [
+2 -1
pkgs/by-name/up/upcloud-cli/package.nix
···
lib,
buildGoModule,
fetchFromGitHub,
+
nix-update-script,
versionCheckHook,
}:
···
doInstallCheck = true;
passthru = {
-
updateScript = lib.nix-update-script { };
+
updateScript = nix-update-script { };
};
meta = {
+32
pkgs/by-name/wa/watcher/package.nix
···
+
{
+
lib,
+
stdenv,
+
fetchFromGitHub,
+
cmake,
+
}:
+
+
stdenv.mkDerivation rec {
+
pname = "watcher";
+
version = "0.13.2";
+
+
src = fetchFromGitHub {
+
owner = "e-dant";
+
repo = "watcher";
+
tag = version;
+
hash = "sha256-PpDeZBOdWJewZAyE1J1+IF8TxlkPXUuA9TDpQqtG8I4=";
+
};
+
+
nativeBuildInputs = [
+
cmake
+
];
+
+
meta = {
+
description = "Filesystem watcher. Works anywhere. Simple, efficient and friendly";
+
homepage = "https://github.com/e-dant/watcher";
+
changelog = "https://github.com/e-dant/watcher/releases/tag/${src.tag}";
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ gaelreyrol ];
+
mainProgram = "tw";
+
platforms = lib.platforms.all;
+
};
+
}
+4
pkgs/by-name/wb/wbg/package.nix
···
(lib.mesonEnable "webp" enableWebp)
];
+
env.NIX_CFLAGS_COMPILE = toString [
+
"-Wno-error=maybe-uninitialized"
+
];
+
meta = with lib; {
description = "Wallpaper application for Wayland compositors";
homepage = "https://codeberg.org/dnkl/wbg";
+3 -3
pkgs/by-name/wi/wit-bindgen/package.nix
···
rustPlatform.buildRustPackage rec {
pname = "wit-bindgen";
-
version = "0.36.0";
+
version = "0.37.0";
src = fetchFromGitHub {
owner = "bytecodealliance";
repo = "wit-bindgen";
rev = "v${version}";
-
hash = "sha256-Ebg5llC7w2YoHqs3UatZbC5gVi6L9zGuEkzqhJhGXh4=";
+
hash = "sha256-T+9T8hyp2YCZnklh6SP5LtdYIo3kMK6z/LCfbrN77rw=";
};
-
cargoHash = "sha256-NgKxDUYWMib0+HpuuXh2znRcYVVo30VRXPHPIkW6rpk=";
+
cargoHash = "sha256-+CXwJNSg7wJF471SnxR5Ob/yhQaFxUR3xfAtlgO3nJY=";
# Some tests fail because they need network access to install the `wasm32-unknown-unknown` target.
# However, GitHub Actions ensures a proper build.
+6 -3
pkgs/desktops/pantheon/desktop/elementary-default-settings/default.nix
···
];
nativeBuildInputs = [
-
accountsservice
-
dbus
-
glib # polkit requires
+
glib # glib-compile-schemas
meson
ninja
pkg-config
+
];
+
+
buildInputs = [
+
accountsservice
+
dbus
polkit
];
+1 -1
pkgs/development/interpreters/python/editable.nix
···
entry-points
;
dependencies = map lib.getName dependencies';
-
optional-dependencies = lib.mapAttrs (_: lib.getName) optional-dependencies;
+
optional-dependencies = lib.mapAttrs (_: map lib.getName) optional-dependencies;
};
# Allow empty package
+2 -2
pkgs/development/python-modules/bloodhound-py/default.nix
···
buildPythonPackage rec {
pname = "bloodhound-py";
-
version = "1.7.2";
+
version = "1.8.0";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "bloodhound";
-
hash = "sha256-USZU19dLppoq19+JMFtiojyJk6bj96nP2JQDq7JFkHM=";
+
hash = "sha256-Ne0PH92isdeaTp2JHKvixVMJoydDru0W2IXz2An0CbM=";
};
nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/cohere/default.nix
···
buildPythonPackage rec {
pname = "cohere";
-
version = "5.13.4";
+
version = "5.13.6";
pyproject = true;
src = fetchFromGitHub {
owner = "cohere-ai";
repo = "cohere-python";
tag = version;
-
hash = "sha256-MqcbEcB+jnRh6rTqEH56k6IDpbY5ZRoqzdvxP305J7Q=";
+
hash = "sha256-LfEHyZT/x8cIXN9eMpMTVoY22uPNaBCMfw5Y9rI7WGk=";
};
build-system = [ poetry-core ];
+3 -3
pkgs/development/python-modules/internetarchive/default.nix
···
buildPythonPackage rec {
pname = "internetarchive";
-
version = "5.0.4";
+
version = "5.1.0";
pyproject = true;
-
disabled = pythonOlder "3.8";
+
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "jjjake";
repo = "internetarchive";
tag = "v${version}";
-
hash = "sha256-x4EzVm22iZhGysg2iMtuil2tNJn4/8cWYyULLowODGc=";
+
hash = "sha256-HwE8oEd5ss8HkpuQuUwdfzENYHn2z/QmzvhRIBvo1qA=";
};
build-system = [ setuptools ];
+73 -67
pkgs/development/python-modules/jiter/Cargo.lock
···
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
-
version = 3
+
version = 4
[[package]]
name = "ahash"
···
[[package]]
name = "arbitrary"
-
version = "1.3.2"
+
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
+
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
[[package]]
name = "autocfg"
···
[[package]]
name = "cc"
-
version = "1.1.31"
+
version = "1.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f"
+
checksum = "a012a0df96dd6d06ba9a1b29d6402d1a5d77c6befd2566afdc26e10603dc93d7"
dependencies = [
"jobserver",
"libc",
···
[[package]]
name = "colored"
-
version = "2.1.0"
+
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8"
+
checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
dependencies = [
"lazy_static",
"windows-sys",
···
[[package]]
name = "fuzz"
-
version = "0.6.1"
+
version = "0.8.2"
dependencies = [
"indexmap",
"jiter",
···
[[package]]
name = "hashbrown"
-
version = "0.15.0"
+
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
[[package]]
name = "heck"
···
[[package]]
name = "indexmap"
-
version = "2.6.0"
+
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
+
checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
dependencies = [
"equivalent",
"hashbrown",
···
[[package]]
name = "itoa"
-
version = "1.0.11"
+
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
[[package]]
name = "jiter"
-
version = "0.6.1"
+
version = "0.8.2"
dependencies = [
"ahash",
"bencher",
···
[[package]]
name = "jiter-python"
-
version = "0.6.1"
+
version = "0.8.2"
dependencies = [
"jiter",
"pyo3",
···
[[package]]
name = "libc"
-
version = "0.2.161"
+
version = "0.2.169"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
[[package]]
name = "libfuzzer-sys"
-
version = "0.4.7"
+
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7"
+
checksum = "9b9569d2f74e257076d8c6bfa73fb505b46b851e51ddaecc825944aa3bed17fa"
dependencies = [
"arbitrary",
"cc",
-
"once_cell",
]
[[package]]
···
[[package]]
name = "portable-atomic"
-
version = "1.9.0"
+
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
+
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
[[package]]
name = "proc-macro2"
-
version = "1.0.89"
+
version = "1.0.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
+
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
dependencies = [
"unicode-ident",
]
[[package]]
name = "pyo3"
-
version = "0.22.5"
+
version = "0.23.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3d922163ba1f79c04bc49073ba7b32fd5a8d3b76a87c955921234b8e77333c51"
+
checksum = "e484fd2c8b4cb67ab05a318f1fd6fa8f199fcc30819f08f07d200809dba26c15"
dependencies = [
"cfg-if",
"indoc",
···
[[package]]
name = "pyo3-build-config"
-
version = "0.22.5"
+
version = "0.23.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bc38c5feeb496c8321091edf3d63e9a6829eab4b863b4a6a65f26f3e9cc6b179"
+
checksum = "dc0e0469a84f208e20044b98965e1561028180219e35352a2afaf2b942beff3b"
dependencies = [
"once_cell",
"python3-dll-a",
···
[[package]]
name = "pyo3-ffi"
-
version = "0.22.5"
+
version = "0.23.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "94845622d88ae274d2729fcefc850e63d7a3ddff5e3ce11bd88486db9f1d357d"
+
checksum = "eb1547a7f9966f6f1a0f0227564a9945fe36b90da5a93b3933fc3dc03fae372d"
dependencies = [
"libc",
"pyo3-build-config",
···
[[package]]
name = "pyo3-macros"
-
version = "0.22.5"
+
version = "0.23.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e655aad15e09b94ffdb3ce3d217acf652e26bbc37697ef012f5e5e348c716e5e"
+
checksum = "fdb6da8ec6fa5cedd1626c886fc8749bdcbb09424a86461eb8cdf096b7c33257"
dependencies = [
"proc-macro2",
"pyo3-macros-backend",
···
[[package]]
name = "pyo3-macros-backend"
-
version = "0.22.5"
+
version = "0.23.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ae1e3f09eecd94618f60a455a23def79f79eba4dc561a97324bf9ac8c6df30ce"
+
checksum = "38a385202ff5a92791168b1136afae5059d3ac118457bb7bc304c197c2d33e7d"
dependencies = [
"heck",
"proc-macro2",
···
[[package]]
name = "python3-dll-a"
-
version = "0.2.10"
+
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bd0b78171a90d808b319acfad166c4790d9e9759bbc14ac8273fe133673dd41b"
+
checksum = "9b66f9171950e674e64bad3456e11bb3cca108e5c34844383cfe277f45c8a7a8"
dependencies = [
"cc",
]
[[package]]
name = "quote"
-
version = "1.0.37"
+
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
dependencies = [
"proc-macro2",
]
···
[[package]]
name = "serde"
-
version = "1.0.214"
+
version = "1.0.217"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
-
version = "1.0.214"
+
version = "1.0.217"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
dependencies = [
"proc-macro2",
"quote",
···
[[package]]
name = "serde_json"
-
version = "1.0.132"
+
version = "1.0.134"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
+
checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d"
dependencies = [
"indexmap",
"itoa",
···
[[package]]
name = "syn"
-
version = "2.0.85"
+
version = "2.0.94"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
+
checksum = "987bc0be1cdea8b10216bd06e2ca407d40b9543468fafd3ddfb02f36e77f71f3"
dependencies = [
"proc-macro2",
"quote",
···
[[package]]
name = "unicode-ident"
-
version = "1.0.13"
+
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
+
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
[[package]]
name = "unindent"
···
[[package]]
name = "windows-sys"
-
version = "0.48.0"
+
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
-
version = "0.48.5"
+
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
+
"windows_i686_gnullvm",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
···
[[package]]
name = "windows_aarch64_gnullvm"
-
version = "0.48.5"
+
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
[[package]]
name = "windows_aarch64_msvc"
-
version = "0.48.5"
+
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
[[package]]
name = "windows_i686_gnu"
-
version = "0.48.5"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
+
+
[[package]]
+
name = "windows_i686_gnullvm"
+
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
[[package]]
name = "windows_i686_msvc"
-
version = "0.48.5"
+
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
[[package]]
name = "windows_x86_64_gnu"
-
version = "0.48.5"
+
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
[[package]]
name = "windows_x86_64_gnullvm"
-
version = "0.48.5"
+
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
[[package]]
name = "windows_x86_64_msvc"
-
version = "0.48.5"
+
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
[[package]]
name = "wyz"
+2 -2
pkgs/development/python-modules/jiter/default.nix
···
buildPythonPackage rec {
pname = "jiter";
-
version = "0.6.1";
+
version = "0.8.2";
pyproject = true;
src = fetchFromGitHub {
owner = "pydantic";
repo = "jiter";
tag = "v${version}";
-
hash = "sha256-XYOdy7jduPak8XBL2hdAQfBxrmPq/nyzNlA4RygCtK0=";
+
hash = "sha256-6FPwQ6t/zLB86k97S+6z5xWKBPJvjZ5/x3KrxOOT1gk=";
};
postPatch = ''
+11 -4
pkgs/development/python-modules/lazy/default.nix
···
lib,
buildPythonPackage,
fetchPypi,
+
setuptools,
+
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "lazy";
-
version = "1.4";
-
format = "setuptools";
+
version = "1.6";
+
pyproject = true;
src = fetchPypi {
inherit pname version;
-
sha256 = "2c6d27a5ab130fb85435320651a47403adcb37ecbcc501b0c6606391f65f5b43";
-
extension = "zip";
+
hash = "sha256-cScyTscJ6DJPCMtGEcGr4Bd2vaU7uc5o3F36RsoO0+k=";
};
+
+
build-system = [ setuptools ];
+
+
pythonImportsCheck = [ "lazy" ];
+
+
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Lazy attributes for Python objects";
+19 -12
pkgs/development/python-modules/meraki/default.nix
···
lib,
aiohttp,
buildPythonPackage,
-
fetchPypi,
+
fetchFromGitHub,
pythonOlder,
requests,
+
setuptools,
}:
buildPythonPackage rec {
pname = "meraki";
-
version = "1.53.0";
-
format = "setuptools";
+
version = "1.54.0";
+
pyproject = true;
-
disabled = pythonOlder "3.8";
+
disabled = pythonOlder "3.10";
-
src = fetchPypi {
-
inherit pname version;
-
hash = "sha256-GC07gpx0Yeajm8LPcHFtkz/Uuc4kO46TUQs58/IEzyg=";
+
src = fetchFromGitHub {
+
owner = "meraki";
+
repo = "dashboard-api-python";
+
tag = version;
+
hash = "sha256-eRGVC0M8PtK3UUuECXUXrD5rGnAK04f+3/xVl+2rjAM=";
};
-
propagatedBuildInputs = [
+
build-system = [
+
setuptools
+
];
+
+
dependencies = [
aiohttp
requests
];
···
pythonImportsCheck = [ "meraki" ];
-
meta = with lib; {
-
description = "Provides all current Meraki dashboard API calls to interface with the Cisco Meraki cloud-managed platform";
+
meta = {
+
description = "Cisco Meraki cloud-managed platform dashboard API python library";
homepage = "https://github.com/meraki/dashboard-api-python";
changelog = "https://github.com/meraki/dashboard-api-python/releases/tag/${version}";
-
license = licenses.mit;
-
maintainers = with maintainers; [ dylanmtaylor ];
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ dylanmtaylor ];
};
}
+2 -2
pkgs/development/python-modules/meshtastic/default.nix
···
buildPythonPackage rec {
pname = "meshtastic";
-
version = "2.5.9";
+
version = "2.5.10";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "meshtastic";
repo = "Meshtastic-python";
tag = version;
-
hash = "sha256-q5hGAe3kJk1E/u2l8uCMyHHVuQmlwODkyZDiqxFn3Bo=";
+
hash = "sha256-uXyHblcV5qm/NJ/zYsPIr12lqI914n6KYxl4gun7XdM=";
};
pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/mkdocs-material/default.nix
···
buildPythonPackage rec {
pname = "mkdocs-material";
-
version = "9.5.45";
+
version = "9.5.49";
pyproject = true;
disabled = pythonOlder "3.7";
···
owner = "squidfunk";
repo = "mkdocs-material";
tag = version;
-
hash = "sha256-uhUatalHcObQbar1xbdR44FnQs/+qS4ad0sdB2jH/OU=";
+
hash = "sha256-jX1Y24FSXZwtuI80GB+BbDbkKvO6uk0dVEmfYjBZOrc=";
};
nativeBuildInputs = [
+24 -7
pkgs/development/python-modules/ptest/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
+
setuptools,
+
nix-update-script,
}:
buildPythonPackage rec {
pname = "ptest";
-
version = "1.7.4";
-
format = "setuptools";
+
version = "2.0.3";
+
pyproject = true;
src = fetchFromGitHub {
owner = "KarlGong";
-
repo = pname;
-
rev = version + "-release";
-
sha256 = "0v1zpfjagjlvdmgv6d502nmb7s996wadvpzg93i651s64rrlwq4s";
+
repo = "ptest";
+
tag = "${version}-release";
+
hash = "sha256-lmiBqFWGfYdsBXCh6dQ9xed+HhpP6PWa9Csr68GtLxs=";
+
};
+
+
build-system = [ setuptools ];
+
+
pythonImportsCheck = [ "ptest" ];
+
+
# I don't know how to run the tests
+
doCheck = false;
+
+
passthru.updateScript = nix-update-script {
+
extraArgs = [
+
"--version-regex"
+
"(.*)-release"
+
];
};
-
meta = with lib; {
+
meta = {
description = "Test classes and test cases using decorators, execute test cases by command line, and get clear reports";
homepage = "https://pypi.python.org/pypi/ptest";
-
license = licenses.asl20;
+
license = lib.licenses.asl20;
+
mainProgram = "ptest";
};
}
+18 -20
pkgs/development/python-modules/pyinfra/default.nix
···
lib,
buildPythonPackage,
click,
-
colorama,
-
configparser,
distro,
fetchFromGitHub,
gevent,
+
importlib-metadata,
jinja2,
packaging,
paramiko,
···
python-dateutil,
pythonOlder,
pywinrm,
-
pyyaml,
setuptools,
typeguard,
typing-extensions,
···
buildPythonPackage rec {
pname = "pyinfra";
-
version = "3.1.1";
+
version = "3.2";
pyproject = true;
disabled = pythonOlder "3.10";
···
owner = "Fizzadar";
repo = "pyinfra";
tag = "v${version}";
-
hash = "sha256-NHQpYOXlqFU4BtiwiESGV8pM0O8kqCz2TpXOGz8T4zQ=";
+
hash = "sha256-l0RD4lOLjzM9Ydf7vJr+PXpUGsVdAZN/dTUFJ3fo078=";
};
build-system = [ setuptools ];
-
dependencies = [
-
click
-
colorama
-
configparser
-
distro
-
gevent
-
jinja2
-
packaging
-
paramiko
-
python-dateutil
-
pywinrm
-
pyyaml
-
setuptools
-
typeguard
-
] ++ lib.optionals (pythonOlder "3.10") [ typing-extensions ];
+
dependencies =
+
[
+
click
+
distro
+
gevent
+
jinja2
+
packaging
+
paramiko
+
python-dateutil
+
pywinrm
+
setuptools
+
typeguard
+
]
+
++ lib.optionals (pythonOlder "3.11") [ typing-extensions ]
+
++ lib.optionals (pythonOlder "3.10") [ importlib-metadata ];
nativeCheckInputs = [ pytestCheckHook ];
+2 -2
pkgs/development/python-modules/pyngrok/default.nix
···
buildPythonPackage rec {
pname = "pyngrok";
-
version = "7.2.2";
+
version = "7.2.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
-
hash = "sha256-9ynOuiYYI6sR9hYlVgRTGu78O+roN3rBon1TNTLTvBo=";
+
hash = "sha256-zjPIo7Lubn9yftHJm12slHb/4ZBeq2uKpQapy+XXHU4=";
};
build-system = [
+1 -1
pkgs/development/python-modules/sudachipy/default.nix
···
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
-
hash = "sha256-vYn1dWu87ruEGT/9QVIvxY21LzesVyq1VPaLcTrDKvY=";
+
hash = "sha256-VuwDZaPtAgyMQGQ2eYyLAlXB8M8ZwGD5J/Nv+yysfiU=";
};
nativeBuildInputs = [
+27 -13
pkgs/development/python-modules/tess/default.nix
···
{
lib,
buildPythonPackage,
-
fetchFromGitHub,
+
fetchPypi,
cython,
+
setuptools,
numpy,
scipy,
+
pytestCheckHook,
+
python,
}:
-
buildPythonPackage {
+
buildPythonPackage rec {
pname = "tess";
-
version = "unstable-2019-05-07";
-
format = "setuptools";
+
version = "0.3.1";
+
pyproject = true;
-
src = fetchFromGitHub {
-
owner = "wackywendell";
-
repo = "tess";
-
rev = "22c19df952732f9749637d1bf6d7b676b6c7b26c";
-
sha256 = "0pj18nrfx749fjc6bjdk5r3g1104c6jy6xg7jrpmssllhypbb1m4";
+
src = fetchPypi {
+
inherit pname version;
+
hash = "sha256-5Ic06+K7CWRh1t2v3aJ5JlBACvHXqQyYzvU71jZJFtI=";
};
-
buildInputs = [ cython ];
+
build-system = [
+
cython
+
setuptools
+
];
-
propagatedBuildInputs = [
+
dependencies = [
numpy
scipy
];
-
meta = with lib; {
+
pythonImportsCheck = [ "tess" ];
+
+
nativeCheckInputs = [ pytestCheckHook ];
+
+
pytestFlagsArray = [ "tess/tests.py" ];
+
+
preCheck = ''
+
cd $out/${python.sitePackages}
+
'';
+
+
meta = {
description = "Module for calculating and analyzing Voronoi tessellations";
homepage = "https://tess.readthedocs.org";
-
license = licenses.bsd3;
+
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
-15
pkgs/development/tools/continuous-integration/buildbot/allow_git_urls_to_be_renderable_again.patch
···
-
diff --git a/master/buildbot/util/git.py b/master/buildbot/util/git.py
-
index 0ed9ac3037f..49ef359537c 100644
-
--- a/master/buildbot/util/git.py
-
+++ b/master/buildbot/util/git.py
-
@@ -67,8 +67,8 @@ def getSshCommand(keyPath, knownHostsPath):
-
-
-
def scp_style_to_url_syntax(address, port=22, scheme='ssh'):
-
- if any(['://' in address, ':\\' in address, ':' not in address]):
-
- # the address already has a URL syntax or is a local path
-
+ if not isinstance(address, str) or any(['://' in address, ':\\' in address, ':' not in address]):
-
+ # the address already has a URL syntax or is a local path or is a renderable
-
return address
-
host, path = address.split(':')
-
return f'{scheme}://{host}:{port}/{path}'
+2 -5
pkgs/development/tools/continuous-integration/buildbot/master.nix
···
in
buildPythonApplication rec {
pname = "buildbot";
-
version = "4.2.0";
+
version = "4.2.1";
format = "pyproject";
disabled = pythonOlder "3.8";
···
owner = "buildbot";
repo = "buildbot";
rev = "v${version}";
-
hash = "sha256-eraNF2J5x04qQESkned/2Io9gb2ZL9XzUfWHwSGErNY=";
+
hash = "sha256-Kf8sxZE2cQDQSVSMpRTokJU4f3/M6OJq6bXzGonrRLU=";
};
build-system = [
···
# This patch disables the test that tries to read /etc/os-release which
# is not accessible in sandboxed builds.
./skip_test_linux_distro.patch
-
-
# https://github.com/buildbot/buildbot/issues/8274
-
./allow_git_urls_to_be_renderable_again.patch
];
postPatch = ''
+6 -6
pkgs/development/tools/continuous-integration/buildbot/plugins.nix
···
src = fetchurl {
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
-
hash = "sha256-pd6ZzrFHKB/acffuM7TxUtXRsZTMIyoUWVqIiilJH/s=";
+
hash = "sha256-xwu260fcRfnUarEW3dnMcl8YheR0YmYCgNQGy7LaDGw=";
};
# Remove unnecessary circular dependency on buildbot
···
src = fetchurl {
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
-
hash = "sha256-XfELWX6d4Lat5ByNcsdw9qJd7FjUGL8GRqJkWHKjoTI=";
+
hash = "sha256-VtrgDVB+U4uM1SQ1h5IMFwU+nRcleYolDjQYJZ7iHbA=";
};
buildInputs = [ buildbot-pkg ];
···
src = fetchurl {
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
-
hash = "sha256-1osf0WefIjogFk3BqRsX/pjVIzvd18W/NG8LyuFMI/U=";
+
hash = "sha256-q4RDjn9i4wHtCctqcNIfilS9SNfS+LHohE0dSMHMOt8=";
};
buildInputs = [ buildbot-pkg ];
···
src = fetchurl {
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
-
hash = "sha256-3BqQTTj6WPbmHr6bzR4PcVnl8WcTKokY1YHLuwHYqLw=";
+
hash = "sha256-HrVoSXXo8P05JbJebKQ/bSPTIxQc9gTDT2RJLhJVhO8=";
};
buildInputs = [ buildbot-pkg ];
···
src = fetchurl {
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
-
hash = "sha256-tZBsyaBhewXs0PWxJMtPJ3yv8Z3dS1wESmJI0beMG28=";
+
hash = "sha256-x/a3iAb8vNkplAoS57IX+4BxIcH9roCixrBArUQN+04=";
};
buildInputs = [ buildbot-pkg ];
···
src = fetchurl {
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
-
hash = "sha256-oQ+exQ4eiF+y9JiYPXbJf9azJVgFZgbBby4MRcBLZgQ=";
+
hash = "sha256-kGH+Wuqn3vkATL8+aKjXbtuBEQro1tekut+7te8abQs=";
};
buildInputs = [ buildbot-pkg ];
+1
pkgs/tools/networking/openssh/common.nix
···
++ lib.optional stdenv.hostPlatform.isDarwin "--disable-libutil"
++ lib.optional (!linkOpenssl) "--without-openssl"
++ lib.optional withLdns "--with-ldns"
+
++ lib.optional stdenv.hostPlatform.isOpenBSD "--with-bsd-auth"
++ extraConfigureFlags;
${if stdenv.hostPlatform.isStatic then "NIX_LDFLAGS" else null} =
-49
pkgs/tools/security/gnupg/1.nix
···
-
{
-
lib,
-
stdenv,
-
fetchurl,
-
readline,
-
bzip2,
-
}:
-
-
stdenv.mkDerivation rec {
-
pname = "gnupg";
-
version = "1.4.23";
-
-
src = fetchurl {
-
url = "mirror://gnupg/gnupg/gnupg-${version}.tar.bz2";
-
sha256 = "1fkq4sqldvf6a25mm2qz95swv1qjg464736091w51djiwqbjyin9";
-
};
-
-
buildInputs = [
-
readline
-
bzip2
-
];
-
-
# Workaround build failure on -fno-common toolchains like upstream
-
# gcc-10. Otherwise build fails as:
-
# ld: ../util/libutil.a(estream-printf.o):/build/gnupg-1.4.23/util/../include/memory.h:100: multiple definition of
-
# `memory_debug_mode'; gpgsplit.o:/build/gnupg-1.4.23/tools/../include/memory.h:100: first defined here
-
env.NIX_CFLAGS_COMPILE = "-fcommon";
-
-
doCheck = true;
-
-
meta = with lib; {
-
homepage = "https://gnupg.org";
-
description = "Classic (1.4) release of the GNU Privacy Guard, a GPL OpenPGP implementation";
-
license = licenses.gpl3Plus;
-
longDescription = ''
-
The GNU Privacy Guard is the GNU project's complete and free
-
implementation of the OpenPGP standard as defined by RFC4880. GnuPG
-
"classic" (1.4) is the old standalone version which is most suitable for
-
older or embedded platforms. GnuPG allows to encrypt and sign your data
-
and communication, features a versatile key management system as well as
-
access modules for all kind of public key directories. GnuPG, also known
-
as GPG, is a command line tool with features for easy integration with
-
other applications. A wealth of frontend applications and libraries are
-
available.
-
'';
-
platforms = platforms.all;
-
mainProgram = "gpg";
-
};
-
}
-2172
pkgs/tools/system/zenith/Cargo.lock
···
-
# This file is automatically @generated by Cargo.
-
# It is not intended for manual editing.
-
version = 3
-
-
[[package]]
-
name = "adler"
-
version = "1.0.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
-
-
[[package]]
-
name = "android-tzdata"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
-
-
[[package]]
-
name = "android_system_properties"
-
version = "0.1.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "async-channel"
-
version = "1.9.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
-
dependencies = [
-
"concurrent-queue",
-
"event-listener 2.5.3",
-
"futures-core",
-
]
-
-
[[package]]
-
name = "async-channel"
-
version = "2.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3"
-
dependencies = [
-
"concurrent-queue",
-
"event-listener 5.2.0",
-
"event-listener-strategy 0.5.0",
-
"futures-core",
-
"pin-project-lite",
-
]
-
-
[[package]]
-
name = "async-executor"
-
version = "1.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c"
-
dependencies = [
-
"async-lock 3.3.0",
-
"async-task",
-
"concurrent-queue",
-
"fastrand 2.0.1",
-
"futures-lite 2.2.0",
-
"slab",
-
]
-
-
[[package]]
-
name = "async-fs"
-
version = "1.6.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
-
dependencies = [
-
"async-lock 2.8.0",
-
"autocfg",
-
"blocking",
-
"futures-lite 1.13.0",
-
]
-
-
[[package]]
-
name = "async-io"
-
version = "1.13.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
-
dependencies = [
-
"async-lock 2.8.0",
-
"autocfg",
-
"cfg-if 1.0.0",
-
"concurrent-queue",
-
"futures-lite 1.13.0",
-
"log",
-
"parking",
-
"polling 2.8.0",
-
"rustix 0.37.27",
-
"slab",
-
"socket2",
-
"waker-fn",
-
]
-
-
[[package]]
-
name = "async-io"
-
version = "2.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65"
-
dependencies = [
-
"async-lock 3.3.0",
-
"cfg-if 1.0.0",
-
"concurrent-queue",
-
"futures-io",
-
"futures-lite 2.2.0",
-
"parking",
-
"polling 3.5.0",
-
"rustix 0.38.31",
-
"slab",
-
"tracing",
-
"windows-sys 0.52.0",
-
]
-
-
[[package]]
-
name = "async-lock"
-
version = "2.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
-
dependencies = [
-
"event-listener 2.5.3",
-
]
-
-
[[package]]
-
name = "async-lock"
-
version = "3.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b"
-
dependencies = [
-
"event-listener 4.0.3",
-
"event-listener-strategy 0.4.0",
-
"pin-project-lite",
-
]
-
-
[[package]]
-
name = "async-net"
-
version = "1.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f"
-
dependencies = [
-
"async-io 1.13.0",
-
"blocking",
-
"futures-lite 1.13.0",
-
]
-
-
[[package]]
-
name = "async-process"
-
version = "1.8.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
-
dependencies = [
-
"async-io 1.13.0",
-
"async-lock 2.8.0",
-
"async-signal",
-
"blocking",
-
"cfg-if 1.0.0",
-
"event-listener 3.1.0",
-
"futures-lite 1.13.0",
-
"rustix 0.38.31",
-
"windows-sys 0.48.0",
-
]
-
-
[[package]]
-
name = "async-signal"
-
version = "0.2.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
-
dependencies = [
-
"async-io 2.3.1",
-
"async-lock 2.8.0",
-
"atomic-waker",
-
"cfg-if 1.0.0",
-
"futures-core",
-
"futures-io",
-
"rustix 0.38.31",
-
"signal-hook-registry",
-
"slab",
-
"windows-sys 0.48.0",
-
]
-
-
[[package]]
-
name = "async-task"
-
version = "4.7.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799"
-
-
[[package]]
-
name = "async-trait"
-
version = "0.1.77"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn 2.0.52",
-
]
-
-
[[package]]
-
name = "atomic-waker"
-
version = "1.1.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
-
-
[[package]]
-
name = "autocfg"
-
version = "1.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
-
-
[[package]]
-
name = "bincode"
-
version = "1.3.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
-
dependencies = [
-
"serde",
-
]
-
-
[[package]]
-
name = "bindgen"
-
version = "0.69.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
-
dependencies = [
-
"bitflags 2.4.2",
-
"cexpr",
-
"clang-sys",
-
"itertools 0.12.1",
-
"lazy_static",
-
"lazycell",
-
"log",
-
"prettyplease",
-
"proc-macro2",
-
"quote",
-
"regex",
-
"rustc-hash",
-
"shlex",
-
"syn 2.0.52",
-
"which",
-
]
-
-
[[package]]
-
name = "bitflags"
-
version = "1.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
-
-
[[package]]
-
name = "bitflags"
-
version = "2.4.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
-
-
[[package]]
-
name = "blocking"
-
version = "1.5.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
-
dependencies = [
-
"async-channel 2.2.0",
-
"async-lock 3.3.0",
-
"async-task",
-
"fastrand 2.0.1",
-
"futures-io",
-
"futures-lite 2.2.0",
-
"piper",
-
"tracing",
-
]
-
-
[[package]]
-
name = "bumpalo"
-
version = "3.15.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8ea184aa71bb362a1157c896979544cc23974e08fd265f29ea96b59f0b4a555b"
-
-
[[package]]
-
name = "byte-unit"
-
version = "4.0.19"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "da78b32057b8fdfc352504708feeba7216dcd65a2c9ab02978cbd288d1279b6c"
-
dependencies = [
-
"serde",
-
"utf8-width",
-
]
-
-
[[package]]
-
name = "bytes"
-
version = "1.5.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
-
-
[[package]]
-
name = "cassowary"
-
version = "0.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
-
-
[[package]]
-
name = "cc"
-
version = "1.0.89"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a0ba8f7aaa012f30d5b2861462f6708eccd49c3c39863fe083a308035f63d723"
-
-
[[package]]
-
name = "cexpr"
-
version = "0.6.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
-
dependencies = [
-
"nom",
-
]
-
-
[[package]]
-
name = "cfg-if"
-
version = "0.1.10"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
-
-
[[package]]
-
name = "cfg-if"
-
version = "1.0.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-
-
[[package]]
-
name = "chrono"
-
version = "0.4.34"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b"
-
dependencies = [
-
"android-tzdata",
-
"iana-time-zone",
-
"js-sys",
-
"num-traits",
-
"wasm-bindgen",
-
"windows-targets 0.52.4",
-
]
-
-
[[package]]
-
name = "clang-sys"
-
version = "1.7.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
-
dependencies = [
-
"glob",
-
"libc",
-
"libloading 0.8.2",
-
]
-
-
[[package]]
-
name = "concurrent-queue"
-
version = "2.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
-
dependencies = [
-
"crossbeam-utils",
-
]
-
-
[[package]]
-
name = "core-foundation"
-
version = "0.9.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
-
dependencies = [
-
"core-foundation-sys",
-
"libc",
-
]
-
-
[[package]]
-
name = "core-foundation-sys"
-
version = "0.8.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
-
-
[[package]]
-
name = "crc32fast"
-
version = "1.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
-
dependencies = [
-
"cfg-if 1.0.0",
-
]
-
-
[[package]]
-
name = "crossbeam-deque"
-
version = "0.8.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
-
dependencies = [
-
"crossbeam-epoch",
-
"crossbeam-utils",
-
]
-
-
[[package]]
-
name = "crossbeam-epoch"
-
version = "0.9.18"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
-
dependencies = [
-
"crossbeam-utils",
-
]
-
-
[[package]]
-
name = "crossbeam-utils"
-
version = "0.8.19"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
-
-
[[package]]
-
name = "crossterm"
-
version = "0.27.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
-
dependencies = [
-
"bitflags 2.4.2",
-
"crossterm_winapi",
-
"libc",
-
"mio",
-
"parking_lot",
-
"signal-hook",
-
"signal-hook-mio",
-
"winapi",
-
]
-
-
[[package]]
-
name = "crossterm_winapi"
-
version = "0.9.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
-
dependencies = [
-
"winapi",
-
]
-
-
[[package]]
-
name = "darling"
-
version = "0.20.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
-
dependencies = [
-
"darling_core",
-
"darling_macro",
-
]
-
-
[[package]]
-
name = "darling_core"
-
version = "0.20.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
-
dependencies = [
-
"fnv",
-
"ident_case",
-
"proc-macro2",
-
"quote",
-
"strsim",
-
"syn 2.0.52",
-
]
-
-
[[package]]
-
name = "darling_macro"
-
version = "0.20.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
-
dependencies = [
-
"darling_core",
-
"quote",
-
"syn 2.0.52",
-
]
-
-
[[package]]
-
name = "darwin-libproc"
-
version = "0.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cc629b7cf42586fee31dae31f9ab73fa5ff5f0170016aa61be5fcbc12a90c516"
-
dependencies = [
-
"darwin-libproc-sys",
-
"libc",
-
"memchr",
-
]
-
-
[[package]]
-
name = "darwin-libproc-sys"
-
version = "0.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ef0aa083b94c54aa4cfd9bbfd37856714c139d1dc511af80270558c7ba3b4816"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "dirs-next"
-
version = "2.0.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"dirs-sys-next",
-
]
-
-
[[package]]
-
name = "dirs-sys-next"
-
version = "0.1.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
-
dependencies = [
-
"libc",
-
"redox_users",
-
"winapi",
-
]
-
-
[[package]]
-
name = "doc-comment"
-
version = "0.3.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
-
-
[[package]]
-
name = "either"
-
version = "1.10.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
-
-
[[package]]
-
name = "env_logger"
-
version = "0.10.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
-
dependencies = [
-
"log",
-
]
-
-
[[package]]
-
name = "errno"
-
version = "0.3.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
-
dependencies = [
-
"libc",
-
"windows-sys 0.52.0",
-
]
-
-
[[package]]
-
name = "event-listener"
-
version = "2.5.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
-
-
[[package]]
-
name = "event-listener"
-
version = "3.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
-
dependencies = [
-
"concurrent-queue",
-
"parking",
-
"pin-project-lite",
-
]
-
-
[[package]]
-
name = "event-listener"
-
version = "4.0.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e"
-
dependencies = [
-
"concurrent-queue",
-
"parking",
-
"pin-project-lite",
-
]
-
-
[[package]]
-
name = "event-listener"
-
version = "5.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2b5fb89194fa3cad959b833185b3063ba881dbfc7030680b314250779fb4cc91"
-
dependencies = [
-
"concurrent-queue",
-
"parking",
-
"pin-project-lite",
-
]
-
-
[[package]]
-
name = "event-listener-strategy"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
-
dependencies = [
-
"event-listener 4.0.3",
-
"pin-project-lite",
-
]
-
-
[[package]]
-
name = "event-listener-strategy"
-
version = "0.5.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291"
-
dependencies = [
-
"event-listener 5.2.0",
-
"pin-project-lite",
-
]
-
-
[[package]]
-
name = "fastrand"
-
version = "1.9.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
-
dependencies = [
-
"instant",
-
]
-
-
[[package]]
-
name = "fastrand"
-
version = "2.0.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
-
-
[[package]]
-
name = "flate2"
-
version = "1.0.28"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
-
dependencies = [
-
"crc32fast",
-
"miniz_oxide",
-
]
-
-
[[package]]
-
name = "fnv"
-
version = "1.0.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
-
-
[[package]]
-
name = "futures"
-
version = "0.3.30"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
-
dependencies = [
-
"futures-channel",
-
"futures-core",
-
"futures-executor",
-
"futures-io",
-
"futures-sink",
-
"futures-task",
-
"futures-util",
-
]
-
-
[[package]]
-
name = "futures-channel"
-
version = "0.3.30"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
-
dependencies = [
-
"futures-core",
-
"futures-sink",
-
]
-
-
[[package]]
-
name = "futures-core"
-
version = "0.3.30"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
-
-
[[package]]
-
name = "futures-executor"
-
version = "0.3.30"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
-
dependencies = [
-
"futures-core",
-
"futures-task",
-
"futures-util",
-
]
-
-
[[package]]
-
name = "futures-io"
-
version = "0.3.30"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
-
-
[[package]]
-
name = "futures-lite"
-
version = "1.13.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
-
dependencies = [
-
"fastrand 1.9.0",
-
"futures-core",
-
"futures-io",
-
"memchr",
-
"parking",
-
"pin-project-lite",
-
"waker-fn",
-
]
-
-
[[package]]
-
name = "futures-lite"
-
version = "2.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba"
-
dependencies = [
-
"fastrand 2.0.1",
-
"futures-core",
-
"futures-io",
-
"parking",
-
"pin-project-lite",
-
]
-
-
[[package]]
-
name = "futures-macro"
-
version = "0.3.30"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn 2.0.52",
-
]
-
-
[[package]]
-
name = "futures-sink"
-
version = "0.3.30"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
-
-
[[package]]
-
name = "futures-task"
-
version = "0.3.30"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
-
-
[[package]]
-
name = "futures-timer"
-
version = "3.0.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
-
-
[[package]]
-
name = "futures-util"
-
version = "0.3.30"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
-
dependencies = [
-
"futures-channel",
-
"futures-core",
-
"futures-io",
-
"futures-macro",
-
"futures-sink",
-
"futures-task",
-
"memchr",
-
"pin-project-lite",
-
"pin-utils",
-
"slab",
-
]
-
-
[[package]]
-
name = "getrandom"
-
version = "0.2.12"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"libc",
-
"wasi",
-
]
-
-
[[package]]
-
name = "glob"
-
version = "0.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
-
-
[[package]]
-
name = "gumdrop"
-
version = "0.8.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5bc700f989d2f6f0248546222d9b4258f5b02a171a431f8285a81c08142629e3"
-
dependencies = [
-
"gumdrop_derive",
-
]
-
-
[[package]]
-
name = "gumdrop_derive"
-
version = "0.8.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "729f9bd3449d77e7831a18abfb7ba2f99ee813dfd15b8c2167c9a54ba20aa99d"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn 1.0.109",
-
]
-
-
[[package]]
-
name = "heck"
-
version = "0.4.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
-
-
[[package]]
-
name = "heim"
-
version = "0.1.0-rc.1"
-
source = "git+https://github.com/bvaisvil/heim.git?branch=zenith_changes#509c858dce58e2de0b1b772170ee2be21a58149b"
-
dependencies = [
-
"heim-common",
-
"heim-cpu",
-
"heim-disk",
-
"heim-host",
-
"heim-memory",
-
"heim-net",
-
"heim-process",
-
"heim-runtime",
-
"heim-sensors",
-
"heim-virt",
-
]
-
-
[[package]]
-
name = "heim-common"
-
version = "0.1.0-rc.1"
-
source = "git+https://github.com/bvaisvil/heim.git?branch=zenith_changes#509c858dce58e2de0b1b772170ee2be21a58149b"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"core-foundation",
-
"futures-core",
-
"futures-util",
-
"lazy_static",
-
"libc",
-
"mach",
-
"nix 0.23.2",
-
"pin-utils",
-
"uom 0.31.1",
-
"winapi",
-
]
-
-
[[package]]
-
name = "heim-cpu"
-
version = "0.1.0-rc.1"
-
source = "git+https://github.com/bvaisvil/heim.git?branch=zenith_changes#509c858dce58e2de0b1b772170ee2be21a58149b"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"futures",
-
"glob",
-
"heim-common",
-
"heim-runtime",
-
"lazy_static",
-
"libc",
-
"mach",
-
"ntapi",
-
"smol",
-
"winapi",
-
]
-
-
[[package]]
-
name = "heim-disk"
-
version = "0.1.0-rc.1"
-
source = "git+https://github.com/bvaisvil/heim.git?branch=zenith_changes#509c858dce58e2de0b1b772170ee2be21a58149b"
-
dependencies = [
-
"bitflags 1.3.2",
-
"cfg-if 1.0.0",
-
"core-foundation",
-
"heim-common",
-
"heim-runtime",
-
"libc",
-
"mach",
-
"widestring",
-
"winapi",
-
]
-
-
[[package]]
-
name = "heim-host"
-
version = "0.1.0-rc.1"
-
source = "git+https://github.com/bvaisvil/heim.git?branch=zenith_changes#509c858dce58e2de0b1b772170ee2be21a58149b"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"heim-common",
-
"heim-runtime",
-
"lazy_static",
-
"libc",
-
"log",
-
"mach",
-
"ntapi",
-
"platforms",
-
"winapi",
-
]
-
-
[[package]]
-
name = "heim-memory"
-
version = "0.1.0-rc.1"
-
source = "git+https://github.com/bvaisvil/heim.git?branch=zenith_changes#509c858dce58e2de0b1b772170ee2be21a58149b"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"heim-common",
-
"heim-runtime",
-
"lazy_static",
-
"libc",
-
"mach",
-
"winapi",
-
]
-
-
[[package]]
-
name = "heim-net"
-
version = "0.1.0-rc.1"
-
source = "git+https://github.com/bvaisvil/heim.git?branch=zenith_changes#509c858dce58e2de0b1b772170ee2be21a58149b"
-
dependencies = [
-
"bitflags 1.3.2",
-
"cfg-if 1.0.0",
-
"heim-common",
-
"heim-runtime",
-
"libc",
-
"macaddr",
-
"nix 0.23.2",
-
"widestring",
-
"winapi",
-
]
-
-
[[package]]
-
name = "heim-process"
-
version = "0.1.1-rc.1"
-
source = "git+https://github.com/bvaisvil/heim.git?branch=zenith_changes#509c858dce58e2de0b1b772170ee2be21a58149b"
-
dependencies = [
-
"async-trait",
-
"cfg-if 1.0.0",
-
"darwin-libproc",
-
"futures",
-
"heim-common",
-
"heim-cpu",
-
"heim-host",
-
"heim-net",
-
"heim-runtime",
-
"lazy_static",
-
"libc",
-
"mach",
-
"memchr",
-
"ntapi",
-
"ordered-float",
-
"smol",
-
"winapi",
-
]
-
-
[[package]]
-
name = "heim-runtime"
-
version = "0.1.0-rc.1"
-
source = "git+https://github.com/bvaisvil/heim.git?branch=zenith_changes#509c858dce58e2de0b1b772170ee2be21a58149b"
-
dependencies = [
-
"futures",
-
"futures-timer",
-
"once_cell",
-
"smol",
-
]
-
-
[[package]]
-
name = "heim-sensors"
-
version = "0.1.0-rc.1"
-
source = "git+https://github.com/bvaisvil/heim.git?branch=zenith_changes#509c858dce58e2de0b1b772170ee2be21a58149b"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"heim-common",
-
"heim-runtime",
-
]
-
-
[[package]]
-
name = "heim-virt"
-
version = "0.1.0-rc.1"
-
source = "git+https://github.com/bvaisvil/heim.git?branch=zenith_changes#509c858dce58e2de0b1b772170ee2be21a58149b"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"futures",
-
"heim-common",
-
"heim-runtime",
-
"raw-cpuid",
-
]
-
-
[[package]]
-
name = "hermit-abi"
-
version = "0.3.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
-
-
[[package]]
-
name = "home"
-
version = "0.5.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
-
dependencies = [
-
"windows-sys 0.52.0",
-
]
-
-
[[package]]
-
name = "iana-time-zone"
-
version = "0.1.60"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
-
dependencies = [
-
"android_system_properties",
-
"core-foundation-sys",
-
"iana-time-zone-haiku",
-
"js-sys",
-
"wasm-bindgen",
-
"windows-core",
-
]
-
-
[[package]]
-
name = "iana-time-zone-haiku"
-
version = "0.1.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
-
dependencies = [
-
"cc",
-
]
-
-
[[package]]
-
name = "ident_case"
-
version = "1.0.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
-
-
[[package]]
-
name = "indoc"
-
version = "2.0.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
-
-
[[package]]
-
name = "instant"
-
version = "0.1.12"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
-
dependencies = [
-
"cfg-if 1.0.0",
-
]
-
-
[[package]]
-
name = "io-lifetimes"
-
version = "1.0.11"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
-
dependencies = [
-
"hermit-abi",
-
"libc",
-
"windows-sys 0.48.0",
-
]
-
-
[[package]]
-
name = "itertools"
-
version = "0.11.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
-
dependencies = [
-
"either",
-
]
-
-
[[package]]
-
name = "itertools"
-
version = "0.12.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
-
dependencies = [
-
"either",
-
]
-
-
[[package]]
-
name = "js-sys"
-
version = "0.3.69"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
-
dependencies = [
-
"wasm-bindgen",
-
]
-
-
[[package]]
-
name = "lazy_static"
-
version = "1.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
-
-
[[package]]
-
name = "lazycell"
-
version = "1.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
-
-
[[package]]
-
name = "libc"
-
version = "0.2.153"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
-
-
[[package]]
-
name = "libloading"
-
version = "0.7.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"winapi",
-
]
-
-
[[package]]
-
name = "libloading"
-
version = "0.8.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2caa5afb8bf9f3a2652760ce7d4f62d21c4d5a423e68466fca30df82f2330164"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"windows-targets 0.52.4",
-
]
-
-
[[package]]
-
name = "libredox"
-
version = "0.0.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
-
dependencies = [
-
"bitflags 2.4.2",
-
"libc",
-
"redox_syscall",
-
]
-
-
[[package]]
-
name = "linux-raw-sys"
-
version = "0.3.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
-
-
[[package]]
-
name = "linux-raw-sys"
-
version = "0.4.13"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
-
-
[[package]]
-
name = "linux-taskstats"
-
version = "0.5.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ced563164e6cf093308728858ac54a04c957c5e820e6452e19801102f72a847c"
-
dependencies = [
-
"bindgen",
-
"libc",
-
"log",
-
"netlink-sys",
-
"thiserror",
-
]
-
-
[[package]]
-
name = "lock_api"
-
version = "0.4.11"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
-
dependencies = [
-
"autocfg",
-
"scopeguard",
-
]
-
-
[[package]]
-
name = "log"
-
version = "0.4.21"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
-
-
[[package]]
-
name = "macaddr"
-
version = "1.0.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "baee0bbc17ce759db233beb01648088061bf678383130602a298e6998eedb2d8"
-
-
[[package]]
-
name = "mach"
-
version = "0.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "mach2"
-
version = "0.4.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "memchr"
-
version = "2.3.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
-
-
[[package]]
-
name = "memoffset"
-
version = "0.6.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
-
dependencies = [
-
"autocfg",
-
]
-
-
[[package]]
-
name = "minimal-lexical"
-
version = "0.2.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
-
-
[[package]]
-
name = "miniz_oxide"
-
version = "0.7.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
-
dependencies = [
-
"adler",
-
]
-
-
[[package]]
-
name = "mio"
-
version = "0.8.11"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
-
dependencies = [
-
"libc",
-
"log",
-
"wasi",
-
"windows-sys 0.48.0",
-
]
-
-
[[package]]
-
name = "netlink-sys"
-
version = "0.8.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411"
-
dependencies = [
-
"bytes",
-
"libc",
-
"log",
-
]
-
-
[[package]]
-
name = "nix"
-
version = "0.23.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c"
-
dependencies = [
-
"bitflags 1.3.2",
-
"cc",
-
"cfg-if 1.0.0",
-
"libc",
-
"memoffset",
-
]
-
-
[[package]]
-
name = "nix"
-
version = "0.26.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
-
dependencies = [
-
"bitflags 1.3.2",
-
"cfg-if 1.0.0",
-
"libc",
-
]
-
-
[[package]]
-
name = "nom"
-
version = "7.1.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
-
dependencies = [
-
"memchr",
-
"minimal-lexical",
-
]
-
-
[[package]]
-
name = "ntapi"
-
version = "0.3.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
-
dependencies = [
-
"winapi",
-
]
-
-
[[package]]
-
name = "num-derive"
-
version = "0.4.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn 2.0.52",
-
]
-
-
[[package]]
-
name = "num-integer"
-
version = "0.1.46"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
-
dependencies = [
-
"num-traits",
-
]
-
-
[[package]]
-
name = "num-rational"
-
version = "0.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
-
dependencies = [
-
"autocfg",
-
"num-integer",
-
"num-traits",
-
]
-
-
[[package]]
-
name = "num-traits"
-
version = "0.2.18"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
-
dependencies = [
-
"autocfg",
-
]
-
-
[[package]]
-
name = "nvml-wrapper"
-
version = "0.9.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7cd21b9f5a1cce3c3515c9ffa85f5c7443e07162dae0ccf4339bb7ca38ad3454"
-
dependencies = [
-
"bitflags 1.3.2",
-
"libloading 0.7.4",
-
"nvml-wrapper-sys",
-
"static_assertions",
-
"thiserror",
-
"wrapcenum-derive",
-
]
-
-
[[package]]
-
name = "nvml-wrapper-sys"
-
version = "0.7.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c961a2ea9e91c59a69b78e69090f6f5b867bb46c0c56de9482da232437c4987e"
-
dependencies = [
-
"libloading 0.7.4",
-
]
-
-
[[package]]
-
name = "once_cell"
-
version = "1.19.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
-
-
[[package]]
-
name = "ordered-float"
-
version = "2.10.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
-
dependencies = [
-
"num-traits",
-
]
-
-
[[package]]
-
name = "parking"
-
version = "2.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
-
-
[[package]]
-
name = "parking_lot"
-
version = "0.12.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
-
dependencies = [
-
"lock_api",
-
"parking_lot_core",
-
]
-
-
[[package]]
-
name = "parking_lot_core"
-
version = "0.9.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"libc",
-
"redox_syscall",
-
"smallvec",
-
"windows-targets 0.48.5",
-
]
-
-
[[package]]
-
name = "paste"
-
version = "1.0.14"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
-
-
[[package]]
-
name = "pin-project-lite"
-
version = "0.2.13"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
-
-
[[package]]
-
name = "pin-utils"
-
version = "0.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
-
-
[[package]]
-
name = "piper"
-
version = "0.2.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
-
dependencies = [
-
"atomic-waker",
-
"fastrand 2.0.1",
-
"futures-io",
-
]
-
-
[[package]]
-
name = "platforms"
-
version = "1.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "989d43012e2ca1c4a02507c67282691a0a3207f9dc67cec596b43fe925b3d325"
-
-
[[package]]
-
name = "polling"
-
version = "2.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
-
dependencies = [
-
"autocfg",
-
"bitflags 1.3.2",
-
"cfg-if 1.0.0",
-
"concurrent-queue",
-
"libc",
-
"log",
-
"pin-project-lite",
-
"windows-sys 0.48.0",
-
]
-
-
[[package]]
-
name = "polling"
-
version = "3.5.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"concurrent-queue",
-
"pin-project-lite",
-
"rustix 0.38.31",
-
"tracing",
-
"windows-sys 0.52.0",
-
]
-
-
[[package]]
-
name = "prettyplease"
-
version = "0.2.16"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5"
-
dependencies = [
-
"proc-macro2",
-
"syn 2.0.52",
-
]
-
-
[[package]]
-
name = "proc-macro2"
-
version = "1.0.78"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
-
dependencies = [
-
"unicode-ident",
-
]
-
-
[[package]]
-
name = "quote"
-
version = "1.0.35"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
-
dependencies = [
-
"proc-macro2",
-
]
-
-
[[package]]
-
name = "ratatui"
-
version = "0.23.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2e2e4cd95294a85c3b4446e63ef054eea43e0205b1fd60120c16b74ff7ff96ad"
-
dependencies = [
-
"bitflags 2.4.2",
-
"cassowary",
-
"crossterm",
-
"indoc",
-
"itertools 0.11.0",
-
"paste",
-
"strum",
-
"unicode-segmentation",
-
"unicode-width",
-
]
-
-
[[package]]
-
name = "raw-cpuid"
-
version = "9.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1733f6f80c9c24268736a501cd00d41a9849b4faa7a9f9334c096e5d10553206"
-
dependencies = [
-
"bitflags 1.3.2",
-
]
-
-
[[package]]
-
name = "rayon"
-
version = "1.9.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd"
-
dependencies = [
-
"either",
-
"rayon-core",
-
]
-
-
[[package]]
-
name = "rayon-core"
-
version = "1.12.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
-
dependencies = [
-
"crossbeam-deque",
-
"crossbeam-utils",
-
]
-
-
[[package]]
-
name = "redox_syscall"
-
version = "0.4.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
-
dependencies = [
-
"bitflags 1.3.2",
-
]
-
-
[[package]]
-
name = "redox_users"
-
version = "0.4.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
-
dependencies = [
-
"getrandom",
-
"libredox",
-
"thiserror",
-
]
-
-
[[package]]
-
name = "regex"
-
version = "1.8.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
-
dependencies = [
-
"regex-syntax",
-
]
-
-
[[package]]
-
name = "regex-syntax"
-
version = "0.7.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
-
-
[[package]]
-
name = "rustc-hash"
-
version = "1.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
-
-
[[package]]
-
name = "rustix"
-
version = "0.37.27"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
-
dependencies = [
-
"bitflags 1.3.2",
-
"errno",
-
"io-lifetimes",
-
"libc",
-
"linux-raw-sys 0.3.8",
-
"windows-sys 0.48.0",
-
]
-
-
[[package]]
-
name = "rustix"
-
version = "0.38.31"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949"
-
dependencies = [
-
"bitflags 2.4.2",
-
"errno",
-
"libc",
-
"linux-raw-sys 0.4.13",
-
"windows-sys 0.52.0",
-
]
-
-
[[package]]
-
name = "rustversion"
-
version = "1.0.14"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
-
-
[[package]]
-
name = "scopeguard"
-
version = "1.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
-
-
[[package]]
-
name = "serde"
-
version = "1.0.197"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
-
dependencies = [
-
"serde_derive",
-
]
-
-
[[package]]
-
name = "serde_derive"
-
version = "1.0.197"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn 2.0.52",
-
]
-
-
[[package]]
-
name = "shlex"
-
version = "1.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
-
-
[[package]]
-
name = "signal-hook"
-
version = "0.3.17"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
-
dependencies = [
-
"libc",
-
"signal-hook-registry",
-
]
-
-
[[package]]
-
name = "signal-hook-mio"
-
version = "0.2.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
-
dependencies = [
-
"libc",
-
"mio",
-
"signal-hook",
-
]
-
-
[[package]]
-
name = "signal-hook-registry"
-
version = "1.4.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "slab"
-
version = "0.4.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
-
dependencies = [
-
"autocfg",
-
]
-
-
[[package]]
-
name = "smallvec"
-
version = "1.13.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
-
-
[[package]]
-
name = "smol"
-
version = "1.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1"
-
dependencies = [
-
"async-channel 1.9.0",
-
"async-executor",
-
"async-fs",
-
"async-io 1.13.0",
-
"async-lock 2.8.0",
-
"async-net",
-
"async-process",
-
"blocking",
-
"futures-lite 1.13.0",
-
]
-
-
[[package]]
-
name = "socket2"
-
version = "0.4.10"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
-
dependencies = [
-
"libc",
-
"winapi",
-
]
-
-
[[package]]
-
name = "starship-battery"
-
version = "0.8.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "36335b5b5ba5328b4ad2024807423010b7f533a7e5315dfd9df0acbc9d2c550e"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"core-foundation",
-
"lazycell",
-
"libc",
-
"mach2",
-
"nix 0.26.4",
-
"num-traits",
-
"uom 0.35.0",
-
"winapi",
-
]
-
-
[[package]]
-
name = "static_assertions"
-
version = "1.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
-
-
[[package]]
-
name = "strsim"
-
version = "0.10.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
-
-
[[package]]
-
name = "strum"
-
version = "0.25.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
-
dependencies = [
-
"strum_macros",
-
]
-
-
[[package]]
-
name = "strum_macros"
-
version = "0.25.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
-
dependencies = [
-
"heck",
-
"proc-macro2",
-
"quote",
-
"rustversion",
-
"syn 2.0.52",
-
]
-
-
[[package]]
-
name = "syn"
-
version = "1.0.109"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"unicode-ident",
-
]
-
-
[[package]]
-
name = "syn"
-
version = "2.0.52"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"unicode-ident",
-
]
-
-
[[package]]
-
name = "sysinfo"
-
version = "0.15.1"
-
source = "git+https://github.com/bvaisvil/sysinfo.git?branch=zenith_changes_15.1#bcff3dc5c5b53320c53984cef5773ed850001fd8"
-
dependencies = [
-
"cfg-if 0.1.10",
-
"doc-comment",
-
"libc",
-
"ntapi",
-
"once_cell",
-
"rayon",
-
"winapi",
-
]
-
-
[[package]]
-
name = "thiserror"
-
version = "1.0.57"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b"
-
dependencies = [
-
"thiserror-impl",
-
]
-
-
[[package]]
-
name = "thiserror-impl"
-
version = "1.0.57"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn 2.0.52",
-
]
-
-
[[package]]
-
name = "tracing"
-
version = "0.1.40"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
-
dependencies = [
-
"pin-project-lite",
-
"tracing-core",
-
]
-
-
[[package]]
-
name = "tracing-core"
-
version = "0.1.32"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
-
-
[[package]]
-
name = "typenum"
-
version = "1.17.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
-
-
[[package]]
-
name = "unicode-ident"
-
version = "1.0.12"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
-
-
[[package]]
-
name = "unicode-segmentation"
-
version = "1.11.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
-
-
[[package]]
-
name = "unicode-width"
-
version = "0.1.11"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
-
-
[[package]]
-
name = "uom"
-
version = "0.31.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b1ee6bfd0a27bf614353809a035cf6880b74239ec6c5e39a7b2860ca16809137"
-
dependencies = [
-
"num-rational",
-
"num-traits",
-
"typenum",
-
]
-
-
[[package]]
-
name = "uom"
-
version = "0.35.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8362194c7a9845a7a7f3562173d6e1da3f24f7132018cb78fe77a5b4474187b2"
-
dependencies = [
-
"num-traits",
-
"typenum",
-
]
-
-
[[package]]
-
name = "utf8-width"
-
version = "0.1.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
-
-
[[package]]
-
name = "uzers"
-
version = "0.11.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "76d283dc7e8c901e79e32d077866eaf599156cbf427fffa8289aecc52c5c3f63"
-
dependencies = [
-
"libc",
-
"log",
-
]
-
-
[[package]]
-
name = "waker-fn"
-
version = "1.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
-
-
[[package]]
-
name = "wasi"
-
version = "0.11.0+wasi-snapshot-preview1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
-
-
[[package]]
-
name = "wasm-bindgen"
-
version = "0.2.92"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"wasm-bindgen-macro",
-
]
-
-
[[package]]
-
name = "wasm-bindgen-backend"
-
version = "0.2.92"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
-
dependencies = [
-
"bumpalo",
-
"log",
-
"once_cell",
-
"proc-macro2",
-
"quote",
-
"syn 2.0.52",
-
"wasm-bindgen-shared",
-
]
-
-
[[package]]
-
name = "wasm-bindgen-macro"
-
version = "0.2.92"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
-
dependencies = [
-
"quote",
-
"wasm-bindgen-macro-support",
-
]
-
-
[[package]]
-
name = "wasm-bindgen-macro-support"
-
version = "0.2.92"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn 2.0.52",
-
"wasm-bindgen-backend",
-
"wasm-bindgen-shared",
-
]
-
-
[[package]]
-
name = "wasm-bindgen-shared"
-
version = "0.2.92"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
-
-
[[package]]
-
name = "which"
-
version = "4.4.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
-
dependencies = [
-
"either",
-
"home",
-
"once_cell",
-
"rustix 0.38.31",
-
]
-
-
[[package]]
-
name = "widestring"
-
version = "0.4.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
-
-
[[package]]
-
name = "winapi"
-
version = "0.3.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
-
dependencies = [
-
"winapi-i686-pc-windows-gnu",
-
"winapi-x86_64-pc-windows-gnu",
-
]
-
-
[[package]]
-
name = "winapi-i686-pc-windows-gnu"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-
-
[[package]]
-
name = "winapi-x86_64-pc-windows-gnu"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
-
-
[[package]]
-
name = "windows-core"
-
version = "0.52.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
-
dependencies = [
-
"windows-targets 0.52.4",
-
]
-
-
[[package]]
-
name = "windows-sys"
-
version = "0.48.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
-
dependencies = [
-
"windows-targets 0.48.5",
-
]
-
-
[[package]]
-
name = "windows-sys"
-
version = "0.52.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
-
dependencies = [
-
"windows-targets 0.52.4",
-
]
-
-
[[package]]
-
name = "windows-targets"
-
version = "0.48.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
-
dependencies = [
-
"windows_aarch64_gnullvm 0.48.5",
-
"windows_aarch64_msvc 0.48.5",
-
"windows_i686_gnu 0.48.5",
-
"windows_i686_msvc 0.48.5",
-
"windows_x86_64_gnu 0.48.5",
-
"windows_x86_64_gnullvm 0.48.5",
-
"windows_x86_64_msvc 0.48.5",
-
]
-
-
[[package]]
-
name = "windows-targets"
-
version = "0.52.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
-
dependencies = [
-
"windows_aarch64_gnullvm 0.52.4",
-
"windows_aarch64_msvc 0.52.4",
-
"windows_i686_gnu 0.52.4",
-
"windows_i686_msvc 0.52.4",
-
"windows_x86_64_gnu 0.52.4",
-
"windows_x86_64_gnullvm 0.52.4",
-
"windows_x86_64_msvc 0.52.4",
-
]
-
-
[[package]]
-
name = "windows_aarch64_gnullvm"
-
version = "0.48.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
-
-
[[package]]
-
name = "windows_aarch64_gnullvm"
-
version = "0.52.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
-
-
[[package]]
-
name = "windows_aarch64_msvc"
-
version = "0.48.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
-
-
[[package]]
-
name = "windows_aarch64_msvc"
-
version = "0.52.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
-
-
[[package]]
-
name = "windows_i686_gnu"
-
version = "0.48.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
-
-
[[package]]
-
name = "windows_i686_gnu"
-
version = "0.52.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
-
-
[[package]]
-
name = "windows_i686_msvc"
-
version = "0.48.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
-
-
[[package]]
-
name = "windows_i686_msvc"
-
version = "0.52.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
-
-
[[package]]
-
name = "windows_x86_64_gnu"
-
version = "0.48.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
-
-
[[package]]
-
name = "windows_x86_64_gnu"
-
version = "0.52.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
-
-
[[package]]
-
name = "windows_x86_64_gnullvm"
-
version = "0.48.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
-
-
[[package]]
-
name = "windows_x86_64_gnullvm"
-
version = "0.52.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
-
-
[[package]]
-
name = "windows_x86_64_msvc"
-
version = "0.48.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
-
-
[[package]]
-
name = "windows_x86_64_msvc"
-
version = "0.52.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
-
-
[[package]]
-
name = "wrapcenum-derive"
-
version = "0.4.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a76ff259533532054cfbaefb115c613203c73707017459206380f03b3b3f266e"
-
dependencies = [
-
"darling",
-
"proc-macro2",
-
"quote",
-
"syn 2.0.52",
-
]
-
-
[[package]]
-
name = "zenith"
-
version = "0.14.1"
-
dependencies = [
-
"bincode",
-
"byte-unit",
-
"chrono",
-
"crossterm",
-
"dirs-next",
-
"env_logger",
-
"flate2",
-
"futures",
-
"gumdrop",
-
"heim",
-
"libc",
-
"linux-taskstats",
-
"log",
-
"num-derive",
-
"num-traits",
-
"nvml-wrapper",
-
"ratatui",
-
"serde",
-
"serde_derive",
-
"signal-hook",
-
"starship-battery",
-
"sysinfo",
-
"unicode-width",
-
"uzers",
-
]
+2 -9
pkgs/tools/system/zenith/default.nix pkgs/by-name/ze/zenith/package.nix
···
stdenv,
rustPlatform,
fetchFromGitHub,
-
IOKit,
nvidiaSupport ? false,
makeWrapper,
}:
···
rm .cargo/config
'';
-
cargoLock = {
-
lockFile = ./Cargo.lock;
-
outputHashes = {
-
"heim-0.1.0-rc.1" = "sha256-TKEG0YxF44wLz+qxpS/VfRKucqyl97t3PDxjPajbD58=";
-
"sysinfo-0.15.1" = "sha256-faMxXEHL7DFQLYrAJ+yBL6yiepZotofPF2+SizGQj4A=";
-
};
-
};
+
useFetchCargoVendor = true;
+
cargoHash = "sha256-xfp+nR4ihaTO4AZHizYg4qqf9MR030Qb5bN2nzhbytQ=";
nativeBuildInputs = [ rustPlatform.bindgenHook ] ++ lib.optional nvidiaSupport makeWrapper;
-
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ IOKit ];
buildFeatures = lib.optional nvidiaSupport "nvidia";
+1
pkgs/top-level/aliases.nix
···
gmtp = throw "'gmtp' has been removed due to lack of maintenance upstream. Consider using 'gnome-music' instead"; # Added 2024-09-14
gnome-latex = throw "'gnome-latex' has been superseded by 'enter-tex'"; # Added 2024-09-18
gnu-cobol = gnucobol; # Added 2024-09-17
+
gnupg1orig = throw "'gnupg1orig' has been removed due to lack of active upstream maintainance. Consider using 'gnupg' instead"; # Added 2025-01-11
gnupg22 = throw "'gnupg22' is end-of-life. Consider using 'gnupg24' instead"; # Added 2025-01-05
gogs = throw ''
Gogs development has stalled. Also, it has several unpatched, critical vulnerabilities that
+2 -9
pkgs/top-level/all-packages.nix
···
gnupatch = callPackage ../tools/text/gnupatch { };
-
gnupg1orig = callPackage ../tools/security/gnupg/1.nix { };
gnupg1compat = callPackage ../tools/security/gnupg/1compat.nix { };
gnupg1 = gnupg1compat; # use config.packageOverrides if you prefer original gnupg1
···
inherit (darwin.apple_sdk.frameworks) Foundation;
};
-
zenith = callPackage ../tools/system/zenith {
-
inherit (darwin.apple_sdk.frameworks) IOKit;
-
};
-
# Nvidia support does not require any propietary libraries, so CI can build it.
# Note that when enabling this unconditionally, non-nvidia users will always have an empty "GPU" section.
-
zenith-nvidia = callPackage ../tools/system/zenith {
-
inherit (darwin.apple_sdk.frameworks) IOKit;
+
zenith-nvidia = zenith.override {
nvidiaSupport = true;
};
···
inherit (darwin.apple_sdk.frameworks) AVFoundation Carbon Cocoa CoreAudio Kernel OpenGL;
-
freedv = callPackage ../applications/radio/freedv {
-
inherit (darwin.apple_sdk.frameworks) AppKit AVFoundation Cocoa CoreMedia;
+
freedv = callPackage ../by-name/fr/freedv/package.nix {
codec2 = codec2.override {
freedvSupport = true;
+1 -16
pkgs/top-level/perl-packages.nix
···
-
GnuPG = buildPerlPackage {
-
pname = "GnuPG";
-
version = "0.19";
-
src = fetchurl {
-
url = "mirror://cpan/authors/id/Y/YA/YANICK/GnuPG-0.19.tar.gz";
-
hash = "sha256-r1Py0/Yyl+BGZ26uFKdilq/dKRDglyO2sRNwhiK3mJs=";
-
};
-
buildInputs = [ pkgs.gnupg1orig ];
-
doCheck = false;
-
meta = {
-
description = "Perl interface to the GNU Privacy Guard";
-
license = with lib.licenses; [ gpl2Plus ];
-
mainProgram = "gpgmailtunl";
-
};
-
};
-
GnuPGInterface = buildPerlPackage {
pname = "GnuPG-Interface";
version = "1.03";
···
Gtk2GladeXML = throw "Gtk2GladeXML has been removed"; # 2022-01-15
pcscperl = throw "'pcscperl' has been renamed to 'ChipcardPCSC'"; # Added 2023-12-07
+
GnuPG = throw "'GnuPG' has been removed"; # 2025-01-11