diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-07-12 18:26:10 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-07-12 18:26:10 +0000 |
commit | 886c91dfcc462d157dc2ce5265800e98d1bc45dd (patch) | |
tree | ae082490a4cc51f18de22c5bcd2085b9721da240 /perl/lib/Nix/Store.xs | |
parent | 503b4256903b2cf414a6d697d19be40db299e2c6 (diff) |
Try to fix perl bindings
Diffstat (limited to 'perl/lib/Nix/Store.xs')
-rw-r--r-- | perl/lib/Nix/Store.xs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl/lib/Nix/Store.xs b/perl/lib/Nix/Store.xs index 6dba07549..522de5802 100644 --- a/perl/lib/Nix/Store.xs +++ b/perl/lib/Nix/Store.xs @@ -304,7 +304,10 @@ SV * derivationFromPath(char * drvPath) HV * outputs = newHV(); for (auto & i : drv.outputs) - hv_store(outputs, i.first.c_str(), i.first.size(), newSVpv(store()->printStorePath(i.second.path(store(), drv.name)).c_str(), 0), 0); + hv_store( + outputs, i.first.c_str(), i.first.size(), + newSVpv(store()->printStorePath(i.second.path(*store(), drv.name)).c_str(), 0), + 0); hv_stores(hash, "outputs", newRV((SV *) outputs)); AV * inputDrvs = newAV(); |