nixpkgs/pkgs/tools/filesystems/lizardfs/default.nix

50 lines
960 B
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, makeWrapper
2020-12-11 16:13:54 +00:00
, python3
2018-11-22 02:54:14 +00:00
, db
, fuse
2016-06-16 22:12:55 +00:00
, asciidoc
, libxml2
, libxslt
2016-09-02 18:57:08 +00:00
, docbook_xml_dtd_412
, docbook_xsl
, boost
, pkg-config
, judy
, pam
, spdlog
, fmt
2020-12-11 16:13:54 +00:00
, systemdMinimal
, zlib # optional
}:
stdenv.mkDerivation rec {
pname = "lizardfs";
2020-12-11 16:13:54 +00:00
version = "3.13.0-rc3";
src = fetchFromGitHub {
owner = pname;
repo = pname;
2020-12-11 16:13:54 +00:00
rev = version;
sha256 = "sha256-rgaFhJvmA1RVDL4+vQLMC0GrdlgUlvJeZ5/JJ67C20Q=";
};
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
2020-12-11 16:13:54 +00:00
buildInputs = [
db fuse asciidoc libxml2 libxslt docbook_xml_dtd_412 docbook_xsl
zlib boost judy pam spdlog fmt python3 systemdMinimal
2018-08-23 17:49:33 +00:00
];
meta = with lib; {
homepage = "https://lizardfs.com";
description = "A highly reliable, scalable and efficient distributed file system";
platforms = platforms.linux;
license = licenses.gpl3;
maintainers = with maintainers; [ rushmorem shamilton ];
};
}