Merge staging-next into staging

This commit is contained in:
github-actions[bot] 2024-05-28 06:01:23 +00:00 committed by GitHub
commit 056d33dbc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
11 changed files with 114 additions and 33 deletions

View File

@ -10,6 +10,7 @@ Robert Hensing <robert@roberthensing.nl> <roberth@users.noreply.github.com>
Sandro Jäckel <sandro.jaeckel@gmail.com>
Sandro Jäckel <sandro.jaeckel@gmail.com> <sandro.jaeckel@sap.com>
superherointj <5861043+superherointj@users.noreply.github.com>
Tomodachi94 <tomodachi94@protonmail.com> Tomo <68489118+Tomodachi94@users.noreply.github.com>
Vladimír Čunát <v@cunat.cz> <vcunat@gmail.com>
Vladimír Čunát <v@cunat.cz> <vladimir.cunat@nic.cz>
Yifei Sun <ysun@hey.com> StepBroBD <Hi@StepBroBD.com>

View File

@ -20833,11 +20833,14 @@
name = "Tomkoid";
};
tomodachi94 = {
email = "tomodachi94+nixpkgs@protonmail.com";
email = "tomodachi94@protonmail.com";
matrix = "@tomodachi94:matrix.org";
github = "tomodachi94";
githubId = 68489118;
name = "Tomodachi94";
keys = [{
fingerprint = "B208 D6E5 B8ED F47D 5687 627B 2E27 5F21 C4D5 54A3";
}];
};
tomsiewert = {
email = "tom@siewert.io";

View File

@ -1,4 +1,4 @@
{ lib, rel, buildKodiAddon, fetchzip, addonUpdateScript, requests, inputstream-adaptive, inputstreamhelper }:
{ lib, rel, buildKodiAddon, fetchzip, addonUpdateScript, infotagger, requests, inputstream-adaptive, inputstreamhelper }:
buildKodiAddon rec {
pname = "invidious";
@ -11,6 +11,7 @@ buildKodiAddon rec {
};
propagatedBuildInputs = [
infotagger
requests
inputstream-adaptive
inputstreamhelper

View File

@ -44,14 +44,14 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "gamescope";
version = "3.14.16";
version = "3.14.18";
src = fetchFromGitHub {
owner = "ValveSoftware";
repo = "gamescope";
rev = "refs/tags/${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-tijFVOIMW+nkot/uRP0PNZBYZkZMMt1PcAN5+3SWzW4=";
hash = "sha256-XcefR0wiDHQY7wMX+LQTEntffi2RdMW8m2HNQMz035A=";
};
patches = [

View File

@ -8,16 +8,16 @@
buildGoModule rec {
pname = "karmor";
version = "1.2.1";
version = "1.2.2";
src = fetchFromGitHub {
owner = "kubearmor";
repo = "kubearmor-client";
rev = "v${version}";
hash = "sha256-NNCV/+Jh/tjc7SC4E9/gtiVthVmAxZBOyW3MFISbkH4=";
hash = "sha256-LdUu56y9jRPFOF/Tfo9GZYmOlZIUs7/byWj2yQw7BE4=";
};
vendorHash = "sha256-CKOZxmUVZWFb7cc+amPwyMv5ScujWeipEqm95m63SYk=";
vendorHash = "sha256-r3Fy4nOjlvyHcvztSfOOE6PmOhhNcVdoIq+ie5jqwkw=";
nativeBuildInputs = [ installShellFiles ];

View File

@ -0,0 +1,26 @@
{
"depends": [
{
"method": "fetchzip",
"packages": [
"checksums"
],
"path": "/nix/store/z6799507gzbw46lzbi1i8mwm0nbvrvnx-source",
"rev": "7ff0b762332d2591bbeb65df9bb86d52ea44ec01",
"sha256": "11612prr2wwbx414ip0zjh1fv638dgfvzxfd6v2f432n0wfwhjhj",
"srcDir": "src",
"url": "https://github.com/nim-lang/checksums/archive/7ff0b762332d2591bbeb65df9bb86d52ea44ec01.tar.gz"
},
{
"method": "fetchzip",
"packages": [
"sat"
],
"path": "/nix/store/lwg9fm34h5xv0dvxij9r5m2y6pn1zsvx-source",
"rev": "a53d9d6e0470f78f8ba14652d981e7bcdbcd579f",
"sha256": "1dxbc41wbvkpdp6q3qz1r38lpn32447qkkgyh2s12ym6bx4ynni4",
"srcDir": "src",
"url": "https://github.com/nim-lang/sat/archive/a53d9d6e0470f78f8ba14652d981e7bcdbcd579f.tar.gz"
}
]
}

View File

@ -1,31 +1,43 @@
{ lib, buildNimPackage, fetchFromGitHub, nim, makeWrapper }:
{
lib,
buildNimPackage,
fetchFromGitHub,
nim,
openssl,
makeWrapper,
}:
buildNimPackage (final: prev: {
pname = "nimble";
version = "0.14.2";
buildNimPackage (
final: prev: {
pname = "nimble";
version = "0-unstable-2024-05-14";
requiredNimVersion = 1;
src = fetchFromGitHub {
owner = "nim-lang";
repo = "nimble";
rev = "f8bd7b5fa6ea7a583b411b5959b06e6b5eb23667";
hash = "sha256-aRDaucD6wOUPtXLIrahvK0vBfurdgFrk+swzqzMA09w=";
};
src = fetchFromGitHub {
owner = "nim-lang";
repo = "nimble";
rev = "v${final.version}";
hash = "sha256-8b5yKvEl7c7wA/8cpdaN2CSvawQJzuRce6mULj3z/mI=";
};
lockFile = ./lock.json;
nativeBuildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ openssl ];
doCheck = false; # it works on their machine
nimFlags = [ "--define:git_revision_override=${final.src.rev}" ];
postInstall = ''
wrapProgram $out/bin/nimble \
--suffix PATH : ${lib.makeBinPath [ nim ]}
'';
doCheck = false; # it works on their machine
meta = {
description = "Package manager for the Nim programming language";
homepage = "https://github.com/nim-lang/nimble";
license = lib.licenses.bsd3;
mainProgram = "nimble";
};
})
postInstall = ''
wrapProgram $out/bin/nimble \
--suffix PATH : ${lib.makeBinPath [ nim ]}
'';
meta = {
description = "Package manager for the Nim programming language";
homepage = "https://github.com/nim-lang/nimble";
license = lib.licenses.bsd3;
mainProgram = "nimble";
};
}
)

View File

@ -0,0 +1,34 @@
{ lib
, fetchPypi
, buildPythonPackage
, setuptools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "latex2pydata";
version = "0.2.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-lFYGBFox7fv/vlfqZN3xsh9UIRCQ+C5Cizq9j4RTcJ0=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
homepage = "https://github.com/gpoore/latex2pydata";
description = "Send data from LaTeX to Python using Python literal format";
license = lib.licenses.bsd3;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ romildo ];
};
}

View File

@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "stripe";
version = "9.7.0";
version = "9.8.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-r2lHI795aM6hipVmQdzveG7B9y3oAicY+j7194aL1DA=";
hash = "sha256-YxYfynRstqgeIVi/YZUMy4118bcjHH9KyeBYF6q1hrQ=";
};
build-system = [ setuptools ];

View File

@ -13,6 +13,7 @@
, libunwind
, libxcrypt
, libyaml
, rust-jemalloc-sys-unprefixed
, Foundation
, Security
}:
@ -40,6 +41,7 @@ rustPlatform.buildRustPackage rec {
zlib
libxcrypt
libyaml
rust-jemalloc-sys-unprefixed
] ++ lib.optionals stdenv.isDarwin [
readline
libiconv

View File

@ -6501,6 +6501,8 @@ self: super: with self; {
latex2mathml = callPackage ../development/python-modules/latex2mathml { };
latex2pydata = callPackage ../development/python-modules/latex2pydata { };
latexcodec = callPackage ../development/python-modules/latexcodec { };
latexify-py = callPackage ../development/python-modules/latexify-py { };