mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
moosefs: init at 3.0.103
* moosefs: init at 3.0.103 * fix email * fix formatting * fixes as suggested
This commit is contained in:
parent
f0bd27150a
commit
aac69819d6
@ -2969,6 +2969,11 @@
|
||||
email = "softs@metabarcoding.org";
|
||||
name = "Celine Mercier";
|
||||
};
|
||||
mfossen = {
|
||||
email = "msfossen@gmail.com";
|
||||
github = "mfossen";
|
||||
name = "Mitchell Fossen";
|
||||
};
|
||||
mgdelacroix = {
|
||||
email = "mgdelacroix@gmail.com";
|
||||
github = "mgdelacroix";
|
||||
|
41
pkgs/tools/filesystems/moosefs/default.nix
Normal file
41
pkgs/tools/filesystems/moosefs/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ stdenv
|
||||
, fetchzip
|
||||
, fetchFromGitHub
|
||||
, makeWrapper
|
||||
, python
|
||||
, fuse
|
||||
, pkgconfig
|
||||
, libpcap
|
||||
, file
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "moosefs";
|
||||
version = "3.0.103";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0pqralv57ci4zwd75hz4pxmd4l9d4nib2mcsvrb6jndxqkaqcvns";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -1719,6 +1719,8 @@ in
|
||||
|
||||
mongodb-tools = callPackage ../tools/misc/mongodb-tools { };
|
||||
|
||||
moosefs = callPackage ../tools/filesystems/moosefs { };
|
||||
|
||||
mozlz4a = callPackage ../tools/compression/mozlz4a { };
|
||||
|
||||
msr-tools = callPackage ../os-specific/linux/msr-tools { };
|
||||
|
Loading…
Reference in New Issue
Block a user