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