nixtest/flake.nix

32 lines
596 B
Nix
Raw Normal View History

2025-05-03 22:05:29 +02:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2026-04-02 14:27:32 +02:00
ren.url = "gitlab:rensa-nix/core/v0.2.0?dir=lib";
};
2025-05-03 22:05:29 +02:00
outputs = {
ren,
self,
2025-05-03 22:05:29 +02:00
...
} @ inputs:
ren.buildWith
{
inherit inputs;
cellsFrom = ./nix;
transformInputs = system: i:
i
// {
pkgs = import i.nixpkgs {inherit system;};
2025-05-03 22:08:50 +02:00
};
}
{
packages = ren.select self [
["repo" "ci" "packages"]
["repo" "tests"]
["packages" "packages"]
["repo" "docs"]
["repo" "soonix" "packages"]
];
2025-05-03 22:05:29 +02:00
};
}