diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-16 15:28:00 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-16 15:29:59 +0530 |
| commit | 041f8933be28d0fcff1196792f30c5ca3176c155 (patch) | |
| tree | 5fceaf5844f3312e8db63425c5c25825df594861 /flake.nix | |
| parent | 350d2bd7ccf80b91abdff154344f0ce88080a195 (diff) | |
| download | null-browser-041f8933be28d0fcff1196792f30c5ca3176c155.tar.gz null-browser-041f8933be28d0fcff1196792f30c5ca3176c155.zip | |
Add configuration class
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -8,7 +8,7 @@ flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; - packages = with pkgs; [ + dependencies = with pkgs; [ pkg-config qt6.full qt6.qtbase @@ -22,7 +22,7 @@ version = "0.0.0"; src = ./.; - buildInputs = packages; + buildInputs = dependencies; nativeBuildInputs = with pkgs; [ cmake qt6.wrapQtAppsHook ]; }; @@ -31,7 +31,8 @@ cmake gnumake clang-tools - ] ++ packages; + ] ++ dependencies; + LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath buildInputs}"; }; }); |
