Compare commits

...

3 Commits

Author SHA1 Message Date
Lars E
59e1862e9c
Add FreeBSD installation instructions (#280) 2024-05-25 20:42:46 +00:00
Joshua Smith
14415a30fc
Fix openSUSE link and installation command in README (#283) 2024-05-25 20:40:25 +00:00
Gabor Pihaj
6c0d126f4b
Add missing darwin build dependency (#286) 2024-05-25 20:38:01 +00:00
2 changed files with 12 additions and 4 deletions

View File

@ -11,7 +11,6 @@
</div>
## About
`iamb` is a Matrix client for the terminal that uses Vim keybindings. It includes support for:
@ -42,6 +41,14 @@ cargo install --locked iamb
See [Configuration](#configuration) for getting a profile set up.
### FreeBSD
On FreeBSD a package is available from the official repositories. To install it simply run:
```
pkg install iamb
```
### NetBSD
On NetBSD a package is available from the official repositories. To install it simply run:
@ -58,12 +65,13 @@ Arch User Repositories (AUR). To install it simply run with your favorite AUR he
```
paru iamb-git
```
### openSUSE Tumbleweed
On openSUSE Tumbleweed a [package](https://build.opensuse.org/package/show/home%3Asmolsheep/iamb) is available from openSUSE Build Service (OBS). To install just use OBS Package Installer:
On openSUSE Tumbleweed a [package](https://build.opensuse.org/package/show/openSUSE:Factory/iamb) is available from the official repositories. To install it simply run:
```
opi iamb
zypper install iamb
```
### Nix / NixOS (flake)

View File

@ -27,7 +27,7 @@
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin
(with darwin.apple_sdk.frameworks; [ AppKit Security ]);
(with darwin.apple_sdk.frameworks; [ AppKit Security Cocoa]);
};
devShell = mkShell {