feat: update deconz

- add x86_64-linux support
- expose in flake
This commit is contained in:
Felix Schröter 2022-08-03 01:30:46 +02:00
parent 025263531c
commit 9fbea3db5c
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 26 additions and 10 deletions

View file

@ -186,9 +186,13 @@
shellcheck.enable = true;
};
};
in {
in rec {
formatter = pkgs.nixfmt;
packages = { deconz = pkgs.qt5.callPackage ./pkgs/deconz { }; };
apps = { deconz = flake-utils.lib.mkApp { drv = packages.deconz; }; };
devShells.default =
pkgs.mkShell { inherit (pre-commit-check) shellHook; };
});