2024-05-01 22:14:04 +00:00
|
|
|
{
|
|
|
|
description = "Library of low-level helper functions for nix expressions.";
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
outputs =
|
|
|
|
{ self }:
|
2024-05-01 22:14:04 +00:00
|
|
|
let
|
|
|
|
lib0 = import ./.;
|
2024-06-30 08:16:52 +00:00
|
|
|
in
|
|
|
|
{
|
2024-05-01 22:14:04 +00:00
|
|
|
lib = lib0.extend (import ./flake-version-info.nix self);
|
|
|
|
};
|
|
|
|
}
|