aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 7581784..1b9f0bb 100644
--- a/flake.nix
+++ b/flake.nix
@@ -7,13 +7,21 @@
outputs = { self, nixpkgs, flake-utils, ... }:
let
shell = { pkgs, ... }:
- pkgs.mkShell {
+ pkgs.mkShell rec {
buildInputs = with pkgs; [
cmake
gnumake
- pkgs.qt6.full
+ pkg-config
clang-tools
+
+ pkgs.qt6.full
+ # libcef
+ # nss
];
+ nativeBuildInputs = [];
+
+ # CEF_PACKAGE_PATH = "${pkgs.libcef}";
+ LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath (buildInputs ++ nativeBuildInputs)}";
};
in flake-utils.lib.eachDefaultSystem (system:
let