mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-22 05:36:09 +03:00
downloadCargoPackageFromGit: set fetchLFS when an output hash is defined (#690)
This commit is contained in:
parent
3e08f4b1fc
commit
5d6c16530f
@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||
which rely on `PKG_CONFIG_PATH` remaining stable
|
||||
* `installFromCargoBuildLogHook` no longer assumes or requires that `jq` is
|
||||
available on `$PATH` and will instead directly reference `pkgs.jq`
|
||||
* `downloadCargoPackageFromGit` will now set `fetchLFS = true` when fetching git
|
||||
repos with defined output hashes
|
||||
|
||||
## [0.18.1] - 2024-08-22
|
||||
|
||||
|
@ -31,6 +31,7 @@ let
|
||||
inherit rev sha256;
|
||||
url = git;
|
||||
fetchSubmodules = true;
|
||||
fetchLFS = true;
|
||||
};
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
|
Loading…
Reference in New Issue
Block a user