nixpkgs/pkgs/tools/filesystems/ceph/generic.nix

205 lines
7.3 KiB
Nix
Raw Normal View History

{ stdenv, autoconf, automake, makeWrapper, pkgconfig, libtool, which
2015-05-02 16:57:35 +01:00
, boost, python, pythonPackages, libxml2, git, zlib
2015-04-21 22:57:48 +01:00
# Optional Dependencies
, snappy ? null, leveldb ? null, yasm ? null, fcgi ? null, expat ? null
, curl ? null, fuse ? null, accelio ? null, libibverbs ? null, librdmacm ? null
, libedit ? null, libatomic_ops ? null, kinetic-cpp-client ? null
, rocksdb ? null, libs3 ? null
# Mallocs
, jemalloc ? null, gperftools ? null
# Crypto Dependencies
, cryptopp ? null
, nss ? null, nspr ? null
# Linux Only Dependencies
, linuxHeaders, libuuid, udev, keyutils, libaio ? null, libxfs ? null
, zfs ? null
# Version specific arguments
2015-04-22 20:34:34 +01:00
, version, src, patches ? [], buildInputs ? []
, ...
}:
2015-04-21 22:57:48 +01:00
# We must have one crypto library
assert cryptopp != null || (nss != null && nspr != null);
with stdenv.lib;
let
hasServer = snappy != null && leveldb != null;
2015-04-21 22:57:48 +01:00
hasMon = hasServer;
hasMds = hasServer;
hasOsd = hasServer;
hasRadosgw = fcgi != null && expat != null && curl != null && libedit != null;
2015-04-21 22:57:48 +01:00
2015-04-23 20:45:13 +01:00
hasXio = (stdenv.isLinux || stdenv.isFreeBSD) &&
versionAtLeast version "0.95" &&
accelio != null && libibverbs != null && librdmacm != null;
2015-04-21 22:57:48 +01:00
hasRocksdb = versionAtLeast version "0.95" && rocksdb != null;
2015-04-22 20:34:34 +01:00
# TODO: Reenable when kinetic support is fixed
hasKinetic = versionAtLeast version "0.95" && kinetic-cpp-client != null && false;
2015-04-22 20:34:34 +01:00
2015-04-21 22:57:48 +01:00
# Malloc implementation (can be jemalloc, tcmalloc or null)
malloc = if jemalloc != null then jemalloc else gperftools;
2015-04-21 22:57:48 +01:00
# We prefer nss over cryptopp
cryptoStr = if nss != null && nspr != null then "nss" else
if cryptopp != null then "cryptopp" else "none";
2015-04-21 22:57:48 +01:00
cryptoLibsMap = {
nss = [ nss nspr ];
cryptopp = [ cryptopp ];
2015-04-21 22:57:48 +01:00
none = [ ];
};
2015-05-20 06:56:44 +01:00
wrapArgs = "--set PYTHONPATH : \"$(toPythonPath $lib)\""
+ " --prefix PYTHONPATH : \"$(toPythonPath ${python.modules.readline})\""
2015-04-21 22:57:48 +01:00
+ " --prefix PYTHONPATH : \"$(toPythonPath ${pythonPackages.flask})\""
2015-05-20 06:56:44 +01:00
+ " --set PATH : \"$out/bin\"";
in
2015-04-20 20:01:40 +01:00
stdenv.mkDerivation {
name="ceph-${version}";
inherit src;
2015-04-20 20:01:40 +01:00
patches = patches ++ [
./0001-Makefile-env-Don-t-force-sbin.patch
];
nativeBuildInputs = [ autoconf automake makeWrapper pkgconfig libtool which ];
2015-04-22 20:34:34 +01:00
buildInputs = buildInputs ++ cryptoLibsMap.${cryptoStr} ++ [
boost python libxml2 yasm libatomic_ops libs3 malloc pythonPackages.flask zlib
2015-05-20 06:56:44 +01:00
] ++ optional (versionAtLeast version "9.0.0") [
2015-04-22 22:32:41 +01:00
git # Used for the gitversion string
pythonPackages.sphinx # Used for docs
2015-04-22 20:34:34 +01:00
] ++ optional stdenv.isLinux [
linuxHeaders libuuid udev keyutils libaio libxfs zfs
2015-04-22 20:34:34 +01:00
] ++ optional hasServer [
snappy leveldb
2015-04-22 20:34:34 +01:00
] ++ optional hasRadosgw [
fcgi expat curl fuse libedit
2015-04-22 20:34:34 +01:00
] ++ optional hasXio [
accelio libibverbs librdmacm
2015-04-22 20:34:34 +01:00
] ++ optional hasRocksdb [
rocksdb
2015-04-22 20:34:34 +01:00
] ++ optional hasKinetic [
kinetic-cpp-client
];
2015-04-21 22:57:48 +01:00
postPatch = ''
# Fix zfs pkgconfig detection
sed -i 's,\[zfs\],\[libzfs\],g' configure.ac
# Fix seagate kinetic linking
sed -i 's,libcrypto.a,-lcrypto,g' src/os/Makefile.am
'';
preConfigure = ''
2015-04-21 22:57:48 +01:00
# Ceph expects the arch command to be usable during configure
# for detecting the assembly type
mkdir mybin
echo "#${stdenv.shell} -e" >> mybin/arch
echo "uname -m" >> mybin/arch
chmod +x mybin/arch
PATH="$PATH:$(pwd)/mybin"
./autogen.sh
2015-04-21 22:57:48 +01:00
# Fix the python site-packages install directory
sed -i "s,\(PYTHON\(\|_EXEC\)_PREFIX=\).*,\1'$lib',g" configure
'';
configureFlags = [
"--exec_prefix=\${out}"
"--sysconfdir=/etc"
"--localstatedir=/var"
2015-04-21 22:57:48 +01:00
"--libdir=\${lib}/lib"
"--includedir=\${lib}/include"
(mkWith true "rbd" null)
(mkWith true "cephfs" null)
(mkWith hasRadosgw "radosgw" null)
(mkWith true "radosstriper" null)
(mkWith hasServer "mon" null)
(mkWith hasServer "osd" null)
(mkWith hasServer "mds" null)
(mkEnable true "client" null)
(mkEnable hasServer "server" null)
(mkWith (cryptoStr == "cryptopp") "cryptopp" null)
(mkWith (cryptoStr == "nss") "nss" null)
(mkEnable false "root-make-check" null)
(mkWith false "profiler" null)
(mkWith false "debug" null)
(mkEnable false "coverage" null)
(mkWith (fuse != null) "fuse" null)
(mkWith (malloc == jemalloc) "jemalloc" null)
(mkWith (malloc == gperftools) "tcmalloc" null)
(mkEnable false "pgrefdebugging" null)
(mkEnable false "cephfs-java" null)
(mkEnable hasXio "xio" null)
(mkWith (libatomic_ops != null) "libatomic-ops" null)
(mkWith true "ocf" null)
(mkWith hasKinetic "kinetic" null)
(mkWith hasRocksdb "librocksdb" null)
(mkWith false "librocksdb-static" null)
(mkWith (libs3 != null) "system-libs3" null)
(mkWith true "rest-bench" null)
2015-04-21 22:57:48 +01:00
] ++ optional stdenv.isLinux [
(mkWith (libaio != null) "libaio" null)
(mkWith (libxfs != null) "libxfs" null)
(mkWith (zfs != null) "libzfs" null)
2015-05-20 06:56:44 +01:00
] ++ optional (versionAtLeast version "10.0.0") [
(mkWith true "man-pages" null)
(mkWith false "tcmalloc-minimal" null)
(mkWith false "valgrind" null)
2015-04-21 22:57:48 +01:00
];
installFlags = [ "sysconfdir=\${out}/etc" ];
2015-04-21 22:57:48 +01:00
outputs = [ "out" "lib" ];
postInstall = ''
2015-04-21 22:57:48 +01:00
# Wrap all of the python scripts
wrapProgram $out/bin/ceph ${wrapArgs}
wrapProgram $out/bin/ceph-brag ${wrapArgs}
wrapProgram $out/bin/ceph-rest-api ${wrapArgs}
wrapProgram $out/sbin/ceph-create-keys ${wrapArgs}
wrapProgram $out/sbin/ceph-disk ${wrapArgs}
2015-04-21 22:57:48 +01:00
# Bring in lib as a native build input
mkdir -p $out/nix-support
echo "$lib" > $out/nix-support/propagated-native-build-inputs
# Fix the python library loading
find $lib/lib -name \*.pyc -or -name \*.pyd -exec rm {} \;
for PY in $(find $lib/lib -name \*.py); do
2015-04-22 20:34:34 +01:00
LIBS="$(sed -n "s/.*find_library('\([^)]*\)').*/\1/p" "$PY")"
# Fix each find_library call
for LIB in $LIBS; do
REALLIB="$lib/lib/lib$LIB.so"
sed -i "s,find_library('$LIB'),'$REALLIB',g" "$PY"
done
2015-04-21 22:57:48 +01:00
# Reapply compilation optimizations
NAME=$(basename -s .py "$PY")
(cd "$(dirname $PY)"; python -c "import $NAME"; python -O -c "import $NAME")
done
'';
enableParallelBuilding = true;
meta = {
homepage = http://ceph.com/;
description = "Distributed storage system";
license = licenses.lgpl21;
maintainers = with maintainers; [ ak wkennington ];
2015-04-21 22:57:48 +01:00
platforms = with platforms; unix;
};
passthru.version = version;
}