biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / boomerang / default.nix
blob0e67ab90c5239baa04d5690eb77629c878b65a3e
1 { mkDerivation, lib, fetchFromGitHub, fetchpatch, cmake, qtbase, capstone, bison, flex }:
3 mkDerivation rec {
4   pname = "boomerang";
5   version = "0.5.2";
6   # NOTE: When bumping version beyond 0.5.2, you likely need to remove
7   #       the cstdint.patch below. The patch does a fix that has already
8   #       been done upstream but is not yet part of a release
10   src = fetchFromGitHub {
11     owner = "BoomerangDecompiler";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "0xncdp0z8ry4lkzmvbj5d7hlzikivghpwicgywlv47spgh8ny0ix";
15   };
17   # Boomerang usually compiles with -Werror but has not been updated for newer
18   # compilers. Disable -Werror for now. Consider trying to remove this when
19   # updating this derivation.
20   NIX_CFLAGS_COMPILE = "-Wno-error";
22   nativeBuildInputs = [ cmake bison flex ];
23   buildInputs = [ qtbase capstone ];
24   patches = [
25     (fetchpatch {
26       name = "include-missing-cstdint.patch";
27       url = "https://github.com/BoomerangDecompiler/boomerang/commit/3342b0eac6b7617d9913226c06c1470820593e74.patch";
28       sha256 = "sha256-941IydcV3mqj7AWvXTM6GePW5VgawEcL0wrBCXqeWvc=";
29     })
30   ];
32   meta = with lib; {
33     homepage = "https://github.com/BoomerangDecompiler/boomerang";
34     license = licenses.bsd3;
35     description = "A general, open source, retargetable decompiler";
36     maintainers = with maintainers; [ dtzWill ];
37   };