Update
This commit is contained in:
parent
33e95af983
commit
00d6e22bdb
5 changed files with 26 additions and 18 deletions
13
flake.nix
13
flake.nix
|
@ -6,19 +6,26 @@
|
|||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
outputs = { nixpkgs, flake-utils, ... }:
|
||||
flake-utils.lib.eachSystem flake-utils.lib.allSystems (system:
|
||||
let
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
in
|
||||
{
|
||||
devShells = rec {
|
||||
devShells = {
|
||||
default = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
kdePackages.qtbase
|
||||
# For Qt
|
||||
qt6.wrapQtAppsHook
|
||||
qt6.qtbase
|
||||
qt6.qtdeclarative
|
||||
|
||||
# For Kirigami
|
||||
kdePackages.kirigami
|
||||
kdePackages.ki18n
|
||||
kdePackages.kcoreaddons
|
||||
|
||||
# For building
|
||||
ninja
|
||||
cmake
|
||||
gcc
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue