3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/admin/bubblewrap/default.nix

22 lines
622 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libxslt, docbook_xsl, libcap }:
2017-07-27 19:04:56 +01:00
stdenv.mkDerivation rec {
pname = "bubblewrap";
2021-08-21 12:43:21 +01:00
version = "0.5.0";
2017-07-27 19:04:56 +01:00
src = fetchurl {
url = "https://github.com/containers/bubblewrap/releases/download/v${version}/${pname}-${version}.tar.xz";
2021-08-21 12:43:21 +01:00
sha256 = "sha256-Fv2vM3mdYxBONH4BM/kJGW/pDQxQUV0BC8tCLrWgCBg=";
2017-07-27 19:04:56 +01:00
};
nativeBuildInputs = [ libxslt docbook_xsl ];
buildInputs = [ libcap ];
2017-07-27 19:04:56 +01:00
meta = with lib; {
2017-07-27 19:04:56 +01:00
description = "Unprivileged sandboxing tool";
homepage = "https://github.com/containers/bubblewrap";
2017-07-27 19:04:56 +01:00
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ ];
2017-07-27 19:04:56 +01:00
};
}