mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2025-03-06 08:56:51 +00:00
22 lines
593 B
Nix
22 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|