nixpkgs/pkgs/development/tools/boomerang/default.nix
Will Dietz 472832f19c
boomerang: be less verbose/explicit, save for problematic upstream
Co-Authored-By: Jon <jonringer@users.noreply.github.com>
2019-10-24 01:03:20 -05:00

26 lines
678 B
Nix

{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase, capstone, bison, flex }:
mkDerivation rec {
pname = "boomerang";
version = "0.5.1";
src = fetchFromGitHub {
owner = "BoomerangDecompiler";
repo = pname;
rev = "v${version}";
sha256 = "046ba4km8c31kbnllx05nbqhjmk7bpi56d3n8md8bsr98nj21a2j";
};
nativeBuildInputs = [ cmake bison flex ];
buildInputs = [ qtbase capstone ];
enableParallelBuilding = true;
meta = with lib; {
homepage = https://github.com/BoomerangDecompiler/boomerang;
license = licenses.bsd3;
description = "A general, open source, retargetable decompiler";
maintainers = with maintainers; [ dtzWill ];
};
}