at 17.09-beta 20 lines 573 B view raw
1{ callPackage, fetchgit, fetchpatch, ... } @ args: 2 3callPackage ./generic.nix (args // rec { 4 version = "9.2.0"; 5 6 src = fetchgit { 7 url = "https://github.com/ceph/ceph.git"; 8 rev = "refs/tags/v${version}"; 9 sha256 = "0a2v3bgkrbkzardcw7ymlhhyjlwi08qmcm7g34y2sjsxk9bd78an"; 10 }; 11 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 ]; 20})