Compare commits

..

No commits in common. "3c8ed9f4f30dff07c52b039aadd22b8c93a14a15" and "d9730fd6992895de4f5a307ffbfa1df8d9e54051" have entirely different histories.

3 changed files with 5 additions and 37 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
/target /target
/src/target /src/target
/pkg /pkg
/result

View File

@ -7,25 +7,13 @@ 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`:
```nix From source: `cargo build --release` \
let Binary will be in `target/release/daisy`
daisy = builtins.fetchGit {
url = "https://github.com/rm-dr/daisy.git";
ref = "master";
} + /default.nix;
in
{
environment.systemPackages = with pkgs; [
(callPackage daisy { })
];
}
```
# 📹 Screenshot # 📹 Screenshot

View File

@ -1,19 +0,0 @@
{ lib, fetchgit, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "daisy";
version = "1.1.4";
cargoLock.lockFile = src + /Cargo.lock;
src = fetchgit {
url = "https://github.com/rm-dr/daisy.git";
rev = "v${version}";
sha256 = "sha256-aENuKtE1+tBRN0HZzRr8Gk+dVEYTiP6FNRz817Sk88o=";
};
meta = with lib; {
description = "A pretty command-line scientific calculator";
homepage = "https://github.com/rm-dr/daisy";
#license = licenses.GPL;
maintainers = [ maintainers.tailhook ];
};
}