Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kutu-dev/datafall
An Adwaita application for multithreaded HTTP file downloading.
https://github.com/kutu-dev/datafall
adwaita gtk gtk4 libadwaita relm4 rust rust-lang
Last synced: about 1 month ago
JSON representation
An Adwaita application for multithreaded HTTP file downloading.
- Host: GitHub
- URL: https://github.com/kutu-dev/datafall
- Owner: kutu-dev
- Created: 2024-08-12T11:26:53.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-08-23T15:30:50.000Z (3 months ago)
- Last Synced: 2024-09-29T22:42:14.299Z (about 1 month ago)
- Topics: adwaita, gtk, gtk4, libadwaita, relm4, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 9.54 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Nubosa
![Linux logo](https://img.shields.io/badge/Linux-%2301A1EE?style=flat&logo=linux&logoColor=FFFFFF)
![macOS logo](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&labelColor=000000)
![Rust stable logo](https://img.shields.io/badge/Rust-stable-%23F74B00?style=flat&logo=rust)
![Static Badge](https://img.shields.io/badge/Nix-devShell-%235073BE?style=flat&logo=nixos&logoColor=FFFFFF)An Adwaita application for multithreaded HTTP file downloading.
## Installing
### On a system with Nix available
DataFall is provided as a package on a Flake, just add it to your inputs and use the package when neeeded:
```nix
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";datafall.url = "github:kutu-dev/datafall":
datafall.inputs.nixpkgs.follows = "nixpkgs";
};# Your output function...
}
```### On a generic Unix system
Manual compilation is needed.## Compiling
### On a system with Nix available
The flake file included in this repo should make a working environment, just run:
```sh
nix develop
cargo run
```### On a generic Unix system
You need to have installed on your system the following packages:
- `pkg-config`
- `open-ssl`
- `gtk4`
- `libadwaita`
- `librsvg`
- `adwaita-icon-theme`
- `dejavu_fonts`And manually compile the crate with:
```sh
cargo run
```## Note for Windows users
I have personally tried and failed to compile this program for Windows, unfortunately the GTK support outside the GNOME ecosystem is really lacking so cross-compiling with [`cross`](https://github.com/cross-rs/cross/tree/main) has been a near impossible task. I don't develop on Windows myself so `MSYS2` is not a viable option on my side and in any case it will probably also give lots of issues.## Acknowledgements
- Created with :heart: by [Jorge "Kutu" Dobón Blanco](https://dobon.dev).