ceph: Add xfsprogs 4.5.0 compat patch

+9 -2
+9 -2
pkgs/tools/filesystems/ceph/default.nix
··· 1 - { callPackage, fetchgit, ... } @ args: 1 + { callPackage, fetchgit, fetchpatch, ... } @ args: 2 2 3 3 callPackage ./generic.nix (args // rec { 4 4 version = "9.2.0"; ··· 9 9 sha256 = "0a2v3bgkrbkzardcw7ymlhhyjlwi08qmcm7g34y2sjsxk9bd78an"; 10 10 }; 11 11 12 - patches = [ ./fix-pythonpath.patch ]; 12 + patches = [ 13 + ./fix-pythonpath.patch 14 + # For building with xfsprogs 4.5.0: 15 + (fetchpatch { 16 + url = "https://github.com/ceph/ceph/commit/602425abd5cef741fc1b5d4d1dd70c68e153fc8d.patch"; 17 + sha256 = "1iyf0ml2n50ki800vjich8lvzmcdviwqwkbs6cdj0vqv2nc5ii1g"; 18 + }) 19 + ]; 13 20 })