2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, libxslt, docbook_xsl, libcap }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "bubblewrap";
|
|
|
|
version = "0.4.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/containers/bubblewrap/releases/download/v${version}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "00ycgi6q2yngh06bnz50wkvar6r2jnjf3j158grhi9k13jdrpimr";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ libxslt docbook_xsl ];
|
|
|
|
buildInputs = [ libcap ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Unprivileged sandboxing tool";
|
|
|
|
homepage = "https://github.com/containers/bubblewrap";
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
|
|
|
}
|