summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2018-04-07 08:27:52 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2018-04-07 08:27:52 -0300
commit20212c7296c2944c6cc155f6d98eab68ea35e5a6 (patch)
tree5d558b14db802a899cc6c17c1f0922cfe836742d /pkgs/applications/networking
parentb25153a2983bc8b7fbfdc3b505f98a3c9b9d5072 (diff)
downloadnixpkgs-20212c7296c2944c6cc155f6d98eab68ea35e5a6.tar
nixpkgs-20212c7296c2944c6cc155f6d98eab68ea35e5a6.tar.gz
nixpkgs-20212c7296c2944c6cc155f6d98eab68ea35e5a6.tar.bz2
nixpkgs-20212c7296c2944c6cc155f6d98eab68ea35e5a6.tar.lz
nixpkgs-20212c7296c2944c6cc155f6d98eab68ea35e5a6.tar.xz
nixpkgs-20212c7296c2944c6cc155f6d98eab68ea35e5a6.tar.zst
nixpkgs-20212c7296c2944c6cc155f6d98eab68ea35e5a6.zip
balsa: init at 2.5.5
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mailreaders/balsa/default.nix61
1 files changed, 61 insertions, 0 deletions
diff --git a/pkgs/applications/networking/mailreaders/balsa/default.nix b/pkgs/applications/networking/mailreaders/balsa/default.nix
new file mode 100644
index 00000000000..762c6222b58
--- /dev/null
+++ b/pkgs/applications/networking/mailreaders/balsa/default.nix
@@ -0,0 +1,61 @@
+{ stdenv, fetchurl, pkgconfig, intltool, glib, gtk3, gmime, gnutls,
+  webkitgtk, libesmtp, openssl, libnotify, enchant, gpgme,
+  libcanberra-gtk3, libsecret, gtksourceview, gobjectIntrospection,
+  hicolor-icon-theme, wrapGAppsHook
+}:
+
+stdenv.mkDerivation rec {
+  name = "balsa-${version}";
+  version = "2.5.5";
+
+  src = fetchurl {
+    url = "https://pawsa.fedorapeople.org/balsa/${name}.tar.bz2";
+    sha256 = "0p4w81wvdxqhynkninzglsgqk6920x1zif2zmw8bml410lav2azz";
+  };
+
+  nativeBuildInputs = [
+    pkgconfig
+    intltool
+    gobjectIntrospection
+    hicolor-icon-theme
+    wrapGAppsHook
+  ];
+
+  buildInputs = [
+    glib
+    gtk3
+    gmime
+    gnutls
+    webkitgtk
+    openssl
+    libnotify
+    enchant
+    gpgme
+    libcanberra-gtk3
+    gtksourceview
+    libsecret
+    libesmtp
+  ];
+
+  configureFlags = [
+    "--with-canberra"
+    "--with-gpgme"
+    "--with-gtksourceview"
+    "--with-libsecret"
+    "--with-ssl"
+    "--with-unique"
+    "--without-gnome"
+  ];
+
+  NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
+
+  enableParallelBuilding = true;
+
+  meta = with stdenv.lib; {
+    homepage = http://pawsa.fedorapeople.org/balsa/;
+    description = "An e-mail client for GNOME";
+    license = licenses.gpl2Plus;
+    platforms = platforms.unix;
+    maintainers = [ maintainers.romildo ];
+  };
+}