9 stdenv.mkDerivation rec {
12 src = fetchFromGitHub {
16 hash = "sha256-t+fdnDJMFiFqN23dSY3TnsZsIDcravtwdNKJ5MiZosE=";
19 buildInputs = [ coreutils bashInteractive ];
20 nativeBuildInputs = [ makeWrapper ];
23 install -Dv yallback $out/bin/yallback
24 wrapProgram $out/bin/yallback --prefix PATH : ${lib.makeBinPath [ coreutils ]}
28 description = "Callbacks for YARA rule matches";
29 homepage = "https://github.com/abathur/yallback";
30 license = licenses.mit;
31 maintainers = with maintainers; [ abathur ];
32 platforms = platforms.all;