mirror of
https://github.com/zhaofengli/attic.git
synced 2024-12-14 11:57:30 +00:00
d20160548e
Currently only integration tests.
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{
|
|
description = "A Nix binary cache server";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.05";
|
|
|
|
flake-parts = {
|
|
url = "github:hercules-ci/flake-parts";
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
};
|
|
|
|
crane = {
|
|
url = "github:ipetkov/crane";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nix-github-actions = {
|
|
url = "github:nix-community/nix-github-actions";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
flake-compat = {
|
|
url = "github:edolstra/flake-compat";
|
|
flake = false;
|
|
};
|
|
};
|
|
|
|
outputs = inputs @ { self, flake-parts, ... }: let
|
|
supportedSystems = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
"riscv64-linux"
|
|
"aarch64-darwin"
|
|
"x86_64-darwin"
|
|
];
|
|
|
|
inherit (inputs.nixpkgs) lib;
|
|
|
|
modules = builtins.foldl' (acc: f: f acc) ./flake [
|
|
builtins.readDir
|
|
(lib.filterAttrs (name: type:
|
|
type == "regular" && lib.hasSuffix ".nix" name
|
|
))
|
|
(lib.mapAttrsToList (name: _:
|
|
lib.path.append ./flake name
|
|
))
|
|
];
|
|
|
|
in flake-parts.lib.mkFlake { inherit inputs; } {
|
|
imports = modules;
|
|
systems = supportedSystems;
|
|
|
|
debug = true;
|
|
};
|
|
}
|