From 1fdf1d424f51f4ebb3d0cf2a2e9171c4743724d6 Mon Sep 17 00:00:00 2001 From: Robin Quintero Date: Wed, 6 Sep 2023 09:45:39 -0500 Subject: [PATCH] feat(build): #1097 deprecate inputs.nixpkgs - replace `inputs.nixpkgs` with `__nixpkgs__` at `/makes.nix` Signed-off-by: Robin Quintero --- makes.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/makes.nix b/makes.nix index 587e6f74..a547c61e 100644 --- a/makes.nix +++ b/makes.nix @@ -1,9 +1,9 @@ { fetchNixpkgs, fetchUrl, - inputs, outputs, projectPath, + __nixpkgs__, ... }: { projectIdentifier = "makes-repo"; @@ -82,12 +82,12 @@ }; dev = { example = { - bin = [inputs.nixpkgs.hello]; + bin = [__nixpkgs__.hello]; }; makes = { bin = [ - inputs.nixpkgs.just - inputs.nixpkgs.reuse + __nixpkgs__.just + __nixpkgs__.reuse ]; source = [outputs."/cli/env/runtime"]; }; @@ -270,7 +270,7 @@ ]; searchPaths = { bin = [ - inputs.nixpkgs.git + __nixpkgs__.git ]; pythonPackage = [ (projectPath "/src/cli/main")