lol

Merge pull request #106814 from freezeboy/unbreak-archi

archi: unbreak build

authored by

Sandro and committed by
GitHub
9a3761b6 0e21aef5

+9 -4
+9 -4
pkgs/tools/misc/archi/default.nix
··· 2 , fetchurl 3 , fetchzip 4 , autoPatchelfHook 5 , libsecret 6 }: 7 ··· 29 30 nativeBuildInputs = [ 31 autoPatchelfHook 32 ]; 33 34 installPhase = 35 if stdenv.hostPlatform.system == "x86_64-linux" then 36 '' 37 - mkdir -p $out/bin 38 - for f in configuration features p2 plugins Archi.ini Archi; do 39 - cp $f $out/bin/ 40 done 41 42 - install -D -m755 Archi $out/bin/Archi 43 '' 44 else 45 ''
··· 2 , fetchurl 3 , fetchzip 4 , autoPatchelfHook 5 + , makeWrapper 6 + , jdk 7 , libsecret 8 }: 9 ··· 31 32 nativeBuildInputs = [ 33 autoPatchelfHook 34 + makeWrapper 35 ]; 36 37 installPhase = 38 if stdenv.hostPlatform.system == "x86_64-linux" then 39 '' 40 + mkdir -p $out/bin $out/libexec 41 + for f in configuration features p2 plugins Archi.ini; do 42 + cp -r $f $out/libexec 43 done 44 45 + install -D -m755 Archi $out/libexec/Archi 46 + makeWrapper $out/libexec/Archi $out/bin/Archi \ 47 + --prefix PATH : ${jdk}/bin 48 '' 49 else 50 ''