mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
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;
|
||
|
};
|
||
|
})
|