Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.4 KiB
Nix
53 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchurl,
|
|
}:
|
|
let
|
|
inherit (stdenvNoCC.hostPlatform) system;
|
|
version = "17.2.17";
|
|
source =
|
|
{
|
|
x86_64-linux = {
|
|
url = "https://github.com/frida/frida/releases/download/${version}/frida-core-devkit-${version}-linux-x86_64.tar.xz";
|
|
hash = "sha256-9elOokCY1bxzG2iL4iOODC/7qavwn77a0zOEBpAtT8Q=";
|
|
};
|
|
aarch64-linux = {
|
|
url = "https://github.com/frida/frida/releases/download/${version}/frida-core-devkit-${version}-linux-arm64.tar.xz";
|
|
hash = "sha256-jk8BKmp3VNvCYK6kgGouFOBECoDaGiWQ8EzZvBwL7cc=";
|
|
};
|
|
}
|
|
.${system} or (throw "Unsupported system: ${system}");
|
|
in
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "libfrida-core";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
inherit (source) url hash;
|
|
};
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/include $out/lib
|
|
tar -xf $src -C .
|
|
install -Dm755 libfrida-core.a -t $out/lib
|
|
install -Dm644 frida-core.h -t $out/include
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Frida core library intended for static linking into bindings";
|
|
homepage = "https://frida.re/";
|
|
changelog = "https://frida.re/news/";
|
|
license = lib.licenses.wxWindowsException31;
|
|
maintainers = with lib.maintainers; [ nilathedragon ];
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
];
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
};
|
|
})
|