mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
bb7921d1d6
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.
10 lines
220 B
Nix
10 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);
|
|
};
|
|
}
|