Skip to content
This repository was archived by the owner on Sep 1, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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