From 4ce5d59c41d4217f02e6f84c6e531fbc4ee20122 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 7 Mar 2025 23:41:37 +0530 Subject: Simple qtwebengine view --- flake.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'flake.nix') 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 -- cgit v1.3.1