diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-07 23:41:37 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-07 23:41:37 +0530 |
| commit | 4ce5d59c41d4217f02e6f84c6e531fbc4ee20122 (patch) | |
| tree | 6821ee74a348c65724bd83ee8fecf7fb43e295b7 /flake.nix | |
| parent | d7b0739cca80d0af95367e801972d10e3ea859db (diff) | |
| download | null-browser-4ce5d59c41d4217f02e6f84c6e531fbc4ee20122.tar.gz null-browser-4ce5d59c41d4217f02e6f84c6e531fbc4ee20122.zip | |
Simple qtwebengine view
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -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 |
