From f5ad11c26255163fffb55de154a69a97bada6d87 Mon Sep 17 00:00:00 2001 From: Hamish Mackenzie Date: Wed, 5 Nov 2025 12:58:50 +1300 Subject: [PATCH] Add upper bound to streaming-commons patch --- overlays/windows.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlays/windows.nix b/overlays/windows.nix index c7bc2172bc..0ef407a63c 100644 --- a/overlays/windows.nix +++ b/overlays/windows.nix @@ -87,7 +87,7 @@ final: prev: # http-client.patches = pkgs.lib.optionals pkgs.stdenv.hostPlatform.isWindows [ ({ version }: if version == "0.5.14" then ./patches/http-client-0.5.14.patch else null) ]; conduit.patches = pkgs.lib.optionals pkgs.stdenv.hostPlatform.isWindows [ ({ version }: if builtins.compareVersions version "1.3.1.1" < 0 then ./patches/conduit-1.3.0.2.patch else null) ]; - streaming-commons.patches = pkgs.lib.optionals pkgs.stdenv.hostPlatform.isWindows [ ./patches/streaming-commons-0.2.0.0.patch ]; + streaming-commons.patches = pkgs.lib.optionals pkgs.stdenv.hostPlatform.isWindows [ ({ version }: if builtins.compareVersions version "0.2.3.1" < 0 then ./patches/streaming-commons-0.2.0.0.patch else null) ]; x509-system.patches = pkgs.lib.optionals pkgs.stdenv.hostPlatform.isWindows [ ./patches/x509-system-1.6.6.patch ]; crypton-x509-system.patches = pkgs.lib.optionals pkgs.stdenv.hostPlatform.isWindows [ ./patches/crypton-x509-system.patch ];