haskell: servant: Don't hardcode $doc.
Until now this broke on `enableSeparateDocOutput = false`, as then `$doc` was not defined so it tried to copy stuff to `/share/doc/servant`. Fixes regression introduced in commit be63b1994d75e826eb2ba2b9e319f1f25be8b725.
This commit is contained in:
parent
a9c7679ace
commit
0ef2bbfd0b
@ -765,7 +765,7 @@ self: super: {
|
|||||||
};
|
};
|
||||||
in overrideCabal super.servant (old: {
|
in overrideCabal super.servant (old: {
|
||||||
postInstall = old.postInstall or "" + ''
|
postInstall = old.postInstall or "" + ''
|
||||||
ln -s ${docs} $doc/share/doc/servant
|
ln -s ${docs} ''${!outputDoc}/share/doc/servant
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user