ede5720a0d
* Improves the comments of `lib/flake-version-info.nix` and drops the `__`-prefix from the filename. * `lib'` -> `lib0` in `nixpkgs/lib`. * Drop the declaration of `trivial.version` in the overlay because this declaration already uses the final expressions of `versionSuffix` and `release` now. * No need to fall back to `self.lastModified` anymore, this was a workaround for pre2.4 Nix. Co-authored-by: Robert Hensing <robert@roberthensing.nl> Co-authored-by: Silvan Mosberger <contact@infinisil.com>
11 lines
218 B
Nix
11 lines
218 B
Nix
{
|
|
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);
|
|
};
|
|
}
|