2022-11-14T08:33:24 bubblewrap 0.6.2 -> 0.7.0 https://repology.org/metapackage/bubblewrap/versions 2022-11-14T08:33:26 attrpath: bubblewrap 2022-11-14T08:33:26 Checking auto update branch... 2022-11-14T08:33:26 No auto update branch exists 2022-11-14T08:33:27 Old version 0.6.2" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , docbook_xsl , libxslt , meson , ninja , pkg-config , bash-completion , libcap , libselinux }: stdenv.mkDerivation rec { pname = "bubblewrap"; version = "0.7.0"; src = fetchFromGitHub { owner = "containers"; repo = "bubblewrap"; rev = "v${version}"; hash = "sha256-ddxEtBw6JcSsZCN5uKyuBMVkWwSoThfxrcvHZGZzFr4="; }; postPatch = '' substituteInPlace tests/libtest.sh \ --replace "/var/tmp" "$TMPDIR" ''; nativeBuildInputs = [ docbook_xsl libxslt meson ninja pkg-config ]; buildInputs = [ bash-completion libcap libselinux ]; # incompatible with Nix sandbox doCheck = false; meta = with lib; { description = "Unprivileged sandboxing tool"; homepage = "https://github.com/containers/bubblewrap"; license = licenses.lgpl2Plus; maintainers = with maintainers; [ dotlambda ]; platforms = platforms.linux; mainProgram = "bwrap"; }; }