lock: 1.3.0 -> 1.3.4 (#364295)
[NixPkgs.git] / pkgs / by-name / vi / virtiofsd / package.nix
bloba5f93738f690a551a17ae19e9d24cf2b890a163e
1 { lib, stdenv, rustPlatform, fetchFromGitLab, libcap_ng, libseccomp }:
3 rustPlatform.buildRustPackage rec {
4   pname = "virtiofsd";
5   version = "1.12.0";
7   src = fetchFromGitLab {
8     owner = "virtio-fs";
9     repo = "virtiofsd";
10     rev = "v${version}";
11     hash = "sha256-2+PiorzYHxShatFbfQCry1bjBNL65/TxEj9MmdKmqP0=";
12   };
14   separateDebugInfo = true;
16   cargoHash = "sha256-hXQ/wDDDBV788SvZnYmjiPVrEGCPVusq0O+Uyupgfd0=";
18   LIBCAPNG_LIB_PATH = "${lib.getLib libcap_ng}/lib";
19   LIBCAPNG_LINK_TYPE =
20     if stdenv.hostPlatform.isStatic then "static" else "dylib";
22   buildInputs = [ libcap_ng libseccomp ];
24   postConfigure = ''
25     sed -i "s|/usr/libexec|$out/bin|g" 50-virtiofsd.json
26   '';
28   postInstall = ''
29     install -Dm644 50-virtiofsd.json "$out/share/qemu/vhost-user/50-virtiofsd.json"
30   '';
32   meta = with lib; {
33     homepage = "https://gitlab.com/virtio-fs/virtiofsd";
34     description = "vhost-user virtio-fs device backend written in Rust";
35     maintainers = with maintainers; [ qyliss astro ];
36     mainProgram = "virtiofsd";
37     platforms = platforms.linux;
38     license = with licenses; [ asl20 /* and */ bsd3 ];
39   };