We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 881b01b + e66f382 commit 648a374Copy full SHA for 648a374
pkgs/by-name/ca/cargo-aoc/package.nix
@@ -5,12 +5,12 @@
5
versionCheckHook,
6
nix-update-script,
7
}:
8
-rustPlatform.buildRustPackage rec {
+rustPlatform.buildRustPackage (finalAttrs: {
9
pname = "cargo-aoc";
10
version = "0.3.8";
11
12
src = fetchCrate {
13
- inherit pname version;
+ inherit (finalAttrs) pname version;
14
hash = "sha256-5CjY91515GeLzmLJiGjfbBfIMPr32EA65X/rriKPWRY=";
15
};
16
@@ -33,4 +33,4 @@ rustPlatform.buildRustPackage rec {
33
maintainers = with lib.maintainers; [ defelo ];
34
mainProgram = "cargo-aoc";
35
36
-}
+})
0 commit comments