Skip to content

Commit

Permalink
feat(build): fluidattacks#1097 deprecate inputs.nixpkgs
Browse files Browse the repository at this point in the history
- replace `inputs.nixpkgs` with `__nixpkgs__` at `/makes.nix`

Signed-off-by: Robin Quintero <[email protected]>
  • Loading branch information
rohaquinlop committed Sep 6, 2023
1 parent 45f7141 commit 1fdf1d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions makes.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
fetchNixpkgs,
fetchUrl,
inputs,
outputs,
projectPath,
__nixpkgs__,
...
}: {
projectIdentifier = "makes-repo";
Expand Down Expand Up @@ -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"];
};
Expand Down Expand Up @@ -270,7 +270,7 @@
];
searchPaths = {
bin = [
inputs.nixpkgs.git
__nixpkgs__.git
];
pythonPackage = [
(projectPath "/src/cli/main")
Expand Down

0 comments on commit 1fdf1d4

Please sign in to comment.