summary refs log tree commit diff
path: root/pkgs/tools/filesystems/xtreemfs/default.nix
blob: 98657891f2d672b98796aa35c947eecb561f41dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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