nixpkgs/pkgs/by-name/sa/saunafs/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

73 lines
1.1 KiB
Nix
Raw Normal View History

2024-05-16 11:04:35 +00:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
asciidoc,
jemalloc,
boost,
fmt,
fuse3,
spdlog,
yaml-cpp,
isa-l,
judy,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "saunafs";
2024-09-23 04:24:26 +00:00
version = "4.5.1";
2024-05-16 11:04:35 +00:00
src = fetchFromGitHub {
owner = "leil-io";
repo = "saunafs";
rev = "v${finalAttrs.version}";
2024-09-23 04:24:26 +00:00
hash = "sha256-oMFS5eNNzCpaineCLn0hh3bXGw3SNdj+Pdvk3pevIZg=";
2024-05-16 11:04:35 +00:00
};
patches = [
./sfstool.patch
];
outputs = [
"out"
"man"
"dev"
];
nativeBuildInputs = [
cmake
asciidoc
];
buildInputs = [
fmt
spdlog
yaml-cpp
fuse3
boost
jemalloc
isa-l
judy
];
cmakeFlags = [
(lib.cmakeBool "ENABLE_WERROR" false)
(lib.cmakeBool "ENABLE_DOC" false)
(lib.cmakeBool "ENABLE_CLIENT_LIB" true)
(lib.cmakeBool "ENABLE_JEMALLOC" true)
];
postInstall = lib.optionalString (!stdenv.hostPlatform.isStatic) ''
rm $out/lib/*.a
'';
meta = with lib; {
description = "Distributed POSIX file system";
homepage = "https://saunafs.com";
platforms = platforms.linux;
license = licenses.gpl3Only;
maintainers = [ maintainers.markuskowa ];
};
})