nixpkgs/pkgs/servers/misc/virtiofsd/default.nix

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

30 lines
875 B
Nix
Raw Normal View History

2022-05-12 18:04:30 +02:00
{ lib, stdenv, rustPlatform, fetchFromGitLab, libcap_ng, libseccomp }:
2022-01-20 01:48:44 +01:00
rustPlatform.buildRustPackage rec {
pname = "virtiofsd";
2023-02-24 06:21:01 +01:00
version = "1.5.1";
2022-01-20 01:48:44 +01:00
src = fetchFromGitLab {
owner = "virtio-fs";
repo = "virtiofsd";
rev = "v${version}";
2023-02-24 06:21:01 +01:00
sha256 = "sha256-FQKZVkPD4DQKMduWW2g9vD1vvaFlU6QpNEj+g3yeE2Q=";
2022-01-20 01:48:44 +01:00
};
2023-02-24 06:21:01 +01:00
cargoHash = "sha256-scKbu69lrEfUpErs6gZyZOGb3OwCzDThbs6O0ZtJX/8=";
2022-01-20 01:48:44 +01:00
2022-05-12 18:04:30 +02:00
LIBCAPNG_LIB_PATH = "${lib.getLib libcap_ng}/lib";
LIBCAPNG_LINK_TYPE =
if stdenv.hostPlatform.isStatic then "static" else "dylib";
2022-01-20 01:48:44 +01: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 ];
};
}