1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/tools/admin/bubblewrap/default.nix

21 lines
614 B
Nix
Raw Normal View History

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