nixpkgs/pkgs/development/tools/boomerang/default.nix

26 lines
680 B
Nix
Raw Normal View History

2019-10-11 14:29:54 +02:00
{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase, capstone, bison, flex }:
2019-10-11 14:29:54 +02:00
mkDerivation rec {
pname = "boomerang";
version = "0.5.2";
src = fetchFromGitHub {
owner = "BoomerangDecompiler";
repo = pname;
rev = "v${version}";
sha256 = "0xncdp0z8ry4lkzmvbj5d7hlzikivghpwicgywlv47spgh8ny0ix";
};
nativeBuildInputs = [ cmake bison flex ];
buildInputs = [ qtbase capstone ];
enableParallelBuilding = true;
2019-10-11 14:29:54 +02:00
meta = with lib; {
homepage = "https://github.com/BoomerangDecompiler/boomerang";
license = licenses.bsd3;
description = "A general, open source, retargetable decompiler";
maintainers = with maintainers; [ dtzWill ];
};
}