Skip to content

Commit

Permalink
virtiofsd: fix SIGSYS when seccomp is turned on
Browse files Browse the repository at this point in the history
(cherry picked from commit b87c330)
  • Loading branch information
SuperSandro2000 authored and alyssais committed Jun 8, 2023
1 parent e084680 commit 4be6954
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pkgs/servers/misc/virtiofsd/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, rustPlatform, fetchFromGitLab, libcap_ng, libseccomp }:
{ lib, stdenv, rustPlatform, fetchFromGitLab, fetchpatch, libcap_ng, libseccomp }:

rustPlatform.buildRustPackage rec {
pname = "virtiofsd";
Expand All @@ -11,6 +11,15 @@ rustPlatform.buildRustPackage rec {
sha256 = "/KL1LH/3txWrZPjvuYmSkNb93euB+Whd2YofIuf/cMg=";
};

patches = [
# fixes SIGSYS when seccomp filtering is on
# https://gitlab.com/virtio-fs/virtiofsd/-/issues/104
(fetchpatch {
url = "https://gitlab.com/virtio-fs/virtiofsd/-/commit/a9141cae72e6785ca10a758c22c7a5690a1fc955.patch";
hash = "sha256-uO8nVdNMGOkd3ThTTw23BykDP9w4I+lEx91447zxcgo=";
})
];

cargoHash = "sha256-EkDop9v75IIIWEK+QI5v58lO20RxgJab/scFmn26idU=";

LIBCAPNG_LIB_PATH = "${lib.getLib libcap_ng}/lib";
Expand Down

0 comments on commit 4be6954

Please sign in to comment.