Skip to content

Commit

Permalink
Merge pull request #1150 from rohaquinlop/update-nixpkgs
Browse files Browse the repository at this point in the history
feat(build): #1097 deprecate inputs.nixpkgs
  • Loading branch information
dsalaza4 authored Sep 6, 2023
2 parents 45f7141 + 1fdf1d4 commit 64eb23f
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 64eb23f

Please sign in to comment.