about summary refs log tree commit diff
path: root/nixpkgs/lib/flake.nix
blob: ca09ed5f4a420f6eb6c55ab289abb8500d762c27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
  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);
    };
}