summary refs log tree commit diff
path: root/pkgs/tools/networking/glusterfs/default.nix
blob: 3995faa588bcb5a5b732ddf579dd21cb830fbc69 (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
a :  
let 
  s = import ./src-for-default.nix;
  buildInputs = with a; [
    fuse bison flex
  ];
in
rec {
  src = a.fetchUrlFromSrcInfo s;

  inherit (s) name;
  inherit buildInputs;
  configureFlags = [
    ''--with-mountutildir="$out/sbin"''
    ];

  /* doConfigure should be removed if not needed */
  phaseNames = ["doConfigure" "doMakeInstall"];
      
  meta = {
    description = "Distributed storage system";
    maintainers = [
      a.lib.maintainers.raskin
    ];
    platforms = with a.lib.platforms; 
      linux ++ freebsd;
  };
}