We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aefa3d1 commit 162c5caCopy full SHA for 162c5ca
1 file changed
nix/package.nix
@@ -1,7 +1,10 @@
1
-{ bun2nix, ... }:
+{ bun2nix, lib, ... }:
2
+let
3
+ packageJson = lib.importJSON ../package.json;
4
+in
5
bun2nix.mkDerivation {
6
pname = "hunkdiff";
- version = "0.10.0";
7
+ version = packageJson.version;
8
9
src = ../.;
10
0 commit comments