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

78 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-05-13 21:13:16 +00:00
, fetchurl
, glib
, gmime3
2020-05-13 21:13:16 +00:00
, gnutls
2020-05-13 21:17:05 +00:00
, gobject-introspection
2020-05-13 21:13:16 +00:00
, gpgme
2020-05-13 21:17:05 +00:00
, gtk3
, gtksourceview
, gtkspell3
, intltool
2020-05-13 21:13:16 +00:00
, libcanberra-gtk3
2020-05-13 21:17:05 +00:00
, libesmtp
, libical
2020-05-13 21:17:05 +00:00
, libnotify
2020-05-13 21:13:16 +00:00
, libsecret
2020-05-13 21:17:05 +00:00
, openssl
, pkg-config
2020-05-13 21:17:05 +00:00
, webkitgtk
2020-05-13 21:13:16 +00:00
, wrapGAppsHook
2018-04-07 11:27:52 +00:00
}:
stdenv.mkDerivation rec {
pname = "balsa";
version = "2.6.1";
2018-04-07 11:27:52 +00:00
src = fetchurl {
url = "https://pawsa.fedorapeople.org/balsa/${pname}-${version}.tar.bz2";
sha256 = "1xkxx801p7sbfkn0bh3cz85wra4xf1z1zhjqqc80z1z1nln7fhb4";
2018-04-07 11:27:52 +00:00
};
nativeBuildInputs = [
pkg-config
2018-04-07 11:27:52 +00:00
intltool
gobject-introspection
2018-04-07 11:27:52 +00:00
wrapGAppsHook
];
buildInputs = [
glib
gmime3
2018-04-07 11:27:52 +00:00
gnutls
gpgme
2020-05-13 21:17:05 +00:00
gtk3
2018-04-07 11:27:52 +00:00
gtksourceview
2020-05-13 21:17:05 +00:00
gtkspell3
libcanberra-gtk3
2018-04-07 11:27:52 +00:00
libesmtp
libical
2020-05-13 21:17:05 +00:00
libnotify
libsecret
openssl
webkitgtk
2018-04-07 11:27:52 +00:00
];
configureFlags = [
"--with-canberra"
"--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 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 ];
};
}