agenix-cli: use finalAttrs pattern instead of rec
This commit is contained in:
parent
6a656da343
commit
7752e774fe
@ -5,14 +5,14 @@
|
|||||||
nix-update-script,
|
nix-update-script,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage (finalAttrs: {
|
||||||
pname = "agenix-cli";
|
pname = "agenix-cli";
|
||||||
version = "0.1.2";
|
version = "0.1.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cole-h";
|
owner = "cole-h";
|
||||||
repo = "agenix-cli";
|
repo = "agenix-cli";
|
||||||
tag = "v${version}";
|
tag = "v${finalAttrs.version}";
|
||||||
sha256 = "sha256-eJp6t8h8uOP0YupYn8x6VAAmUbVrXypxNMGx4SK/6d8=";
|
sha256 = "sha256-eJp6t8h8uOP0YupYn8x6VAAmUbVrXypxNMGx4SK/6d8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -30,4 +30,4 @@ rustPlatform.buildRustPackage rec {
|
|||||||
maintainers = with lib.maintainers; [ misuzu ];
|
maintainers = with lib.maintainers; [ misuzu ];
|
||||||
mainProgram = "agenix";
|
mainProgram = "agenix";
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user