Files
nixpkgs/pkgs/by-name/li/lizardfs/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

71 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
makeWrapper,
python3,
db,
fuse,
asciidoc,
libxml2,
libxslt,
docbook_xml_dtd_412,
docbook_xsl,
boost,
pkg-config,
judy,
pam,
spdlog,
systemdMinimal,
zlib, # optional
}:
stdenv.mkDerivation rec {
pname = "lizardfs";
version = "3.13.0-rc3";
src = fetchFromGitHub {
owner = "lizardfs";
repo = "lizardfs";
rev = version;
sha256 = "sha256-rgaFhJvmA1RVDL4+vQLMC0GrdlgUlvJeZ5/JJ67C20Q=";
};
nativeBuildInputs = [
cmake
pkg-config
makeWrapper
];
buildInputs = [
db
fuse
asciidoc
libxml2
libxslt
docbook_xml_dtd_412
docbook_xsl
zlib
boost
judy
pam
spdlog
python3
systemdMinimal
];
meta = with lib; {
homepage = "https://lizardfs.com";
description = "Highly reliable, scalable and efficient distributed file system";
platforms = platforms.linux;
license = licenses.gpl3;
maintainers = with maintainers; [
rushmorem
shamilton
];
# 'fprintf' was not declared in this scope
broken = true;
};
}