summary refs log tree commit diff
path: root/pkgs/tools/filesystems/zkfuse/default.nix
blob: 0738ee84cab7af070ef1402a926eb0e5861a2845 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, lib, zookeeper, zookeeper_mt, fuse, pkgconfig, autoreconfHook, log4cxx, boost, tree }:

stdenv.mkDerivation rec {
  name = "zkfuse-${version}";
  inherit (zookeeper) version src;

  sourceRoot = "${zookeeper.name}/src/contrib/zkfuse";

  buildInputs = [ autoreconfHook zookeeper_mt log4cxx boost fuse ];

  installPhase = ''
    mkdir -p $out/bin
    cp -v src/zkfuse $out/bin
  '';

  meta = with lib; {
    platforms = platforms.linux;
    maintainers = with maintainers; [ cstrahan ];
  };
}