mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
3cd3922c97
see issue #43716
23 lines
545 B
Nix
23 lines
545 B
Nix
{ stdenv, lib, zookeeper, zookeeper_mt, fuse, autoreconfHook, log4cxx, boost }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "zkfuse-${version}";
|
|
inherit (zookeeper) version src;
|
|
|
|
sourceRoot = "${zookeeper.name}/src/contrib/zkfuse";
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ 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 ];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|