13fae10551
Separate pin for s390x wheel builds and mermaid image builds, distinct from project-local dev builds (nixpkgs-projects).
24 lines
890 B
Nix
24 lines
890 B
Nix
{
|
|
description = "Shared nixpkgs pins for the server fleet";
|
|
|
|
inputs = {
|
|
# Default pin — all servers follow this unless overridden below
|
|
nixpkgs.url = "github:NixOS/nixpkgs/2fc6539b481e1d2569f25f8799236694180c0993";
|
|
|
|
# Per-server pins (follow default; replace with a direct url to override)
|
|
nixpkgs-armer.follows = "nixpkgs";
|
|
nixpkgs-bim.follows = "nixpkgs";
|
|
nixpkgs-howard.follows = "nixpkgs";
|
|
nixpkgs-mermaid.follows = "nixpkgs";
|
|
nixpkgs-micron.follows = "nixpkgs";
|
|
|
|
# Project builds (local dev; follow default unless overridden)
|
|
nixpkgs-projects.follows = "nixpkgs";
|
|
|
|
# CI cross-builds (s390x wheels, mermaid images; follow default unless overridden)
|
|
nixpkgs-ci.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, nixpkgs-armer, nixpkgs-bim, nixpkgs-howard, nixpkgs-mermaid, nixpkgs-micron, nixpkgs-projects, nixpkgs-ci }: { };
|
|
}
|