tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
agenix-cli: use finalAttrs pattern instead of rec
misuzu.tngl.sh
6 months ago
7752e774
6a656da3
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ag
agenix-cli
package.nix
+3
-3
pkgs/by-name/ag/agenix-cli/package.nix
···
5
5
nix-update-script,
6
6
}:
7
7
8
8
-
rustPlatform.buildRustPackage rec {
8
8
+
rustPlatform.buildRustPackage (finalAttrs: {
9
9
pname = "agenix-cli";
10
10
version = "0.1.2";
11
11
12
12
src = fetchFromGitHub {
13
13
owner = "cole-h";
14
14
repo = "agenix-cli";
15
15
-
tag = "v${version}";
15
15
+
tag = "v${finalAttrs.version}";
16
16
sha256 = "sha256-eJp6t8h8uOP0YupYn8x6VAAmUbVrXypxNMGx4SK/6d8=";
17
17
};
18
18
···
30
30
maintainers = with lib.maintainers; [ misuzu ];
31
31
mainProgram = "agenix";
32
32
};
33
33
-
}
33
33
+
})