feat: change qs package to fork including qml lib generation for linter

This commit is contained in:
Nydragon 2024-08-25 18:18:23 +02:00
parent 59e06ced91
commit a5606ce51d
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 18 additions and 12 deletions

18
flake.lock generated
View file

@ -23,17 +23,17 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1724197264, "lastModified": 1724598086,
"narHash": "sha256-kw8zZyskszCECn8Di6z7WSquBiP7UGCb3SNN5EAF6BE=", "narHash": "sha256-RwLvR0p1vnGDFz9qXz6QLaFPQ751doKLG1ROWZh6zcA=",
"ref": "refs/heads/master", "owner": "Nydragon",
"rev": "f95e7dbaf61b9868acc912896e65126bb1ee048c", "repo": "quickshell",
"revCount": 304, "rev": "7aa93ccf9ddb383e54a742cccba27cff37a43c8c",
"type": "git", "type": "github"
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
}, },
"original": { "original": {
"type": "git", "owner": "Nydragon",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell" "repo": "quickshell",
"type": "github"
} }
}, },
"root": { "root": {

View file

@ -6,7 +6,8 @@
utils.url = "github:numtide/flake-utils"; utils.url = "github:numtide/flake-utils";
quickshell = { quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell"; #url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
url = "github:Nydragon/quickshell";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };
@ -17,10 +18,15 @@
system: system:
let let
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
quickshell = inputs.quickshell.packages.${system}.default; quickshell = inputs.quickshell.packages.${system}.default.override { withQMLLib = true; };
in in
{ {
devShell = pkgs.mkShell { buildInputs = [ quickshell ]; }; devShell = pkgs.mkShell {
buildInputs = [
quickshell
pkgs.kdePackages.qtdeclarative
];
};
defaultPackage = import ./nix/package.nix { defaultPackage = import ./nix/package.nix {
inherit (pkgs) stdenv; inherit (pkgs) stdenv;
inherit quickshell; inherit quickshell;