Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f1852527a9e7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: be6de45f49f8
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on May 13, 2021

  1. boomerang: Add cstdint include needed with GCC10

    Include cstdint as needed with GCC10. This follows an upstream patch
    for the same issue that is not yet part of a release.
    
    BoomerangDecompiler/boomerang@3342b0e
    polygon committed May 13, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    Lucus16 Lars Jellema
    Copy the full SHA
    060fb3b View commit details

Commits on May 14, 2021

  1. Copy the full SHA
    92ac079 View commit details

Commits on May 16, 2021

  1. Copy the full SHA
    be6de45 View commit details
Showing with 11 additions and 1 deletion.
  1. +11 −1 pkgs/development/tools/boomerang/default.nix
12 changes: 11 additions & 1 deletion pkgs/development/tools/boomerang/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase, capstone, bison, flex }:
{ mkDerivation, lib, fetchFromGitHub, fetchpatch, cmake, qtbase, capstone, bison, flex }:

mkDerivation rec {
pname = "boomerang";
version = "0.5.2";
# NOTE: When bumping version beyond 0.5.2, you likely need to remove
# the cstdint.patch below. The patch does a fix that has already
# been done upstream but is not yet part of a release

src = fetchFromGitHub {
owner = "BoomerangDecompiler";
@@ -13,6 +16,13 @@ mkDerivation rec {

nativeBuildInputs = [ cmake bison flex ];
buildInputs = [ qtbase capstone ];
patches = [
(fetchpatch {
name = "include-missing-cstdint.patch";
url = "https://github.com/BoomerangDecompiler/boomerang/commit/3342b0eac6b7617d9913226c06c1470820593e74.patch";
sha256 = "sha256-941IydcV3mqj7AWvXTM6GePW5VgawEcL0wrBCXqeWvc=";
})
];

meta = with lib; {
homepage = "https://github.com/BoomerangDecompiler/boomerang";