File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 134134 grep = "${ pkgs . gnugrep } /bin/grep" ;
135135 otool = "${ pkgs . darwin . binutils . bintools } /bin/otool" ;
136136 install_name_tool = "${ pkgs . darwin . binutils . bintools } /bin/install_name_tool" ;
137+ codesign_allocate = "${ pkgs . darwin . binutils . bintools } /bin/codesign_allocate" ;
138+ codesign = "${ pkgs . darwin . sigtool } /bin/codesign" ;
137139 in if pkgs . stdenv . isLinux
138140 then pkgs . haskell . lib . dontCheck hevmUnwrapped
139141 else pkgs . runCommand "stripNixRefs" { } ''
151153 chmod 777 $out/bin/hevm
152154 ${ install_name_tool } -change "$cxx" /usr/lib/libc++.1.dylib $out/bin/hevm
153155 ${ install_name_tool } -change "$iconv" /usr/lib/libiconv.dylib $out/bin/hevm
156+ CODESIGN_ALLOCATE=${ codesign_allocate } ${ codesign } -f -s - $out/bin/hevm
154157 chmod 555 $out/bin/hevm
155158 '' ;
156159
You can’t perform that action at this time.
0 commit comments