nixpkgs/pkgs/applications/networking/mailreaders/balsa/default.nix

77 lines
1.3 KiB
Nix
Raw Normal View History

2020-05-13 21:13:16 +00:00
{ stdenv
, fetchurl
, pkgconfig
, intltool
, glib
, gtk3
, gmime
, gnutls
, webkitgtk
, libesmtp
, openssl
, libnotify
, gtkspell3
, gpgme
, libcanberra-gtk3
, libsecret
, gtksourceview
, gobject-introspection
, wrapGAppsHook
2018-04-07 11:27:52 +00:00
}:
stdenv.mkDerivation rec {
pname = "balsa";
2019-11-26 19:00:59 +00:00
version = "2.5.9";
2018-04-07 11:27:52 +00:00
src = fetchurl {
url = "https://pawsa.fedorapeople.org/balsa/${pname}-${version}.tar.bz2";
2019-11-26 19:00:59 +00:00
sha256 = "19gs1qfvbk9qx4rjmgrmvid00kl9k153zjjx8zjii2lz09w7g19i";
2018-04-07 11:27:52 +00:00
};
nativeBuildInputs = [
pkgconfig
intltool
gobject-introspection
2018-04-07 11:27:52 +00:00
wrapGAppsHook
];
buildInputs = [
glib
gtk3
gmime
gnutls
webkitgtk
openssl
libnotify
gtkspell3
2018-04-07 11:27:52 +00:00
gpgme
libcanberra-gtk3
gtksourceview
libsecret
libesmtp
];
configureFlags = [
"--with-canberra"
"--with-gpgme"
"--with-gtksourceview"
"--with-libsecret"
"--with-ssl"
"--with-unique"
"--without-gnome"
"--with-spell-checker=gtkspell"
2018-04-07 11:27:52 +00:00
];
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = "http://pawsa.fedorapeople.org/balsa/";
2018-04-07 11:27:52 +00:00
description = "An e-mail client for GNOME";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}