about summary refs log tree commit diff
path: root/pkgs/tools/security/semgrep/semgrep-core.nix
blob: e5ce941298a4c8995825d8a66cd44dcd40686113 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenvNoCC, callPackage }:

let
  common = callPackage ./common.nix { };
in
stdenvNoCC.mkDerivation rec {
  pname = "semgrep-core";
  inherit (common) version;
  inherit (common.core) src;

  installPhase = ''
    runHook preInstall
    install -Dm 755 -t $out/bin semgrep-core
    runHook postInstall
  '';

  meta = common.meta // {
    description = common.meta.description + " - core binary";
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
  };
}