nixpkgs/pkgs/tools/filesystems/lizardfs/default.nix
2016-09-14 19:24:33 +02:00

51 lines
1 KiB
Nix

{ stdenv
, fetchFromGitHub
, cmake
, makeWrapper
, python
, fuse
, asciidoc
, libxml2
, libxslt
, docbook_xml_dtd_412
, docbook_xsl
, boost
, pkgconfig
, judy
, pam
, zlib # optional
}:
stdenv.mkDerivation rec {
name = "lizardfs-${version}";
version = "3.10.2";
src = fetchFromGitHub {
owner = "lizardfs";
repo = "lizardfs";
rev = "v${version}";
sha256 = "0xw6skprxw0wcbqh4yx8f8a4q00x0sfz42llqgd047bcbga1k5zg";
};
buildInputs =
[ cmake fuse asciidoc libxml2 libxslt docbook_xml_dtd_412 docbook_xsl
zlib boost pkgconfig judy pam makeWrapper
];
postInstall = ''
wrapProgram $out/sbin/lizardfs-cgiserver \
--prefix PATH ":" "${python}/bin"
# mfssnapshot and mfscgiserv are deprecated
rm $out/bin/mfssnapshot $out/sbin/mfscgiserv
'';
meta = with stdenv.lib; {
homepage = https://lizardfs.com;
description = "A highly reliable, scalable and efficient distributed file system";
platforms = platforms.linux;
license = licenses.gpl3;
maintainers = [ maintainers.rushmorem ];
};
}