Merge release-24.05 into staging-next-24.05

This commit is contained in:
github-actions[bot]
2024-12-26 00:16:50 +00:00
committed by GitHub
3 changed files with 1986 additions and 0 deletions

View File

@@ -14624,6 +14624,13 @@
github = "oaksoaj";
githubId = 103952141;
};
ob7 = {
name = "ob7";
email = "dev@ob7.us";
github = "ob7";
githubId = 6877929;
keys = [ { fingerprint = "5C1C 0251 FA85 8C62 0E96 7AC5 2766 5625 0571 34E4"; } ];
};
obadz = {
email = "obadz-nixos@obadz.com";
github = "obadz";

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,28 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "tenere";
version = "0.11.2-unstable-2024-12-05";
src = fetchFromGitHub {
owner = "pythops";
repo = "tenere";
rev = "0f3181ab23066aa69aa4fec387a7e16578078179";
hash = "sha256-HKPCX0bmXkB3LwvgE1li3dlWTgpW5CXuWZNq3mFY6FY=";
};
cargoHash = "sha256-O9tDTf2GmNsbGHvpsmA+ZWgCSP2knpBIONDQ1cd93ug=";
cargoPatches = [ ./cargo-lock-v3-compatibility.patch ];
requiredSystemFeatures = [ "big-parallel" ]; # for fat LTO from upstream
meta = {
description = "Terminal interface for large language models (LLMs)";
homepage = "https://github.com/pythops/tenere";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ob7 ];
mainProgram = "tenere";
};
}