nixos-config/modules/wrapper-manager/sandboxing/bubblewrap/launcher/package.nix
Gabriel Arazas 3a4833d46d
wrapper-manager/sandboxing/bubblewrap: init launcher submodule
At the end of the day, I decided to make it in nixpkgs' runtime shell
(GNU Bash) instead of Rust because it'll be a pain in the ass.
2024-08-05 18:42:12 +08:00

22 lines
389 B
Nix

{
stdenv,
lib,
meson,
ninja
}:
stdenv.mkDerivation (finalAttrs: {
pname = "wrapper-manager-bubblewrap-launcher";
version = "0.1.0";
src = lib.cleanSource ./.;
nativeBuildInputs = [ meson ninja ];
meta = {
description = "wrapper-manager specialized launcher for Bubblewrap environments";
license = lib.licenses.mit;
mainProgram = finalAttrs.pname;
};
})