7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, python3
|
|
, fuse
|
|
, pkg-config
|
|
, libpcap
|
|
, zlib
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "moosefs";
|
|
version = "3.0.118";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Sm32VwKlE0V5HZj+VXr66gYKS+fcU1+UVQELiZ64DpU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs =
|
|
[ fuse libpcap zlib python3 ];
|
|
|
|
strictDeps = true;
|
|
|
|
buildFlags = lib.optionals stdenv.hostPlatform.isDarwin [ "CPPFLAGS=-UHAVE_STRUCT_STAT_ST_BIRTHTIME" ];
|
|
|
|
# Fix the build on macOS with macFUSE installed
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
substituteInPlace configure --replace \
|
|
"/usr/local/lib/pkgconfig" "/nonexistent"
|
|
'';
|
|
|
|
preBuild = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
substituteInPlace config.h --replace \
|
|
"#define HAVE_STRUCT_STAT_ST_BIRTHTIME 1" \
|
|
"#undef HAVE_STRUCT_STAT_ST_BIRTHTIME"
|
|
'';
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/sbin/mfscgiserv --replace "datapath=\"$out" "datapath=\""
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
passthru.tests = { inherit (nixosTests) moosefs; };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://moosefs.com";
|
|
description = "Open Source, Petabyte, Fault-Tolerant, Highly Performing, Scalable Network Distributed File System";
|
|
platforms = platforms.unix;
|
|
license = licenses.gpl2Only;
|
|
maintainers = [ maintainers.mfossen ];
|
|
};
|
|
}
|