2021-04-20 19:58:50 +02:00
|
|
|
{
|
|
|
|
description = "Library of low-level helper functions for nix expressions.";
|
|
|
|
|
2023-10-20 12:12:48 +02:00
|
|
|
outputs = { self }:
|
|
|
|
let
|
2023-10-31 13:38:29 +01:00
|
|
|
lib0 = import ./.;
|
2023-10-20 12:12:48 +02:00
|
|
|
in {
|
2023-10-31 13:38:29 +01:00
|
|
|
lib = lib0.extend (import ./flake-version-info.nix self);
|
2023-10-20 12:12:48 +02:00
|
|
|
};
|
2021-04-20 19:58:50 +02:00
|
|
|
}
|