python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / analysis / yallback / default.nix
blob4e62ff5b9ed87f697045ae992ae178032d3214f1
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , makeWrapper
5 , coreutils
6 , bashInteractive
7 }:
9 stdenv.mkDerivation rec {
10   version = "0.2.0";
11   pname = "yallback";
12   src = fetchFromGitHub {
13     owner = "abathur";
14     repo = "yallback";
15     rev = "v${version}";
16     hash = "sha256-t+fdnDJMFiFqN23dSY3TnsZsIDcravtwdNKJ5MiZosE=";
17   };
19   buildInputs = [ coreutils bashInteractive ];
20   nativeBuildInputs = [ makeWrapper ];
22   installPhase = ''
23     install -Dv yallback $out/bin/yallback
24     wrapProgram $out/bin/yallback --prefix PATH : ${lib.makeBinPath [ coreutils ]}
25   '';
27   meta = with lib; {
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;
33   };