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.
1 parent e09a2ca commit eb1a756Copy full SHA for eb1a756
pkgs/by-name/pa/pay-respects/package.nix
@@ -3,15 +3,15 @@
3
fetchFromGitea,
4
rustPlatform,
5
}:
6
-rustPlatform.buildRustPackage rec {
+rustPlatform.buildRustPackage (finalAttrs: {
7
pname = "pay-respects";
8
version = "0.7.6";
9
10
src = fetchFromGitea {
11
domain = "codeberg.org";
12
owner = "iff";
13
repo = "pay-respects";
14
- rev = "v${version}";
+ tag = "v${finalAttrs.version}";
15
hash = "sha256-+50MKpZgJqjuUvJeFFv8fMILkJ3cOAN7R7kmlR+98II=";
16
};
17
@@ -29,4 +29,4 @@ rustPlatform.buildRustPackage rec {
29
];
30
mainProgram = "pay-respects";
31
32
-}
+})
0 commit comments