Files
nixpkgs/pkgs/tools/admin/bubblewrap/default.nix
R. RyanTM 06956fa9da bubblewrap: 0.3.0 -> 0.3.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bubblewrap/versions
2018-10-04 09:03:58 +02:00

21 lines
614 B
Nix

{ stdenv, fetchurl, libxslt, docbook_xsl, libcap }:
stdenv.mkDerivation rec {
name = "bubblewrap-${version}";
version = "0.3.1";
src = fetchurl {
url = "https://github.com/projectatomic/bubblewrap/releases/download/v${version}/${name}.tar.xz";
sha256 = "1y2bdlxnlr84xcbf31lzirc292c5ak9bd2wvcvh4ppsliih6pjny";
};
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 ];
};
}