mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
This effectively means that
nixpkgs$ nix eval ./lib#lib.trivial.version
"23.11.20231020.ee0d6b5"
now gives meaningful results as well.
See https://github.com/NixOS/nixpkgs/pull/257100#discussion_r1352075369
for the discussion around this.
11 lines
220 B
Nix
11 lines
220 B
Nix
{
|
|
description = "Library of low-level helper functions for nix expressions.";
|
|
|
|
outputs = { self }:
|
|
let
|
|
lib' = import ./.;
|
|
in {
|
|
lib = lib'.extend (import ./__flake-version-info.nix self);
|
|
};
|
|
}
|