8c1d78aa4a
moosefs: 3.0.104 -> 3.0.105
39 lines
822 B
Nix
39 lines
822 B
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, python
|
|
, fuse
|
|
, pkgconfig
|
|
, libpcap
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "moosefs";
|
|
version = "3.0.105";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0wphpdll0j4i6d4yxykaz2bamv83y0sj7j3cfv4br1zamdyprfwx";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig makeWrapper ];
|
|
|
|
buildInputs =
|
|
[ fuse libpcap zlib ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/sbin/mfscgiserv \
|
|
--prefix PATH ":" "${python}/bin"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://moosefs.com;
|
|
description = "Open Source, Petabyte, Fault-Tolerant, Highly Performing, Scalable Network Distributed File System";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.mfossen ];
|
|
};
|
|
}
|