X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=clever-tools%2Fdefault.nix;h=7ceaec0124b8d667b8887abbabe168119c9aade7;hb=2fd541262e62027427964fdc371991b6dd98b1a0;hp=6c729a51bdacfbae45695c3ff4dc5e890eb04da3;hpb=e13be120a535969d8975be993fb9e35c780094e2;p=github%2Ffretlink%2Fclever-tools-nix.git diff --git a/clever-tools/default.nix b/clever-tools/default.nix index 6c729a5..7ceaec0 100644 --- a/clever-tools/default.nix +++ b/clever-tools/default.nix @@ -1,36 +1,62 @@ -{ stdenv, fetchurl, glibc, nodegit }: +{ stdenv, fetchurl, glibc }: stdenv.mkDerivation rec { name = "clever-tools-${version}"; - version = "0.9.3"; + version = "2.6.0"; src = fetchurl { - url = "https://clever-tools.cellar.services.clever-cloud.com/releases/${version}/clever-tools-${version}_linux.tar.gz"; - sha256 = "adcae5af912dcbdc74d996b6e94767f24d16bf1bdcd5073797f999fe75b018a4"; + url = "https://clever-tools.clever-cloud.com/releases/${version}/clever-tools-${version}_linux.tar.gz"; + sha256 = "0ibnwayl73q54gh2l8b14wc8cr5rvxn2nxpczcz6swwrwwyny0h1"; }; - buildInputs = [ nodegit ]; - libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.cc glibc ]; - nodegitLibrary = stdenv.lib.makeLibraryPath [ nodegit ]; + unpackPhase = '' + tar --extract --file=$src + ''; installPhase = '' - tar --extract --file=$src linux/clever --transform 's/linux\///' bin=$out/bin/clever mkdir -p $out/bin - mv clever $bin - ln -s "$nodegitLibrary/nodegit.node" "$out/bin/nodegit.node" + mv clever-tools-${version}_linux/clever $bin ''; dontStrip = "true"; + # See https://github.com/brendan-hall/nixpkgs/blob/e3b313bb59f49f10970205aafd44878d35da07e7/pkgs/development/web/now-cli/default.nix#L25 + # There is no helper in nixpkgs lib right now + # The algorithm for zeit/pkg fix is given https://github.com/NixOS/nixpkgs/pull/48193 + # it has been used for Unity3D as well https://github.com/NixOS/nixpkgs/pull/48643 preFixup = '' bin=$out/bin/clever - patchelf \ - --set-rpath "$libPath" \ - --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - "$bin" + orig_size=$(stat --printf=%s $bin) + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $bin + patchelf --set-rpath ${libPath} $bin + new_size=$(stat --printf=%s $bin) + ###### zeit-pkg fixing starts here. + # we're replacing plaintext js code that looks like + # PAYLOAD_POSITION = '1234 ' | 0 + # [...] + # PRELUDE_POSITION = '1234 ' | 0 + # ^-----20-chars-----^^------22-chars------^ + # ^-- grep points here + # + # var_* are as described above + # shift_by seems to be safe so long as all patchelf adjustments occur + # before any locations pointed to by hardcoded offsets + var_skip=20 + var_select=22 + shift_by=$(expr $new_size - $orig_size) + function fix_offset { + # $1 = name of variable to adjust + location=$(grep -obUam1 "$1" $bin | cut -d: -f1) + location=$(expr $location + $var_skip) + value=$(dd if=$bin iflag=count_bytes,skip_bytes skip=$location \ + bs=1 count=$var_select status=none) + value=$(expr $shift_by + $value) + echo -n $value | dd of=$bin bs=1 seek=$location conv=notrunc + } + fix_offset PAYLOAD_POSITION + fix_offset PRELUDE_POSITION ''; - }