diff options
Diffstat (limited to 'templates/c/flake.nix')
-rw-r--r-- | templates/c/flake.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/c/flake.nix b/templates/c/flake.nix index a211b56..fea015c 100644 --- a/templates/c/flake.nix +++ b/templates/c/flake.nix @@ -51,14 +51,14 @@ treefmtEval = import ./treefmt.nix {inherit treefmt-nix pkgs;}; # This version is set automatically on `cog bump --auto`; - version = "v0.1.0"; # GUIDING VERSION STRING - pname = "TODO"; + version = "v%INIT_APPLICATION_VERSION"; # GUIDING VERSION STRING + pname = "%INIT_APPLICATION_NAME"; build = pkgs.stdenv.mkDerivation { inherit pname version; src = ./.; - makeFlags = ["PREFIX=${placeholder "out"}"]; + makeFlags = ["PREFIX=${placeholder "out"}" "BIN_VERSION=${version}"]; inherit nativeBuildInputs; }; in { |