Merge staging-next into staging

This commit is contained in:
nixpkgs-ci[bot]
2026-07-05 07:07:52 +00:00
committed by GitHub
5 changed files with 7 additions and 11 deletions

View File

@@ -26,7 +26,7 @@ in
programs.immersed = {
enable = lib.mkEnableOption "immersed";
openPorts = lib.mkOption {
openFirewall = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Whether to open firewall ports for Immersed";
@@ -51,7 +51,7 @@ in
environment.systemPackages = [ cfg.package ];
# https://immersed.helpscoutdocs.com/article/23-connection-troubleshooting-linux
networking.firewall = lib.mkIf cfg.openPorts {
networking.firewall = lib.mkIf cfg.openFirewall {
allowedTCPPorts = [ 21000 ];
allowedUDPPorts = [
21000

View File

@@ -2,7 +2,7 @@
lib,
stdenvNoCC,
fetchFromGitHub,
python3Packages,
python313Packages,
}:
stdenvNoCC.mkDerivation rec {
@@ -19,7 +19,8 @@ stdenvNoCC.mkDerivation rec {
env."PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION" = "python";
nativeBuildInputs = [
python3Packages.gftools
# Currently broken on 3.14
python313Packages.gftools
];
buildPhase = ''

View File

@@ -20,13 +20,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "shotcut";
version = "26.4.30";
version = "26.6.25";
src = fetchFromGitHub {
owner = "mltframework";
repo = "shotcut";
tag = "v${finalAttrs.version}";
hash = "sha256-qDW7d0pWYd8ZofXKCEfXl4/XQ9tfEjhJf8avf4tM0q8=";
hash = "sha256-iFaN3WB0CYdENXM4XLoi2RxCOG7kHmvfLRItvxCKYLA=";
};
nativeBuildInputs = [

View File

@@ -158,7 +158,6 @@ buildPythonPackage rec {
requests
rich
ruamel-yaml
setuptools
skia-pathops
statmake
strictyaml

View File

@@ -36,10 +36,6 @@ buildPythonPackage rec {
distutils
];
dependencies = [
setuptools # for pkg_resources
];
buildInputs = [ ttfautohint ];
nativeCheckInputs = [