Skip to content

Commit

Permalink
treewide: avoid importCargoLock lockFile
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroHLC committed Jun 25, 2024
1 parent 283a86a commit 6759b61
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pkgs/conduwuit-git/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gitOverride {
};

withCargoDeps = lockFile: final.rustPlatform.importCargoLock {
inherit lockFile;
lockFileContents = builtins.readFile lockFile;
outputHashes = conduwuitPins;
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/lan-mouse-git/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ gitOverride {
};

withCargoDeps = lockFile: final.rustPlatform.importCargoLock {
inherit lockFile;
lockFileContents = builtins.readFile lockFile;
};
}
2 changes: 1 addition & 1 deletion pkgs/niri-git/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ gitOverride {
};

withCargoDeps = lockFile: final.rustPlatform.importCargoLock {
inherit lockFile;
lockFileContents = builtins.readFile lockFile;
outputHashes = niriPins;
};
}
2 changes: 1 addition & 1 deletion pkgs/pwvucontrol-git/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ gitOverride {
};

withCargoDeps = lockFile: final.rustPlatform.importCargoLock {
inherit lockFile;
lockFileContents = builtins.readFile lockFile;
outputHashes = pwvucontrolPins;
};
}
2 changes: 1 addition & 1 deletion pkgs/zed-editor-git/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ gitOverride {
ref = "main";

withCargoDeps = lockFile: final.rustPlatform.importCargoLock {
inherit lockFile;
lockFileContents = builtins.readFile lockFile;
outputHashes = zedPins;
};

Expand Down

1 comment on commit 6759b61

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All packages were built and cached successfully! (332 not suitable for building)

Please sign in to comment.