Files
nixpkgs/pkgs/by-name/li/libinjection/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

55 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
python3,
}:
stdenv.mkDerivation rec {
pname = "libinjection";
version = "3.10.0";
src = fetchFromGitHub {
owner = "client9";
repo = "libinjection";
tag = "v${version}";
sha256 = "0chsgam5dqr9vjfhdcp8cgk7la6nf3lq44zs6z6si98cq743550g";
};
nativeBuildInputs = [ python3 ];
strictDeps = true;
patches = [
(fetchpatch {
name = "support-python3-for-building";
url = "https://raw.githubusercontent.com/sysown/proxysql/bed58f92917eb651b80fd8ffa627a485eb320805/deps/libinjection/update-build-py3.diff";
hash = "sha256-SPdf57FIDDNpatWe5pjhAiZl5yPMDEv50k0Wj+eWTEM=";
})
];
postPatch = ''
patchShebangs src
substituteInPlace src/Makefile \
--replace /usr/local $out
'';
configurePhase = "cd src";
buildPhase = "make all";
# no binaries, so out = library, dev = headers
outputs = [
"out"
"dev"
];
meta = with lib; {
description = "SQL / SQLI tokenizer parser analyzer";
homepage = "https://github.com/client9/libinjection";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice ];
};
}