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": {
"lastModified": 1724197264,
"narHash": "sha256-kw8zZyskszCECn8Di6z7WSquBiP7UGCb3SNN5EAF6BE=",
"ref": "refs/heads/master",
"rev": "f95e7dbaf61b9868acc912896e65126bb1ee048c",
"revCount": 304,
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
"lastModified": 1724598086,
"narHash": "sha256-RwLvR0p1vnGDFz9qXz6QLaFPQ751doKLG1ROWZh6zcA=",
"owner": "Nydragon",
"repo": "quickshell",
"rev": "7aa93ccf9ddb383e54a742cccba27cff37a43c8c",
"type": "github"
},
"original": {
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
"owner": "Nydragon",
"repo": "quickshell",
"type": "github"
}
},
"root": {

View file

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