Skip to content

Commit

Permalink
bubblejail: init at 0.9.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
justDeeevin committed Jan 16, 2025
1 parent 72bdb79 commit 72a293a
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions pkgs/by-name/bu/bubblejail/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
lib,
python3,
meson,
ninja,
stdenv,
fetchFromGitHub,
xdg-dbus-proxy,
bubblewrap,
libseccomp,
libnotify,
desktop-file-utils,
scdoc,
}:
stdenv.mkDerivation rec {
pname = "bubblejail";
version = "0.9.4.1";

src = fetchFromGitHub {
owner = "igo95862";
repo = "bubblejail";
tag = version;
hash = "sha256-zQuNS26FgQpjVmjzNjw/tHP/H2rs53jqNlYZR3kqfzU=";
};

patches = [
../../../development/python-modules/bubblejail/scan-store.patch
../../../development/python-modules/bubblejail/env-python.patch
../../../development/python-modules/bubblejail/meson-options.patch
];

buildInputs = with python3.pkgs; [
xdg-dbus-proxy
bubblewrap
libseccomp
libnotify
desktop-file-utils

# python deps
pyxdg
tomli-w
pyqt6
lxns
bubblejail
];

nativeBuildInputs = [
# scdoc
python3.pkgs.jinja2
meson
ninja
python3
];

meta = {
description = "Bubblewrap based sandboxing for desktop applications";
homepage = "https://github.com/igo95862/bubblejail/";
changelog = "https://github.com/igo95862/bubblejail/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [justdeeevin];
mainProgram = "bubblejail";
};
}

0 comments on commit 72a293a

Please sign in to comment.