at 15.09-beta 13 lines 321 B view raw
1{ callPackage, fetchgit, ... } @ args: 2 3callPackage ./generic.nix (args // rec { 4 version = "9.0.2"; 5 6 src = fetchgit { 7 url = "https://github.com/ceph/ceph.git"; 8 rev = "refs/tags/v${version}"; 9 sha256 = "0kydjyvb1566mh33p6dlljfx1r4cfdj8ic4i19h5r9vavkc46nf0"; 10 }; 11 12 patches = [ ./fix-pythonpath.patch ]; 13})