Skip to content

Commit

Permalink
Quote url value in fetchCrateGit output
Browse files Browse the repository at this point in the history
  • Loading branch information
proski committed Mar 31, 2024
1 parent e514659 commit bf497ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/Cargo.nix.tera
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ in
src = fetchCratesIo { inherit name version; sha256 = "{{ crate.source.CratesIo.sha256 }}"; };
{%- elif crate.source.Git.url %}
src = fetchCrateGit {
url = {{ crate.source.Git.url }};
url = "{{ crate.source.Git.url }}";
name = "{{ crate.name }}";
version = "{{ crate.version }}";
rev = "{{ crate.source.Git.rev }}";
Expand Down

0 comments on commit bf497ec

Please sign in to comment.