mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-14 11:47:31 +00:00
22 lines
649 B
Nix
22 lines
649 B
Nix
{
|
|
description = "Description for the project";
|
|
|
|
inputs = {
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
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;
|
|
};
|
|
};
|
|
};
|
|
}
|