We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26cb747 commit fc67198Copy full SHA for fc67198
1 file changed
package.nix
@@ -3,14 +3,20 @@
3
rustPlatform,
4
}:
5
rustPlatform.buildRustPackage (finalAttrs: {
6
- name = "gitv";
+ pname = "gitv";
7
+ version = "dev";
8
9
src = ./.;
10
cargoLock = {
11
lockFile = ./Cargo.lock;
12
allowBuiltinFetchGit = true;
13
};
14
15
+ env = {
16
+ VERGEN_GIT_DESCRIBE = finalAttrs.version;
17
+ VERGEN_BUILD_DATE = "unknown";
18
+ };
19
+
20
meta = {
21
description = "Terminal-based viewer for GitHub issues";
22
homepage = "https://github.com/JayanAXHF/gitv";
0 commit comments