mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
Merge master into staging-next
This commit is contained in:
commit
647a92ce12
41 changed files with 168 additions and 140 deletions
|
|
@ -1852,13 +1852,6 @@
|
|||
githubId = 102513;
|
||||
keys = [ { fingerprint = "B7B7 582E 564E 789B FCB8 71AB 0C6D FE2F B234 534A"; } ];
|
||||
};
|
||||
anhdle14 = {
|
||||
name = "Le Anh Duc";
|
||||
email = "anhdle14@icloud.com";
|
||||
github = "anhdle14";
|
||||
githubId = 9645992;
|
||||
keys = [ { fingerprint = "AA4B 8EC3 F971 D350 482E 4E20 0299 AFF9 ECBB 5169"; } ];
|
||||
};
|
||||
anhduy = {
|
||||
email = "vo@anhduy.io";
|
||||
github = "voanhduy1512";
|
||||
|
|
@ -1974,12 +1967,6 @@
|
|||
githubId = 14838767;
|
||||
name = "Jacopo Scannella";
|
||||
};
|
||||
antoinerg = {
|
||||
email = "roygobeil.antoine@gmail.com";
|
||||
github = "antoinerg";
|
||||
githubId = 301546;
|
||||
name = "Antoine Roy-Gobeil";
|
||||
};
|
||||
anton-4 = {
|
||||
name = "Anton";
|
||||
github = "Anton-4";
|
||||
|
|
@ -24813,12 +24800,6 @@
|
|||
name = "Sebastian Rutofski";
|
||||
keys = [ { fingerprint = "F1D4 8061 2830 3AF6 42DC 3867 C37F 3374 2A95 C547"; } ];
|
||||
};
|
||||
sebtm = {
|
||||
email = "mail@sebastian-sellmeier.de";
|
||||
github = "SebTM";
|
||||
githubId = 17243347;
|
||||
name = "Sebastian Sellmeier";
|
||||
};
|
||||
secona = {
|
||||
email = "secona00+nixpkgs@gmail.com";
|
||||
github = "secona";
|
||||
|
|
@ -25591,12 +25572,6 @@
|
|||
githubId = 74881555;
|
||||
name = "Fofanov Sergey";
|
||||
};
|
||||
sitaaax = {
|
||||
email = "johannes@kle1n.com";
|
||||
github = "SitAAAx";
|
||||
githubId = 74413170;
|
||||
name = "Johannes Klein";
|
||||
};
|
||||
sith-lord-vader = {
|
||||
email = "nixpkgs@xpertsre.rocks";
|
||||
github = "sith-lord-vader";
|
||||
|
|
@ -28235,12 +28210,6 @@
|
|||
githubId = 16036882;
|
||||
name = "Thibault Gagnaux";
|
||||
};
|
||||
trino = {
|
||||
email = "muehlhans.hubert@ekodia.de";
|
||||
github = "hmuehlhans";
|
||||
githubId = 9870613;
|
||||
name = "Hubert Mühlhans";
|
||||
};
|
||||
tris203 = {
|
||||
email = "admin@snappeh.com";
|
||||
github = "tris203";
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ let
|
|||
|
||||
in
|
||||
{
|
||||
meta.maintainers = with lib.maintainers; [ sebtm ];
|
||||
meta.maintainers = [ ];
|
||||
|
||||
options = {
|
||||
services.tp-auto-kbbl = {
|
||||
|
|
|
|||
|
|
@ -108,6 +108,18 @@ in
|
|||
default = [ ];
|
||||
description = "Extra arguments passed to the Radicale daemon.";
|
||||
};
|
||||
|
||||
user = mkOption {
|
||||
type = types.str;
|
||||
default = "radicale";
|
||||
description = "User account under which Radicale runs.";
|
||||
};
|
||||
|
||||
group = mkOption {
|
||||
type = types.str;
|
||||
default = "radicale";
|
||||
description = "Group under which Radicale runs.";
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
|
@ -155,12 +167,16 @@ in
|
|||
|
||||
environment.systemPackages = [ pkg ];
|
||||
|
||||
users.users.radicale = {
|
||||
isSystemUser = true;
|
||||
group = "radicale";
|
||||
users.users = mkIf (cfg.user == "radicale") {
|
||||
radicale = {
|
||||
group = cfg.group;
|
||||
isSystemUser = true;
|
||||
};
|
||||
};
|
||||
|
||||
users.groups.radicale = { };
|
||||
users.groups = mkIf (cfg.group == "radicale") {
|
||||
radicale = { };
|
||||
};
|
||||
|
||||
systemd.services.radicale = {
|
||||
description = "A Simple Calendar and Contact Server";
|
||||
|
|
@ -176,8 +192,8 @@ in
|
|||
]
|
||||
++ (map escapeShellArg cfg.extraArgs)
|
||||
);
|
||||
User = "radicale";
|
||||
Group = "radicale";
|
||||
User = cfg.user;
|
||||
Group = cfg.group;
|
||||
StateDirectory = "radicale/collections";
|
||||
StateDirectoryMode = "0750";
|
||||
# Hardening
|
||||
|
|
|
|||
|
|
@ -156,7 +156,7 @@ let
|
|||
downloadPage = "https://marketplace.visualstudio.com/items?itemName=adzero.vscode-sievehighlight";
|
||||
homepage = "https://github.com/adzero/vscode-sievehighlight";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.sebtm ];
|
||||
maintainers = [ ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -797,7 +797,7 @@ let
|
|||
downloadPage = "https://marketplace.visualstudio.com/items?itemName=BrandonKirbyson.solarized-palenight";
|
||||
homepage = "https://github.com/BrandonKirbyson/Solarized-Palenight";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.sebtm ];
|
||||
maintainers = [ ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@ let
|
|||
maintainers = with lib.maintainers; [
|
||||
khaneliman
|
||||
timstott
|
||||
sebtm
|
||||
bdd
|
||||
];
|
||||
platforms = [
|
||||
|
|
|
|||
|
|
@ -8,11 +8,11 @@
|
|||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "allure";
|
||||
version = "2.40.0";
|
||||
version = "2.41.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/allure-framework/allure2/releases/download/${finalAttrs.version}/allure-${finalAttrs.version}.tgz";
|
||||
hash = "sha256-RXOO/8dGZ0DULqkTjoD8pQgedWbHCvypRwjZxVhdNCQ=";
|
||||
hash = "sha256-3dhrL0L24suVAEeMDQDKPs7A4c+a4V8X4AYQMAXj7lE=";
|
||||
};
|
||||
|
||||
dontConfigure = true;
|
||||
|
|
|
|||
|
|
@ -71,7 +71,6 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [
|
||||
eyjhb
|
||||
sebtm
|
||||
];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -204,9 +204,6 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
|
|||
'';
|
||||
mainProgram = "checkov";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [
|
||||
anhdle14
|
||||
fab
|
||||
];
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -11,16 +11,16 @@
|
|||
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "cloud-hypervisor";
|
||||
version = "51.1";
|
||||
version = "52.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cloud-hypervisor";
|
||||
repo = "cloud-hypervisor";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-H+sfuatB/7cAMwJcT8SKbTyISUdNyp8eSvvyvkKrjho=";
|
||||
hash = "sha256-OGyvmedSaWPsyH6mdHhgXN7MvTnK1HzdfTKUhJRlq8I=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-E32SLJNQ9ssn7GwFpvpKot5nay+cr3rSZcKovjA5oJE=";
|
||||
cargoHash = "sha256-ZNj1H3Iq+IUSe0McHJjrwPOoR+YRB+rsSmZHMhXsHy0=";
|
||||
|
||||
separateDebugInfo = true;
|
||||
|
||||
|
|
@ -38,6 +38,12 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
"net_util" # /dev/net/tun
|
||||
"--exclude"
|
||||
"vmm" # /dev/kvm
|
||||
"--"
|
||||
# io_uring syscalls are blocked by the Lix sandbox
|
||||
"--skip=io_uring"
|
||||
"--skip=qcow_async::unit_tests::"
|
||||
# fallocate(PUNCH_HOLE) reported size depends on the host filesystem
|
||||
"--skip=test_query_device_size_sparse_file_punch_hole"
|
||||
];
|
||||
|
||||
nativeInstallCheckInputs = [
|
||||
|
|
|
|||
|
|
@ -9,14 +9,14 @@
|
|||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "clpeak";
|
||||
version = "1.1.7";
|
||||
version = "2.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "krrishnarraj";
|
||||
repo = "clpeak";
|
||||
tag = finalAttrs.version;
|
||||
fetchSubmodules = true;
|
||||
hash = "sha256-TvlO2/teOoTCQ5uMBw/Pc4uQZ5O0bnwZFBdC/ZzQ6wc=";
|
||||
hash = "sha256-e6r9kGjSWnhgODKtIIjXBA63L9JGQFHIsacfH0IJAGo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
|
|
|||
|
|
@ -14,51 +14,47 @@
|
|||
}:
|
||||
|
||||
let
|
||||
cmakeBool = b: if b then "ON" else "OFF";
|
||||
tinygltf = callPackage ./tinygltf.nix { };
|
||||
in
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
version = "1.5.7";
|
||||
pname = "draco";
|
||||
version = "1.5.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "google";
|
||||
repo = "draco";
|
||||
rev = finalAttrs.version;
|
||||
hash = "sha256-p0Mn4kGeBBKL7Hoz4IBgb6Go6MdkgE7WZgxAnt1tE/0=";
|
||||
fetchSubmodules = true;
|
||||
hash = "sha256-Y1bwBFe3bCklZN2+TBs6mhqDKQjrezMiT5zXlPFuMew=";
|
||||
};
|
||||
|
||||
# ld: unknown option: --start-group
|
||||
postPatch = ''
|
||||
postPatch = lib.optional stdenv.hostPlatform.isDarwin ''
|
||||
substituteInPlace cmake/draco_targets.cmake \
|
||||
--replace "^Clang" "^AppleClang"
|
||||
--replace-fail "^Clang" "^AppleClang"
|
||||
'';
|
||||
|
||||
buildInputs = [
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
python3
|
||||
gtest
|
||||
]
|
||||
++ lib.optionals withTranscoder [
|
||||
];
|
||||
|
||||
buildInputs = lib.optionals withTranscoder [
|
||||
eigen
|
||||
ghc_filesystem
|
||||
tinygltf
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
python3
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DDRACO_ANIMATION_ENCODING=${cmakeBool withAnimation}"
|
||||
"-DDRACO_GOOGLETEST_PATH=${gtest}"
|
||||
"-DBUILD_SHARED_LIBS=${cmakeBool true}"
|
||||
"-DDRACO_TRANSCODER_SUPPORTED=${cmakeBool withTranscoder}"
|
||||
(lib.cmakeFeature "DRACO_GOOGLETEST_PATH" (builtins.toString gtest))
|
||||
(lib.cmakeBool "DRACO_ANIMATION_ENCODING" withAnimation)
|
||||
(lib.cmakeBool "BUILD_SHARED_LIBS" true)
|
||||
(lib.cmakeBool "DRACO_TRANSCODER_SUPPORTED" withTranscoder)
|
||||
]
|
||||
++ lib.optionals withTranscoder [
|
||||
"-DDRACO_EIGEN_PATH=${eigen}/include/eigen3"
|
||||
"-DDRACO_FILESYSTEM_PATH=${ghc_filesystem}"
|
||||
"-DDRACO_TINYGLTF_PATH=${tinygltf}"
|
||||
(lib.cmakeFeature "DRACO_EIGEN_PATH" "${eigen}/include/eigen3")
|
||||
(lib.cmakeFeature "DRACO_FILESYSTEM_PATH" (builtins.toString ghc_filesystem))
|
||||
(lib.cmakeFeature "DRACO_TINYGLTF_PATH" (builtins.toString tinygltf))
|
||||
];
|
||||
|
||||
env.CXXFLAGS = toString [
|
||||
|
|
@ -74,7 +70,9 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
homepage = "https://google.github.io/draco/";
|
||||
changelog = "https://github.com/google/draco/releases/tag/${finalAttrs.version}";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ jansol ];
|
||||
maintainers = with lib.maintainers; [
|
||||
yzx9
|
||||
];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
cmake,
|
||||
}:
|
||||
|
||||
|
|
@ -13,19 +12,19 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
src = fetchFromGitHub {
|
||||
owner = "syoyo";
|
||||
repo = "tinygltf";
|
||||
rev = "v${finalAttrs.version}";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-uQlv+mUWnqUJIXnPf2pVuRg1akcXAfqyBIzPPmm4Np4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Header only C++11 tiny glTF 2.0 library";
|
||||
homepage = "https://github.com/syoyo/tinygltf";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ jansol ];
|
||||
maintainers = with lib.maintainers; [
|
||||
yzx9
|
||||
];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -22,13 +22,13 @@ lib.checkListOfEnum "${pname}: colorVariants" colorVariantList colorVariants
|
|||
stdenvNoCC.mkDerivation
|
||||
{
|
||||
inherit pname;
|
||||
version = "0-unstable-2026-05-06";
|
||||
version = "0-unstable-2026-05-15";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "aiyahm";
|
||||
repo = "FairyWren-Icons";
|
||||
rev = "ea33df10bcc0054b1981f859dcbcc36a77de9107";
|
||||
hash = "sha256-Y4siWzKOmHBATSeoJ+Y5FbntsJYLFp8nmMcQq/UQGXw=";
|
||||
rev = "d4a7d6d0a363e9a640a97e54318e64a52c7fcc28";
|
||||
hash = "sha256-08w8DhTpQeJzqgcBjaH5ELkahgrYrYjulCVR8zd5n9Q=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@
|
|||
net-tools,
|
||||
nixosTests,
|
||||
nodejs_22,
|
||||
replace,
|
||||
ruby_3_3,
|
||||
stdenv,
|
||||
tzdata,
|
||||
|
|
@ -395,10 +394,10 @@ stdenv.mkDerivation {
|
|||
# path, not their relative state directory path. This gets rid of
|
||||
# warnings and means we don't have to link back to lib from the
|
||||
# state directory.
|
||||
${replace}/bin/replace-literal -f -r -e '../../lib' "$out/share/gitlab/lib" config
|
||||
${replace}/bin/replace-literal -f -r -e '../lib' "$out/share/gitlab/lib" config
|
||||
${replace}/bin/replace-literal -f -r -e "require_relative 'application'" "require_relative '$out/share/gitlab/config/application'" config
|
||||
${replace}/bin/replace-literal -f -r -e 'require_relative "/home/git/gitlab/lib/gitlab/puma/error_handler"' "require_relative '$out/share/gitlab/lib/gitlab/puma/error_handler'" config
|
||||
find config -type f -exec sed -i -e "s|\.\./\.\./lib|$out/share/gitlab/lib|" {} +
|
||||
find config -type f -exec sed -i -e "s|\.\./lib|$out/share/gitlab/lib|" {} +
|
||||
find config -type f -exec sed -i -e "s|require_relative 'application'|require_relative '$out/share/gitlab/config/application'|" {} +
|
||||
find config -type f -exec sed -i -e "s|require_relative \"/home/git/gitlab/lib/gitlab/puma/error_handler\"|require_relative \"$out/share/gitlab/lib/gitlab/puma/error_handler\"|" {} +
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
|
|
|
|||
68
pkgs/by-name/ic/icm/package.nix
Normal file
68
pkgs/by-name/ic/icm/package.nix
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
pkg-config,
|
||||
openssl,
|
||||
nix-update-script,
|
||||
onnxruntime,
|
||||
versionCheckHook,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "icm";
|
||||
version = "0.10.49";
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rtk-ai";
|
||||
repo = "icm";
|
||||
tag = "icm-v${finalAttrs.version}";
|
||||
hash = "sha256-GB2SH/Y2l4AkxoFqJfWcsGmWK4uOayCs1FSxBuXShwc=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-U0mHWzRI6BDVC4LRpwWz/QbCeT0fEPxKoY5+1DrI048=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
openssl
|
||||
onnxruntime
|
||||
];
|
||||
|
||||
# Build the HTTP dashboard
|
||||
buildFeatures = [ "web" ];
|
||||
|
||||
env = {
|
||||
# Use system OpenSSL instead of vendoring it
|
||||
OPENSSL_NO_VENDOR = "1";
|
||||
# Point ort (ONNX Runtime bindings) at the system library
|
||||
ORT_STRATEGY = "system";
|
||||
ORT_LIB_LOCATION = "${lib.getLib onnxruntime}/lib";
|
||||
};
|
||||
|
||||
nativeInstallCheckInputs = [
|
||||
versionCheckHook
|
||||
];
|
||||
doInstallCheck = true;
|
||||
|
||||
passthru.updateScript = nix-update-script {
|
||||
extraArgs = [
|
||||
"--version-regex"
|
||||
"^icm-(.*)"
|
||||
];
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Permanent memory system for AI agents with MCP integration";
|
||||
homepage = "https://github.com/rtk-ai/icm";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ jpds ];
|
||||
mainProgram = "icm";
|
||||
platforms = lib.platforms.unix;
|
||||
broken = stdenv.hostPlatform.isDarwin;
|
||||
};
|
||||
})
|
||||
|
|
@ -11,13 +11,13 @@
|
|||
|
||||
buildGoModule (finalAttrs: {
|
||||
pname = "mongo-tools";
|
||||
version = "100.16.1";
|
||||
version = "100.17.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mongodb";
|
||||
repo = "mongo-tools";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-oxMc0+Il6pY0L8KF0h5+DYpBuqQvPzaOcZ8cjQDig0c=";
|
||||
hash = "sha256-lR0pEZgDoIW9HYfutrPa1fNqLLANcw5oS2jATuPSBLo=";
|
||||
};
|
||||
|
||||
vendorHash = null;
|
||||
|
|
|
|||
|
|
@ -39,7 +39,6 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
|||
olejorgenb
|
||||
hedning
|
||||
ma27
|
||||
sebtm
|
||||
];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
description = "Cross-platform, reimplementation of Notepad++";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [ sebtm ];
|
||||
maintainers = [ ];
|
||||
broken = stdenv.hostPlatform.isAarch64;
|
||||
mainProgram = "NotepadNext";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -24,9 +24,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
homepage = "https://github.com/neoeinstein/protoc-gen-prost";
|
||||
changelog = "https://github.com/neoeinstein/protoc-gen-prost/blob/main/CHANGELOG.md";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [
|
||||
felschr
|
||||
sitaaax
|
||||
];
|
||||
maintainers = with lib.maintainers; [ felschr ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -24,9 +24,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
homepage = "https://github.com/neoeinstein/protoc-gen-prost";
|
||||
changelog = "https://github.com/neoeinstein/protoc-gen-prost/blob/main/CHANGELOG.md";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [
|
||||
felschr
|
||||
sitaaax
|
||||
];
|
||||
maintainers = with lib.maintainers; [ felschr ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -24,9 +24,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
homepage = "https://github.com/neoeinstein/protoc-gen-prost";
|
||||
changelog = "https://github.com/neoeinstein/protoc-gen-prost/blob/main/CHANGELOG.md";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [
|
||||
felschr
|
||||
sitaaax
|
||||
];
|
||||
maintainers = with lib.maintainers; [ felschr ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -24,9 +24,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
homepage = "https://github.com/neoeinstein/protoc-gen-prost";
|
||||
changelog = "https://github.com/neoeinstein/protoc-gen-prost/blob/main/CHANGELOG.md";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [
|
||||
felschr
|
||||
sitaaax
|
||||
];
|
||||
maintainers = with lib.maintainers; [ felschr ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -51,7 +51,6 @@ let
|
|||
maintainers = with lib.maintainers; [
|
||||
luftmensch-luftmensch
|
||||
massimogengarelli
|
||||
sebtm
|
||||
shunueda
|
||||
];
|
||||
platforms = builtins.attrNames passthru.sources;
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ let
|
|||
anthonyroussel
|
||||
delafthi
|
||||
rapiteanu
|
||||
sebtm
|
||||
];
|
||||
};
|
||||
in
|
||||
|
|
|
|||
|
|
@ -91,7 +91,6 @@ stdenv.mkDerivation {
|
|||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [
|
||||
rsniezek
|
||||
sebtm
|
||||
matteopacini
|
||||
];
|
||||
platforms = [
|
||||
|
|
|
|||
|
|
@ -103,8 +103,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
homepage = "https://getpublii.com";
|
||||
changelog = "https://github.com/getpublii/publii/releases/tag/v${finalAttrs.version}";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [
|
||||
sebtm
|
||||
maintainers = [
|
||||
];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -7,13 +7,13 @@
|
|||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "tomlc17";
|
||||
version = "260414";
|
||||
version = "20260501";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cktan";
|
||||
repo = "tomlc17";
|
||||
tag = "R${finalAttrs.version}";
|
||||
hash = "sha256-NtytkrRdIGMIYMSfnNkWHdeu78+ac7EL361OZoTK9BI=";
|
||||
hash = "sha256-7LThGIHC9xXLAksNkm6uJm15mt2IGEnDHEnmBm/bPxM=";
|
||||
};
|
||||
|
||||
doCheck = false; # tries to download toml-test suite
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
pkg-config,
|
||||
}:
|
||||
let
|
||||
version = "1.29.0";
|
||||
version = "1.29.9";
|
||||
in
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "websurfx";
|
||||
|
|
@ -16,7 +16,7 @@ rustPlatform.buildRustPackage {
|
|||
owner = "neon-mmd";
|
||||
repo = "websurfx";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-F9tXo+DjLR7v6z3BtV/sO/gGlV9aBXgcXRMHEFki98Q=";
|
||||
hash = "sha256-qSgNyK9W38wAkL0EM9HIFJOilPNQWeHRNpiasGbBL0I=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
|
@ -27,7 +27,7 @@ rustPlatform.buildRustPackage {
|
|||
openssl
|
||||
];
|
||||
|
||||
cargoHash = "sha256-nSZ1sOVsIGdxXuR61R/seW7UX17Kx67f6Sm77GDtLQE=";
|
||||
cargoHash = "sha256-oI9+nMDkmRLxN0dw/X1zchsSUrr5ZC4qQgXoBKR0AbU=";
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace src/handler.rs \
|
||||
|
|
|
|||
|
|
@ -18,13 +18,13 @@ let
|
|||
self:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hex";
|
||||
version = "2.4.1";
|
||||
version = "2.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hexpm";
|
||||
repo = "hex";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-K6ucUWoh5QOXWAciJ04Jo3UIiRxHfcWSKRY/EL/qHjw=";
|
||||
sha256 = "sha256-+deoFCHs2paABaZInyknwdQJafJ/DO0EnqscPUiL6rY=";
|
||||
};
|
||||
|
||||
setupHook = writeText "setupHook.sh" ''
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ buildPythonPackage rec {
|
|||
'';
|
||||
homepage = "https://github.com/bridgecrewio/python-hcl2";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ anhdle14 ];
|
||||
maintainers = [ ];
|
||||
mainProgram = "hcl2tojson";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,6 +22,6 @@ buildPythonPackage (finalAttrs: {
|
|||
description = "Dash component starter pack";
|
||||
homepage = "https://dash.plot.ly/dash-core-components";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.antoinerg ];
|
||||
maintainers = [ ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -22,6 +22,6 @@ buildPythonPackage rec {
|
|||
description = "HTML components for Dash";
|
||||
homepage = "https://dash.plot.ly/dash-html-components";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.antoinerg ];
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,6 +22,6 @@ buildPythonPackage rec {
|
|||
description = "First-Class Interactive DataTable for Dash";
|
||||
homepage = "https://dash.plot.ly/datatable";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.antoinerg ];
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -138,9 +138,6 @@ buildPythonPackage (finalAttrs: {
|
|||
description = "Python framework for building analytical web applications";
|
||||
homepage = "https://dash.plot.ly/";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
antoinerg
|
||||
tomasajt
|
||||
];
|
||||
maintainers = with lib.maintainers; [ tomasajt ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -8,14 +8,14 @@
|
|||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "iamdata";
|
||||
version = "0.1.202605141";
|
||||
version = "0.1.202605151";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cloud-copilot";
|
||||
repo = "iam-data-python";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-B0G+xXpu869GcTGWPTofODf3WHdiGTFXAq/fk1uMkS8=";
|
||||
hash = "sha256-kfdMiKFSnsuD5A8VBjH7ZCQB1SqoorV0feOPHVYWivE=";
|
||||
};
|
||||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
|
|
|
|||
|
|
@ -75,6 +75,6 @@ buildPythonPackage rec {
|
|||
description = "Core logic used by the other Proton components";
|
||||
homepage = "https://github.com/ProtonVPN/python-proton-core";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ sebtm ];
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -42,6 +42,6 @@ buildPythonPackage rec {
|
|||
description = "ProtonVPN core component to access Linux's keyring";
|
||||
homepage = "https://github.com/ProtonVPN/python-proton-keyring-linux";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ sebtm ];
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -119,7 +119,6 @@ buildPythonPackage rec {
|
|||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [
|
||||
anthonyroussel
|
||||
sebtm
|
||||
rapiteanu
|
||||
];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -70,7 +70,6 @@ buildPythonPackage rec {
|
|||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [
|
||||
anthonyroussel
|
||||
sebtm
|
||||
rapiteanu
|
||||
];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -14,16 +14,16 @@
|
|||
}:
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "scx_rustscheds";
|
||||
version = "1.1.0";
|
||||
version = "1.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sched-ext";
|
||||
repo = "scx";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-kPOAiy2siIKZ6/zz43qPW7bp27T98MOhwmZMxpVpito=";
|
||||
hash = "sha256-/EE1+mlbCQmeLqhbHM+k1JwrRw1Z1mOZmq/ffR1l4bg=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-nXiprz5ryGJeTy9nnKaLSKE0FSl17YE88xFt9bUTTL8=";
|
||||
cargoHash = "sha256-1alU6Hl7wHM69JK1ZRWzhT843ROs0WhkBUuDDweZSvk=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
|
|
@ -86,6 +86,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
"scx_chaos"
|
||||
"scx_cosmos"
|
||||
"scx_flash"
|
||||
"scx_flow"
|
||||
"scx_lavd"
|
||||
"scx_layered"
|
||||
"scx_mitosis"
|
||||
|
|
@ -95,7 +96,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
"scx_rustland"
|
||||
"scx_rusty"
|
||||
"scx_tickless"
|
||||
"scx_wd40"
|
||||
];
|
||||
|
||||
meta = {
|
||||
|
|
|
|||
|
|
@ -6,13 +6,13 @@
|
|||
}:
|
||||
postgresqlBuildExtension (finalAttrs: {
|
||||
pname = "system_stats";
|
||||
version = "4.0";
|
||||
version = "4.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "EnterpriseDB";
|
||||
repo = "system_stats";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-+DHfhLBoYdWBvXZVcvnWlNwceTNsQ/irEdgnklv5onA=";
|
||||
hash = "sha256-ANv0JnxX0lG9nrzbfl0HARVxlrFTTJcIK7w8oYLmqKs=";
|
||||
};
|
||||
|
||||
buildFlags = [ "PG_CFLAGS=-Wno-error=vla" ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue