blob: a21b988cbbe724ee25c3a9e0375d2e56845a0cc6 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{
description = "Library of low-level helper functions for nix expressions.";
outputs =
{ self }:
let
lib0 = import ./.;
in
{
lib = lib0.extend (import ./flake-version-info.nix self);
};
}
|