1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2024-12-14 11:47:31 +00:00
flake-parts/template/package/flake.nix
2023-10-03 16:05:44 +02:00

21 lines
593 B
Nix

{
description = "Description for the project";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
perSystem = { config, pkgs, ... }: {
packages.default = config.packages.hello;
packages.hello = pkgs.callPackage ./hello/package.nix { };
checks.hello = pkgs.callPackage ./hello/test.nix {
hello = config.packages.hello;
};
};
};
}