1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-06 00:46:50 +00:00
flake-parts/template/package/flake.nix

23 lines
649 B
Nix
Raw Normal View History

2023-10-03 16:05:44 +02:00
{
description = "Description for the project";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
2023-10-03 16:05:44 +02:00
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;
};
};
};
}