Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
docbook_xsl,
|
|
libxslt,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
bash-completion,
|
|
libcap,
|
|
libselinux,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bubblewrap";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containers";
|
|
repo = "bubblewrap";
|
|
rev = "v${version}";
|
|
hash = "sha256-8IDMLQPeO576N1lizVudXUmTV6hNOiowjzRpEWBsZ+U=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace tests/libtest.sh \
|
|
--replace "/var/tmp" "$TMPDIR"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
docbook_xsl
|
|
libxslt
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
bash-completion
|
|
libcap
|
|
libselinux
|
|
];
|
|
|
|
# incompatible with Nix sandbox
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/containers/bubblewrap/releases/tag/${src.rev}";
|
|
description = "Unprivileged sandboxing tool";
|
|
homepage = "https://github.com/containers/bubblewrap";
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "bwrap";
|
|
};
|
|
}
|