96512b979b
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. These checks were done: - built on NixOS - ran ‘/nix/store/k02fh24ypj5gzazl8qknff4wi7xn0hp6-bubblewrap-0.2.1/bin/bwrap --help’ got 0 exit code - ran ‘/nix/store/k02fh24ypj5gzazl8qknff4wi7xn0hp6-bubblewrap-0.2.1/bin/bwrap --version’ and found version 0.2.1 - found 0.2.1 with grep in /nix/store/k02fh24ypj5gzazl8qknff4wi7xn0hp6-bubblewrap-0.2.1 - directory tree listing: https://gist.github.com/9ee4cdd00b90b74f8599566d9ed1d5d0
20 lines
614 B
Nix
20 lines
614 B
Nix
{ stdenv, fetchurl, libxslt, docbook_xsl, libcap }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bubblewrap-${version}";
|
|
version = "0.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/projectatomic/bubblewrap/releases/download/v${version}/${name}.tar.xz";
|
|
sha256 = "1qhzwgpfsw66hcv5kqc7i4dbzhxr8drrqn3md4grcp7dn02wif2l";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|