nixpkgs/pkgs/tools/security/semgrep/semgrep-core.nix
06kellyjac f6ca99b86d semgrep{,-core}: 0.112.1 -> 1.0.0
Added update script
2022-12-02 11:45:03 +00:00

22 lines
478 B
Nix

{ 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 ];
};
}