python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / semgrep / semgrep-core.nix
blob3a9c904ad7338eee85b462ffaba2f553d4f2ebf7
1 { lib, stdenvNoCC, callPackage }:
3 let
4   common = callPackage ./common.nix { };
5 in
6 stdenvNoCC.mkDerivation rec {
7   pname = "semgrep-core";
8   inherit (common) version;
10   src = common.coreRelease;
12   installPhase = ''
13     runHook preInstall
14     install -Dm 755 -t $out/bin semgrep-core
15     runHook postInstall
16   '';
18   meta = common.meta // {
19     description = common.meta.description + " - core binary";
20     sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
21   };