Unverified Commit 809fe35f authored by Bobby Rong's avatar Bobby Rong Committed by GitHub
Browse files

Merge pull request #211182 from bobby285271/upd/gtkspell2-enchant2

gtkspell2: Build with enchant2
parents df93f457 802c7a0c
Loading
Loading
Loading
Loading
+35 −3
Original line number Diff line number Diff line
{lib, stdenv, fetchurl, gtk2, aspell, pkg-config, enchant, intltool}:
{ stdenv
, lib
, fetchurl
, fetchpatch
, autoreconfHook
, docbook_xsl
, gtk-doc
, intltool
, pkg-config
, aspell
, enchant
, gtk2
}:

stdenv.mkDerivation rec {
  pname = "gtkspell";
@@ -9,8 +21,28 @@ stdenv.mkDerivation rec {
    sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
  };

  nativeBuildInputs = [ pkg-config intltool ];
  buildInputs = [aspell gtk2 enchant];
  patches = [
    # Build with enchant 2
    # https://github.com/archlinux/svntogit-packages/tree/packages/gtkspell/trunk
    (fetchpatch {
      url = "https://github.com/archlinux/svntogit-packages/raw/17fb30b5196db378c18e7c115f28e97b962b95ff/trunk/enchant-2.diff";
      sha256 = "0d9409bnapwzwhnfpz3dvl6qalskqa4lzmhrmciazsypbw3ry5rf";
    })
  ];

  nativeBuildInputs = [
    autoreconfHook
    docbook_xsl
    gtk-doc
    intltool
    pkg-config
  ];

  buildInputs = [
    aspell
    enchant
    gtk2
  ];

  meta = with lib; {
    description = "Word-processor-style highlighting and replacement of misspelled words";
+1 −1
Original line number Diff line number Diff line
@@ -20015,7 +20015,7 @@ with pkgs;
  gtksourceviewmm4 = callPackage ../development/libraries/gtksourceviewmm/4.x.nix { };
  gtkspell2 = callPackage ../development/libraries/gtkspell { enchant = enchant1; };
  gtkspell2 = callPackage ../development/libraries/gtkspell { };
  gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { };