about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/admin/bubblewrap/default.nix
blob: b98cadd57d116ccdc43d1267079fbc63ae4fb979 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, libxslt, docbook_xsl, libcap }:

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 ];

  meta = with stdenv.lib; {
    description = "Unprivileged sandboxing tool";
    homepage = "https://github.com/containers/bubblewrap";
    license = licenses.lgpl2Plus;
    maintainers = with maintainers; [ ];
  };
}