summary refs log tree commit diff
path: root/pkgs/tools/filesystems/xtreemfs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2011-08-30 05:51:49 +0000
committerMichael Raskin <7c6f434c@mail.ru>2011-08-30 05:51:49 +0000
commit3f845cb22df13e4f0f98c0ccdb3d21a50329e961 (patch)
tree68de1041e3e78f37f1ba049c235de0623cef43b4 /pkgs/tools/filesystems/xtreemfs
parentc5e13457580a0cd2ea6593cb069157f0385e7569 (diff)
downloadnixpkgs-3f845cb22df13e4f0f98c0ccdb3d21a50329e961.tar
nixpkgs-3f845cb22df13e4f0f98c0ccdb3d21a50329e961.tar.gz
nixpkgs-3f845cb22df13e4f0f98c0ccdb3d21a50329e961.tar.bz2
nixpkgs-3f845cb22df13e4f0f98c0ccdb3d21a50329e961.tar.lz
nixpkgs-3f845cb22df13e4f0f98c0ccdb3d21a50329e961.tar.xz
nixpkgs-3f845cb22df13e4f0f98c0ccdb3d21a50329e961.tar.zst
nixpkgs-3f845cb22df13e4f0f98c0ccdb3d21a50329e961.zip
Adding xtreemfs
svn path=/nixpkgs/trunk/; revision=28914
Diffstat (limited to 'pkgs/tools/filesystems/xtreemfs')
-rw-r--r--pkgs/tools/filesystems/xtreemfs/default.nix79
1 files changed, 79 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/xtreemfs/default.nix b/pkgs/tools/filesystems/xtreemfs/default.nix
new file mode 100644
index 00000000000..98657891f2d
--- /dev/null
+++ b/pkgs/tools/filesystems/xtreemfs/default.nix
@@ -0,0 +1,79 @@
+x@{builderDefsPackage
+  , boost, fuse, openssl, cmake, attr, jdk, ant, which, python, file
+  , ...}:
+builderDefsPackage
+(a :  
+let 
+  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ 
+    [];
+
+  buildInputs = map (n: builtins.getAttr n x)
+    (builtins.attrNames (builtins.removeAttrs x helperArgNames));
+  sourceInfo = rec {
+    baseName="XtreemFS";
+    version="1.3.0";
+    name="${baseName}-${version}";
+    url="http://xtreemfs.googlecode.com/files/${name}.tar.gz";
+    hash="15rg3dh22kb2g94fmbb6r32a9qfl3yr4ql17rwj50l4y8wrcx0hf";
+  };
+in
+rec {
+  src = a.fetchurl {
+    url = sourceInfo.url;
+    sha256 = sourceInfo.hash;
+  };
+
+  inherit (sourceInfo) name version;
+  inherit buildInputs;
+
+  /* doConfigure should be removed if not needed */
+  phaseNames = ["setVars" "fixMakefile" "doMakeInstall" "fixInterpreterBin"
+    "fixInterpreterEtc"
+    "usrIsOut"];
+
+  setVars = a.noDepEntry ''
+    export JAVA_HOME="${jdk}"
+    export ANT_HOME="${ant}"
+    export CMAKE_HOME=${cmake}
+  '';
+
+  fixMakefile = a.fullDepEntry ''
+    sed -e 's@DESTDIR)/usr@DESTDIR)@g' -i Makefile
+
+    sed -e 's@/usr/bin/@@g' -i cpp/thirdparty/protobuf-*/configure
+    sed -e 's@/usr/bin/@@g' -i cpp/thirdparty/protobuf-*/gtest/configure
+    sed -e 's@/usr/bin/@@g' -i cpp/thirdparty/gtest-*/configure
+  '' ["doUnpack" "minInit"];
+
+  fixInterpreterBin = a.doPatchShebangs "$out/bin";
+  fixInterpreterEtc = a.doPatchShebangs "$out/etc/xos/xtreemfs";
+
+  usrIsOut = a.fullDepEntry ''
+    sed -e "s@/usr/@$out/@g" -i \
+      "$out"/{bin/xtfs_*,etc/xos/xtreemfs/*.*,etc/xos/xtreemfs/*/*,etc/init.d/*}
+    sed -e "s@JAVA_HOME=/usr@JAVA_HOME=${jdk}@g" -i \
+      "$out"/{bin/xtfs_*,etc/init.d/*}
+  '' ["minInit"];
+
+  makeFlags = [
+    ''DESTDIR="$out"''
+    ''SHELL="${a.stdenv.shell}"''
+  ];
+      
+  meta = {
+    description = "A distributed filesystem";
+    maintainers = with a.lib.maintainers;
+    [
+      raskin
+    ];
+    platforms = with a.lib.platforms;
+      linux;
+    license = a.lib.licenses.bsd3;
+  };
+  passthru = {
+    updateInfo = {
+      downloadPage = "http://xtreemfs.org/download_sources.php";
+    };
+  };
+}) x
+