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

23 lines
531 B
Nix
Raw Normal View History

{ stdenv, lib, zookeeper, zookeeper_mt, fuse, autoreconfHook, log4cxx, boost }:
2015-11-20 00:53:34 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "zkfuse";
2017-02-27 11:37:42 +00:00
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 ];
2018-07-22 14:28:44 +00:00
license = licenses.asl20;
2015-11-20 00:53:34 +00:00
};
}