Add runtime dependencies to flake

This commit is contained in:
Martin 2023-06-23 15:31:08 +02:00
parent 8ecfa79ccd
commit b48c4d423b
Signed by: mawalu
GPG Key ID: BF556F989760A7C8
1 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,12 @@
nimPackages.buildNimPackage {
name = "bwbox";
src = self;
nativeBuildInputs = [pkgs.makeWrapper];
postInstall = ''
wrapProgram $out/bin/bwbox \
--prefix PATH ':' ${pkgs.bubblewrap}/bin \
--prefix PATH ':' ${pkgs.xdg-dbus-proxy}/bin
'';
};
};
}