mirror of
https://github.com/NixOS/nix.git
synced 2025-11-20 09:19:36 +01:00
Add .tar.zst support for TarballInputScheme
This commit is contained in:
parent
b10256af51
commit
4da9ec772c
3 changed files with 5 additions and 3 deletions
|
|
@ -178,7 +178,8 @@ struct TarballInputScheme : InputScheme
|
|||
&& !hasSuffix(url.path, ".tar")
|
||||
&& !hasSuffix(url.path, ".tar.gz")
|
||||
&& !hasSuffix(url.path, ".tar.xz")
|
||||
&& !hasSuffix(url.path, ".tar.bz2"))
|
||||
&& !hasSuffix(url.path, ".tar.bz2")
|
||||
&& !hasSuffix(url.path, ".tar.zst"))
|
||||
return {};
|
||||
|
||||
Input input;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue