mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
bubblewrap: init at 0.1.8
This commit is contained in:
parent
2799a94963
commit
159be2e4f5
20
pkgs/tools/admin/bubblewrap/default.nix
Normal file
20
pkgs/tools/admin/bubblewrap/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl, libxslt, docbook_xsl, libcap }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bubblewrap-${version}";
|
||||
version = "0.1.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/projectatomic/bubblewrap/releases/download/v${version}/${name}.tar.xz";
|
||||
sha256 = "1gyy7paqwdrfgxamxya991588ryj9q9c3rhdh31qldqyh9qpy72c";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ libcap libxslt docbook_xsl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Unprivileged sandboxing tool";
|
||||
homepage = "https://github.com/projectatomic/bubblewrap";
|
||||
license = licenses.lgpl2Plus;
|
||||
maintainers = with maintainers; [ konimex ];
|
||||
};
|
||||
}
|
|
@ -722,6 +722,8 @@ with pkgs;
|
|||
|
||||
bochs = callPackage ../applications/virtualization/bochs { };
|
||||
|
||||
bubblewrap = callPackage ../tools/admin/bubblewrap { };
|
||||
|
||||
borgbackup = callPackage ../tools/backup/borg {
|
||||
python3Packages = python34Packages;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue