about summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorSarah Brofeldt <sarah@qtr.dk>2024-02-20 08:58:55 +0100
committerNiklas Hambüchen <mail@nh2.me>2024-02-22 02:04:49 +0000
commitaadc609b0eb23eece4d7d940c15b09971eb803bd (patch)
tree1959ca0e97c1ce3d73d4cf9c44cab96a1325ea87 /pkgs/tools/filesystems
parent0e74ca98a74bc7270d28838369593635a5db3260 (diff)
downloadnixlib-aadc609b0eb23eece4d7d940c15b09971eb803bd.tar
nixlib-aadc609b0eb23eece4d7d940c15b09971eb803bd.tar.gz
nixlib-aadc609b0eb23eece4d7d940c15b09971eb803bd.tar.bz2
nixlib-aadc609b0eb23eece4d7d940c15b09971eb803bd.tar.lz
nixlib-aadc609b0eb23eece4d7d940c15b09971eb803bd.tar.xz
nixlib-aadc609b0eb23eece4d7d940c15b09971eb803bd.tar.zst
nixlib-aadc609b0eb23eece4d7d940c15b09971eb803bd.zip
ceph: fix cryptography patching for in-expr version
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/ceph/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/ceph/default.nix b/pkgs/tools/filesystems/ceph/default.nix
index 5d1c3249b98f..ebaf6532df52 100644
--- a/pkgs/tools/filesystems/ceph/default.nix
+++ b/pkgs/tools/filesystems/ceph/default.nix
@@ -195,6 +195,9 @@ let
           hash = "sha256-gFfDTc2QWBWHBCycVH1dYlCsWQMVcRZfOBIau+njtDU=";
         };
 
+        # Not using the normal `(old.patches or []) ++` pattern here to use
+        # the overridden package's patches, because current nixpkgs's `cryptography`
+        # has patches that do not apply on this old version.
         patches = [
           # Fix https://nvd.nist.gov/vuln/detail/CVE-2023-49083 which has no upstream backport.
           # See https://github.com/pyca/cryptography/commit/f09c261ca10a31fe41b1262306db7f8f1da0e48a#diff-f5134bf8f3cf0a5cc8601df55e50697acc866c603a38caff98802bd8e17976c5R1893