21 lines
505 B
Nix
21 lines
505 B
Nix
{ 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 ];
|
|
};
|
|
}
|