mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 01:04:06 +01:00
12 lines
108 B
Nix
12 lines
108 B
Nix
/**
|
|
Flake operations.
|
|
*/
|
|
{ lib }:
|
|
{
|
|
|
|
inherit (builtins)
|
|
parseFlakeRef
|
|
flakeRefToString
|
|
;
|
|
|
|
}
|