mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
Gabriel Arazas
3a4833d46d
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.
22 lines
389 B
Nix
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;
|
|
};
|
|
})
|