aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-03-07 23:41:37 +0530
committerAkshay Nair <phenax5@gmail.com>2025-03-07 23:41:37 +0530
commit4ce5d59c41d4217f02e6f84c6e531fbc4ee20122 (patch)
tree6821ee74a348c65724bd83ee8fecf7fb43e295b7 /flake.nix
parentd7b0739cca80d0af95367e801972d10e3ea859db (diff)
downloadnull-browser-4ce5d59c41d4217f02e6f84c6e531fbc4ee20122.tar.gz
null-browser-4ce5d59c41d4217f02e6f84c6e531fbc4ee20122.zip
Simple qtwebengine view
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