Skip to content

Instantly share code, notes, and snippets.

@yuchangyuan
Created May 30, 2017 11:55
Show Gist options
  • Save yuchangyuan/c3b263609a1937f75477c6c3453af68c to your computer and use it in GitHub Desktop.
Save yuchangyuan/c3b263609a1937f75477c6c3453af68c to your computer and use it in GitHub Desktop.
nix package of ceph v10
pkgs.callPackage ./generic.nix (rec {
version = "10.2.7";
src = pkgs.fetchgit {
url = "https://github.com/ceph/ceph.git";
rev = "refs/tags/v${version}";
sha256 = "0q49mkkphl2wlvbix09kbyj9sgv838zhi96dx3zs79kqmacn2mm6";
};
patches = [ ./fix-pythonpath.patch ];
buildInputs = with pkgs.python2Packages; [
cython virtualenv pip
pkgs.openldap
];
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment