CH592_Makefile_Template/flake.nix
Richard Goulter 683e7ea92e check in nix
2023-12-21 23:00:40 +07:00

27 lines
510 B
Nix

{
description = "The CH592 HID_Keyboard EVT Example";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachSystem [
flake-utils.lib.system.x86_64-linux
] (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells = {
default = import ./shell.nix {
inherit pkgs;
};
};
});
}