forked from rust-skia/rust-skia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
42 lines (38 loc) · 1.24 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
description = "nix development shell for rust-skia";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages."${system}";
in {
devShells.default = pkgs.mkShell {
SKIA_NINJA_COMMAND = "${pkgs.ninja}/bin/ninja";
SKIA_GN_COMMAND = "${pkgs.gn}/bin/gn";
LIBCLANG_PATH = "${pkgs.llvmPackages.libclang}/lib/libclang.so";
# necessary to override nix's defaults which cannot be overriden as others are
shellHook = ''
export CC="${pkgs.clang}/bin/clang"
export CXX="${pkgs.clang}/bin/clang++"
export LIBCLANG_PATH="${pkgs.libclang.lib}/lib"
rustup override set stable
'';
nativeBuildInputs = with pkgs; [
clang
fontconfig
libiconv
python
rustup
] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
AppKit
ApplicationServices
CoreVideo
fixDarwinDylibNames
OpenGL
Security
]);
};
});
}