diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-02-28 12:13:43 -0500 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-02-28 12:14:11 -0500 |
commit | d381248ec0847cacd918480e83a99287f814456a (patch) | |
tree | c5e5cc242a8ba61bab6a2e3339a993fd913126fc /perl | |
parent | 85bb865d200f04b73f183af722757c78d5a3be76 (diff) |
No inheritance for `TextInfo` and `FixedOutputInfo`
Diffstat (limited to 'perl')
-rw-r--r-- | perl/lib/Nix/Store.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/lib/Nix/Store.xs b/perl/lib/Nix/Store.xs index fca7607d3..bfe00d3e2 100644 --- a/perl/lib/Nix/Store.xs +++ b/perl/lib/Nix/Store.xs @@ -296,7 +296,7 @@ SV * makeFixedOutputPath(int recursive, char * algo, char * hash, char * name) auto h = Hash::parseAny(hash, parseHashType(algo)); auto method = recursive ? FileIngestionMethod::Recursive : FileIngestionMethod::Flat; auto path = store()->makeFixedOutputPath(name, FixedOutputInfo { - { + .hash = { .method = method, .hash = h, }, |