Peer-to-peer web browser based on Dat protocol: https://beakerbrowser.com/
Repository: https://github.com/beakerbrowser/beaker
I might come back and do this myself at some point, but I'm adding this here as a placeholder so that if anyone starts working on this, they can mention it here.
It would be probably better to build beaker with electron, but I use appimageTools to have beaker in nix:
{ stdenv, appimageTools, fetchurl }:
appimageTools.wrapType2 {
name = "beakerbrowser";
src = fetchurl {
url = "https://github.com/beakerbrowser/beaker/releases/download/0.8.7/Beaker.Browser.0.8.7.AppImage";
sha256 = "0x29ysnqjf7f0s6kgqkm5wmc4d3zp2gfbg0qh78qgl4phyhfzgfr";
};
}
I think we should be less regarding and accept packages that use appimageTools.wrapType2, since this kind of application seems really annoying and discouraging to package, as show #66571 . You can be interesting on my work on #81833 , i now can provide a way to escape AppRun and let you run directly call ./beaker-browser .
Hello, I'm a bot and I thank you in the name of the community for opening this issue.
To help our human contributors focus on the most-relevant reports, I check up on old issues to see if they're still relevant. This issue has had no activity for 180 days, and so I marked it as stale, but you can rest assured it will never be closed by a non-human.
The community would appreciate your effort in checking if the issue is still valid. If it isn't, please close it.
If the issue persists, and you'd like to remove the stale label, you simply need to leave a comment. Your comment can be as simple as "still important to me". If you'd like it to get more attention, you can ask for help by searching for maintainers and people that previously touched related code and @ mention them in a comment. You can use Git blame or GitHub's web interface on the relevant files to find them.
Lastly, you can always ask for help at our Discourse Forum or at #nixos' IRC channel.
I still want that.
Most helpful comment
It would be probably better to build beaker with electron, but I use
appimageToolsto have beaker in nix: