this post was submitted on 25 Jul 2026
361 points (99.7% liked)

Linux

66607 readers
496 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 7 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] balsoft@lemmy.ml 72 points 11 hours ago* (last edited 3 hours ago) (2 children)

After some finaggling I managed to compile it (here's the nix file I used to get the dependencies). It's looking basic but actually promising! Here are some screenshots (sorry for potato quality, it's the only one Lemmy allows me to upload at for some reason):

The search seems quite nice, it seems to search by names but also allows to search for (some?) OSM tags, e.g. amenity:drinking_water shows up water fountains around you. I'm actually annoyed that other apps don't allow you to do so this easily.

The navigation also seems to work-ish, which is surprising for such a young app. The only remaining things before it's really useful is downloadable maps and offline routing.

[–] IEatDaFeesh@lemmy.world 3 points 3 hours ago (1 children)

Is the link not working or is it an issue on my end?

[–] balsoft@lemmy.ml 3 points 3 hours ago* (last edited 2 hours ago)

It was indeed broken, fixed now.

If you decide to actually go for it, in order to get it to compile I did something like this:

nix-shell
mkdir build && cd build
cmake ..
cmake --build . -j$(nproc)
wrapQtApp bin/CarNavigation
NIXPKGS_QT6_QML_IMPORT_PATH=/nix/store/66hlc66dkinbrc7ifq0v6ynaq3vkv35y-maplibre-native-qt-3.0.0/qml bin/CarNavigation

(I'm not sure why the wrapQtApp doesn't pick up maplibre, maybe it's something to do with the patches they apply, didn't have time to investigate. I also didn't have the time to investigate what is needed to get it "installed", hence to installPhase and nix-build doesn't work)

[–] warmaster@lemmy.world 8 points 6 hours ago

Oh freaking nice! It looks amazing! Thanks for sharing the screenshots!