2022-05-18 14:49:53 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitLab, libcap_ng, libseccomp }:
|
2022-02-10 20:34:41 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "virtiofsd";
|
2022-12-28 21:21:41 +00:00
|
|
|
version = "1.5.0";
|
2022-02-10 20:34:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "virtio-fs";
|
|
|
|
repo = "virtiofsd";
|
|
|
|
rev = "v${version}";
|
2022-12-28 21:21:41 +00:00
|
|
|
sha256 = "sha256-jDjP0sHzKHvat/2x6/vhi/ZtdooK3y5wDRujPgi+T4E=";
|
2022-02-10 20:34:41 +00:00
|
|
|
};
|
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
cargoSha256 = "sha256-VFOLNl9kh1EjJaWr3chjyFJqF81vNeqbVqtVElCkZyY=";
|
2022-05-18 14:49:53 +00:00
|
|
|
|
|
|
|
LIBCAPNG_LIB_PATH = "${lib.getLib libcap_ng}/lib";
|
|
|
|
LIBCAPNG_LINK_TYPE =
|
|
|
|
if stdenv.hostPlatform.isStatic then "static" else "dylib";
|
2022-02-10 20:34:41 +00:00
|
|
|
|
|
|
|
buildInputs = [ libcap_ng libseccomp ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://gitlab.com/virtio-fs/virtiofsd";
|
|
|
|
description = "vhost-user virtio-fs device backend written in Rust";
|
|
|
|
maintainers = with maintainers; [ qyliss ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = with licenses; [ asl20 /* and */ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|