2019-10-11 13:29:54 +01:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase, capstone, bison, flex }:
|
2012-08-09 17:58:51 +01:00
|
|
|
|
2019-10-11 13:29:54 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "boomerang";
|
2020-01-13 01:22:58 +00:00
|
|
|
version = "0.5.2";
|
2012-08-09 17:58:51 +01:00
|
|
|
|
2018-01-18 17:49:29 +00:00
|
|
|
src = fetchFromGitHub {
|
2019-07-15 18:00:17 +01:00
|
|
|
owner = "BoomerangDecompiler";
|
|
|
|
repo = pname;
|
2019-10-24 07:03:20 +01:00
|
|
|
rev = "v${version}";
|
2020-01-13 01:22:58 +00:00
|
|
|
sha256 = "0xncdp0z8ry4lkzmvbj5d7hlzikivghpwicgywlv47spgh8ny0ix";
|
2013-08-26 21:34:25 +01:00
|
|
|
};
|
2012-08-09 17:58:51 +01:00
|
|
|
|
2019-07-15 18:00:17 +01:00
|
|
|
nativeBuildInputs = [ cmake bison flex ];
|
|
|
|
buildInputs = [ qtbase capstone ];
|
2018-01-18 17:49:29 +00:00
|
|
|
|
2013-08-26 21:34:25 +01:00
|
|
|
enableParallelBuilding = true;
|
2012-08-09 17:58:51 +01:00
|
|
|
|
2019-10-11 13:29:54 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/BoomerangDecompiler/boomerang";
|
2018-01-18 17:49:29 +00:00
|
|
|
license = licenses.bsd3;
|
2012-08-09 17:58:51 +01:00
|
|
|
description = "A general, open source, retargetable decompiler";
|
2018-01-18 17:49:29 +00:00
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
2012-08-09 17:58:51 +01:00
|
|
|
};
|
|
|
|
}
|