summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLibravatar RGBCube <78925721+RGBCube@users.noreply.github.com>2023-05-23 21:07:29 +0300
committerLibravatar GitHub <noreply@github.com>2023-05-23 21:07:29 +0300
commit490cc3d55889f3be20d94b295d4a2d593aa102ee (patch)
tree34fc7fef93a77d1a407696278bad3fa8b8ada55f /README.md
parentb74d8dafbf0ddfc355aeab636834f42f2ea16ba6 (diff)
downloadiced-490cc3d55889f3be20d94b295d4a2d593aa102ee.tar.gz
iced-490cc3d55889f3be20d94b295d4a2d593aa102ee.tar.bz2
iced-490cc3d55889f3be20d94b295d4a2d593aa102ee.zip
Update README.md
Diffstat (limited to '')
-rw-r--r--README.md34
1 files changed, 0 insertions, 34 deletions
diff --git a/README.md b/README.md
index 16ca9926..c72fd770 100644
--- a/README.md
+++ b/README.md
@@ -63,40 +63,6 @@ __Iced is currently experimental software.__ [Take a look at the roadmap],
[check out the issues]: https://github.com/iced-rs/iced/issues
[feel free to contribute!]: #contributing--feedback
-## Dependencies
-
-Iced requires some system dependencies to work, and not
-all operating systems come with them installed.
-
-You can follow the provided instructions for your system to
-get them, if your system isn't here, add it!
-
-### NixOS
-
-You can add this `shell.nix` to your project and use it by running `nix-shell`:
-
-```nix
-{ pkgs ? import <nixpkgs> {} }:
-
-pkgs.mkShell rec {
- buildInputs = with pkgs; [
- expat
- fontconfig
- freetype
- freetype.dev
- libGL
- pkgconfig
- xorg.libX11
- xorg.libXcursor
- xorg.libXi
- xorg.libXrandr
- ];
-
- LD_LIBRARY_PATH =
- builtins.foldl' (a: b: "${a}:${b}/lib") "${pkgs.vulkan-loader}/lib" buildInputs;
-}
-```
-
## Installation
Add `iced` as a dependency in your `Cargo.toml`: