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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.3 KiB
Nix
Raw Normal View History

2022-09-23 14:21:58 +00:00
{ 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
2022-09-23 14:21:58 +00:00
, gtksourceview4
2020-05-13 21:17:05 +00:00
, 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
2022-09-23 14:21:58 +00:00
, sqlite
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";
2022-09-23 14:21:58 +00:00
version = "2.6.4";
2018-04-07 11:27:52 +00:00
src = fetchurl {
2022-09-23 14:21:58 +00:00
url = "https://pawsa.fedorapeople.org/balsa/${pname}-${version}.tar.xz";
sha256 = "1hcgmjka2x2igdrmvzlfs12mv892kv4vzv5iy90kvcqxa625kymy";
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
2022-09-23 14:21:58 +00:00
gtksourceview4
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
2022-09-23 14:21:58 +00:00
sqlite
2020-05-13 21:17:05 +00:00
webkitgtk
2018-04-07 11:27:52 +00:00
];
configureFlags = [
"--with-canberra"
"--with-gtksourceview"
"--with-libsecret"
2022-09-23 14:21:58 +00:00
"--with-spell-checker=gtkspell"
"--with-sqlite"
2018-04-07 11:27:52 +00:00
"--with-ssl"
"--with-unique"
"--without-gnome"
];
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 ];
};
}