Commit c030fec9 authored by Benjamin Lemouzy's avatar Benjamin Lemouzy
Browse files

bcompare: 4.4.7.28397 -> 5.2.0.31950

Based on bcompare4.
See #424769.
parent 5504ca76
Loading
Loading
Loading
Loading
+119 −0
Original line number Diff line number Diff line
{
  lib,
  autoPatchelfHook,
  bzip2,
  fetchurl,
  glibc,
  kdePackages,
  stdenv,
  runtimeShell,
  unzip,
}:

let
  pname = "bcompare";
  version = "5.2.0.31950";

  throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";

  srcs = {
    x86_64-linux = fetchurl {
      url = "https://www.scootersoftware.com/files/bcompare-${version}_amd64.deb";
      sha256 = "sha256-CCSRNGWIYVKAoQVVJ8McDUtc45nK0S4CdamcT5uVlQM=";
    };

    x86_64-darwin = fetchurl {
      url = "https://www.scootersoftware.com/files/BCompareOSX-${version}.zip";
      sha256 = "sha256-R+G2Zlr074i2W4GaEDweK0c0q8tnzjs6M0N106WVAlg=";
    };

    aarch64-darwin = srcs.x86_64-darwin;
  };

  src = srcs.${stdenv.hostPlatform.system} or throwSystem;

  linux = stdenv.mkDerivation {
    inherit
      pname
      version
      src
      meta
      ;
    unpackPhase = ''
      ar x $src
      tar xfz data.tar.gz
    '';

    installPhase = ''
      mkdir -p $out/{bin,lib,share}

      cp -R usr/{bin,lib,share} $out/

      # Remove library that refuses to be autoPatchelf'ed
      #  - bcompare_ext_kde.amd64.so is linked with Qt4
      #  - bcompare_ext_kde5.amd64.so is linked with Qt5
      rm $out/lib/beyondcompare/ext/bcompare_ext_kde.amd64.so
      rm $out/lib/beyondcompare/ext/bcompare_ext_kde5.amd64.so

      substituteInPlace $out/bin/bcompare \
        --replace "/usr/lib/beyondcompare" "$out/lib/beyondcompare" \
        --replace "ldd" "${glibc.bin}/bin/ldd" \
        --replace "/bin/bash" "${runtimeShell}"
    '';

    nativeBuildInputs = [ autoPatchelfHook ];

    buildInputs = [
      (lib.getLib stdenv.cc.cc)
      kdePackages.kio
      kdePackages.kservice
      kdePackages.ki18n
      kdePackages.kcoreaddons
      bzip2
    ];

    dontBuild = true;
    dontConfigure = true;
    dontWrapQtApps = true;

    __structuredAttrs = true;
    strictDeps = true;
  };

  darwin = stdenv.mkDerivation {
    inherit
      pname
      version
      src
      meta
      ;
    nativeBuildInputs = [ unzip ];

    installPhase = ''
      mkdir -p $out/Applications/BCompare.app
      cp -R . $out/Applications/BCompare.app
    '';

    __structuredAttrs = true;
    strictDeps = true;
  };

  meta = {
    description = "GUI application that allows to quickly and easily compare files and folders";
    longDescription = ''
      Beyond Compare is focused. Beyond Compare allows you to quickly and easily compare your files and folders.
      By using simple, powerful commands you can focus on the differences you're interested in and ignore those you're not.
      You can then merge the changes, synchronize your files, and generate reports for your records.
    '';
    homepage = "https://www.scootersoftware.com";
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
    license = lib.licenses.unfree;
    maintainers = with lib.maintainers; [
      ktor
      arkivm
    ];
    platforms = builtins.attrNames srcs;
    mainProgram = "bcompare";
  };
in
if stdenv.hostPlatform.isDarwin then darwin else linux