We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26cb747 commit 18df45fCopy full SHA for 18df45f
2 files 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";
result
@@ -0,0 +1 @@
1
+/nix/store/p6y89jf0nfqlnfy3vhzy24nz5fb2k8i9-gitv-dev
0 commit comments