mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
30 lines
877 B
Nix
30 lines
877 B
Nix
{ lib, stdenv, rustPlatform, fetchFromGitLab, libcap_ng, libseccomp }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "virtiofsd";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "virtio-fs";
|
|
repo = "virtiofsd";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-r8r7rDIFgZqxnudVQqO8kOdfNoMkV2LWiW+yE1qJgJM=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-bK+N11SmdXrWU4HlACkOWav/xuwRUvXrbLC394N9urs=";
|
|
|
|
LIBCAPNG_LIB_PATH = "${lib.getLib libcap_ng}/lib";
|
|
LIBCAPNG_LINK_TYPE =
|
|
if stdenv.hostPlatform.isStatic then "static" else "dylib";
|
|
|
|
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 ];
|
|
};
|
|
}
|