mirror of
https://github.com/NotAShelf/Hyprdoctor.git
synced 2024-11-01 11:41:13 +00:00
41 lines
917 B
Nix
41 lines
917 B
Nix
{
|
|
description = ''
|
|
Basic utility to check your Hyprland logs for errors
|
|
and suggest solutions from an errors database.
|
|
'';
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
};
|
|
|
|
outputs = inputs @ {flake-parts, ...}:
|
|
flake-parts.lib.mkFlake {inherit inputs;} {
|
|
systems = ["x86_64-linux" "aarch64-linux"];
|
|
|
|
perSystem = {
|
|
self',
|
|
pkgs,
|
|
...
|
|
}: {
|
|
/*
|
|
packages = {
|
|
default = self'.packages.hyprdoctor;
|
|
hyprdoctor = pkgs.callPackage ./hyprdoctor.nix {};
|
|
};
|
|
*/
|
|
|
|
devShells = {
|
|
default = self'.devShells.hyprdoctor;
|
|
hyprdoctor = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
boost
|
|
nlohmann_json
|
|
gnumake
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|