nixpkgs/pkgs/tools/filesystems/zkfuse/default.nix

22 lines
532 B
Nix
Raw Normal View History

2015-11-20 00:53:34 +00:00
{ stdenv, lib, zookeeper, zookeeper_mt, fuse, pkgconfig, autoreconfHook, log4cxx, boost, tree }:
stdenv.mkDerivation rec {
2017-02-27 11:37:42 +00:00
name = "zkfuse-${version}";
inherit (zookeeper) version src;
2015-11-20 00:53:34 +00:00
2017-02-27 11:37:42 +00:00
sourceRoot = "${zookeeper.name}/src/contrib/zkfuse";
2015-11-20 00:53:34 +00:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ zookeeper_mt log4cxx boost fuse ];
2015-11-20 00:53:34 +00:00
installPhase = ''
mkdir -p $out/bin
cp -v src/zkfuse $out/bin
'';
meta = with lib; {
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
};
}