Unverified Commit a4f0fc17 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

wxwidgets_3_3: 3.3.1 -> 3.3.2 (#496298)

parents 68dd72a4 18f77038
Loading
Loading
Loading
Loading
+11 −2
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  stdenv,
  fetchurl,
  replaceVars,
  fetchFromGitHub,
  fetchDebianPatch,
  copyDesktopItems,
  pkg-config,
@@ -19,8 +20,16 @@
}:

let
  wxwidgets_3_3' = wxwidgets_3_3.overrideAttrs (
  wxwidgets_3_3_1 = wxwidgets_3_3.overrideAttrs (
    finalAttrs: previousAttrs: {
      version = "3.3.1";
      src = fetchFromGitHub {
        owner = "wxWidgets";
        repo = "wxWidgets";
        tag = "v${finalAttrs.version}";
        fetchSubmodules = true;
        hash = "sha256-eYmZrh9lvDnJ3VAS+TllT21emtKBPAOhqIULw1dTPhk=";
      };
      patches = [
        ./wxcolorhook.patch
      ];
@@ -78,7 +87,7 @@ stdenv.mkDerivation (finalAttrs: {
    libidn2
    libssh2
    openssl
    wxwidgets_3_3'
    wxwidgets_3_3_1
  ];

  env.NIX_CFLAGS_COMPILE = toString [
+2 −2
Original line number Diff line number Diff line
@@ -32,14 +32,14 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "wxwidgets";
  version = "3.3.1";
  version = "3.3.2";

  src = fetchFromGitHub {
    owner = "wxWidgets";
    repo = "wxWidgets";
    tag = "v${finalAttrs.version}";
    fetchSubmodules = true;
    hash = "sha256-eYmZrh9lvDnJ3VAS+TllT21emtKBPAOhqIULw1dTPhk=";
    hash = "sha256-UL1NuByKFGMQ/dhjuWRdnWTgdy4+1cD9pSls3e1mur8=";
  };

  nativeBuildInputs = [ pkg-config ];