1 { stdenv, lib, fetchurl, unzip }:
3 stdenv.mkDerivation rec {
4 pname = "github-copilot-intellij-agent";
5 version = "1.4.5.4049";
8 name = "${pname}-${version}-plugin.zip";
9 url = "https://plugins.jetbrains.com/plugin/download?updateId=454005";
10 hash = "sha256-ibu3OcmtyLHuumhJQ6QipsNEIdEhvLUS7sb3xmnaR0U=";
13 nativeBuildInputs = [ unzip ];
21 unzip -p $src github-copilot-intellij/copilot-agent/bin/copilot-agent-${
22 if stdenv.isDarwin then (if stdenv.isAarch64 then "macos-arm64" else "macos") else "linux"
23 } | install -m755 /dev/stdin $out/bin/copilot-agent
28 # https://discourse.nixos.org/t/unrelatable-error-when-working-with-patchelf/12043
29 # https://github.com/NixOS/nixpkgs/blob/db0d8e10fc1dec84f1ccb111851a82645aa6a7d3/pkgs/development/web/now-cli/default.nix
31 binaryLocation = "$out/bin/copilot-agent";
32 libPath = lib.makeLibraryPath [ stdenv.cc.cc ];
34 orig_size=$(stat --printf=%s ${binaryLocation})
36 patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" ${binaryLocation}
37 patchelf --set-rpath ${libPath} ${binaryLocation}
38 chmod +x ${binaryLocation}
40 new_size=$(stat --printf=%s ${binaryLocation})
44 shift_by=$(expr $new_size - $orig_size)
47 location=$(grep -obUam1 "$1" ${binaryLocation} | cut -d: -f1)
48 location=$(expr $location + $var_skip)
49 value=$(dd if=${binaryLocation} iflag=count_bytes,skip_bytes skip=$location \
50 bs=1 count=$var_select status=none)
51 value=$(expr $shift_by + $value)
52 echo -n $value | dd of=${binaryLocation} bs=1 seek=$location conv=notrunc
55 fix_offset PAYLOAD_POSITION
56 fix_offset PRELUDE_POSITION
62 description = "The GitHub copilot IntelliJ plugin's native component";
64 The GitHub copilot IntelliJ plugin's native component.
65 bin/copilot-agent must be symlinked into the plugin directory, replacing the existing binary.
70 ln -fs /run/current-system/sw/bin/copilot-agent ~/.local/share/JetBrains/IntelliJIdea2022.2/github-copilot-intellij/copilot-agent/bin/copilot-agent-linux
73 homepage = "https://plugins.jetbrains.com/plugin/17718-github-copilot";
74 downloadPage = homepage;
76 license = lib.licenses.unfree;
77 maintainers = with lib.maintainers; [ hacker1024 ];
78 mainProgram = "copilot-agent";
79 platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
80 sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];