1 { lib, stdenvNoCC, callPackage }:
4 common = callPackage ./common.nix { };
6 stdenvNoCC.mkDerivation rec {
7 pname = "semgrep-core";
8 inherit (common) version;
10 src = common.coreRelease;
14 install -Dm 755 -t $out/bin semgrep-core
18 meta = common.meta // {
19 description = common.meta.description + " - core binary";
20 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];