mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-23 00:13:02 +03:00
a7690e35d0
modified to fix laziness issue in defaultNix
13 lines
272 B
Nix
13 lines
272 B
Nix
# This file provides backward compatibility to nix < 2.4 clients
|
|
let
|
|
flake =
|
|
import
|
|
./dev-flake/flake-compat.nix
|
|
{src = ./.;};
|
|
in
|
|
flake.defaultNix
|
|
# allow overriding inputs
|
|
// {
|
|
__functor = defaultNix: inputs: defaultNix.overrideInputs inputs;
|
|
}
|