nixpkgs/pkgs/tools/admin/bubblewrap/default.nix

21 lines
606 B
Nix
Raw Normal View History

2017-07-27 18:04:56 +00:00
{ stdenv, fetchurl, libxslt, docbook_xsl, libcap }:
stdenv.mkDerivation rec {
name = "bubblewrap-${version}";
version = "0.3.1";
2017-07-27 18:04:56 +00:00
src = fetchurl {
url = "https://github.com/projectatomic/bubblewrap/releases/download/v${version}/${name}.tar.xz";
sha256 = "1y2bdlxnlr84xcbf31lzirc292c5ak9bd2wvcvh4ppsliih6pjny";
2017-07-27 18:04:56 +00:00
};
nativeBuildInputs = [ libcap libxslt docbook_xsl ];
meta = with stdenv.lib; {
description = "Unprivileged sandboxing tool";
homepage = https://github.com/projectatomic/bubblewrap;
2017-07-27 18:04:56 +00:00
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ ];
2017-07-27 18:04:56 +00:00
};
}