mirror of https://github.com/rm-dr/daisy
Added documentation
parent
b7a6378589
commit
3c8ed9f4f3
18
README.md
18
README.md
|
@ -7,13 +7,25 @@ Many features are missing, this is still under development.
|
||||||
**Web demo: [here](https://daisy.betalupi.com) (won't work on mobile)**
|
**Web demo: [here](https://daisy.betalupi.com) (won't work on mobile)**
|
||||||
|
|
||||||
# 📦 Installation
|
# 📦 Installation
|
||||||
|
- **From source:** `cargo build --release`, binary will be at `./target/release/daisy`
|
||||||
- **Cargo:** `cargo install daisycalc`
|
- **Cargo:** `cargo install daisycalc`
|
||||||
- **Arch:** `yay -S daisy`
|
- **Arch:** `yay -S daisy`
|
||||||
- **Debian:** coming soon
|
- **Debian:** coming soon
|
||||||
|
- **Nix:** Use `default.nix`. Daisy isn't in nixpkgs yet, you'll need to add something like the following to `configuration.nix`:
|
||||||
|
|
||||||
From source: `cargo build --release` \
|
```nix
|
||||||
Binary will be in `target/release/daisy`
|
let
|
||||||
|
daisy = builtins.fetchGit {
|
||||||
|
url = "https://github.com/rm-dr/daisy.git";
|
||||||
|
ref = "master";
|
||||||
|
} + /default.nix;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
(callPackage daisy { })
|
||||||
|
];
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
# 📹 Screenshot
|
# 📹 Screenshot
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue