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: ec95e55eed4a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: af4e0db35768
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 29, 2018

  1. balsa: use gtkspell3 instead of enchant

    The build fails with enchant-1.6.1 and enchant2. use gtkspell instead.
    hedning committed Nov 29, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    99512af View commit details

Commits on Dec 4, 2018

  1. Merge pull request #51254 from hedning/fix-balsa-enchant

    balsa: switch from enchant to gtkspell3
    hedning authored Dec 4, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    af4e0db View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/applications/networking/mailreaders/balsa/default.nix
5 changes: 3 additions & 2 deletions pkgs/applications/networking/mailreaders/balsa/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, intltool, glib, gtk3, gmime, gnutls,
webkitgtk, libesmtp, openssl, libnotify, enchant, gpgme,
webkitgtk, libesmtp, openssl, libnotify, gtkspell3, gpgme,
libcanberra-gtk3, libsecret, gtksourceview, gobjectIntrospection,
hicolor-icon-theme, wrapGAppsHook
}:
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
webkitgtk
openssl
libnotify
enchant
gtkspell3
gpgme
libcanberra-gtk3
gtksourceview
@@ -45,6 +45,7 @@ stdenv.mkDerivation rec {
"--with-ssl"
"--with-unique"
"--without-gnome"
"--with-spell-checker=gtkspell"
];

NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";