Create DEPENDENCIES.md

This commit is contained in:
RGBCube 2023-05-23 21:07:08 +03:00 committed by GitHub
parent 039debd251
commit b74d8dafbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

33
DEPENDENCIES.md Normal file
View file

@ -0,0 +1,33 @@
# 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;
}
```