mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
Merge branch 'graphviz-vimdot-fix' of git://github.com/bjornfor/nixpkgs
Branch contains a trivial fix. Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
commit
86aa2853f6
@ -32,8 +32,10 @@ stdenv.mkDerivation rec {
|
|||||||
sed -e 's@am__append_5 *=.*@am_append_5 =@' -i lib/gvc/Makefile
|
sed -e 's@am__append_5 *=.*@am_append_5 =@' -i lib/gvc/Makefile
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# "command -v" is POSIX, "which" is not
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
sed -i 's|`which lefty`|"'$out'/bin/lefty"|' $out/bin/dotty
|
sed -i 's|`which lefty`|"'$out'/bin/lefty"|' $out/bin/dotty
|
||||||
|
sed -i 's|which|command -v|' $out/bin/vimdot
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
Loading…
Reference in New Issue
Block a user