2018-05-18 17:09:48 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gnome3, gmime3, webkitgtk24x-gtk3
|
|
|
|
, libsass, notmuch, boost, wrapGAppsHook, glib-networking }:
|
2016-12-31 23:14:09 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "astroid-${version}";
|
2018-05-18 17:09:48 +01:00
|
|
|
version = "0.11.1";
|
2016-12-31 23:14:09 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "astroidmail";
|
|
|
|
repo = "astroid";
|
|
|
|
rev = "v${version}";
|
2018-05-18 17:09:48 +01:00
|
|
|
sha256 = "1z48rvlzwi7bq7j55rnb0gg1a4k486yj910z2cxz1p46lxk332j1";
|
2016-12-31 23:14:09 +00:00
|
|
|
};
|
|
|
|
|
2018-05-18 17:09:48 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook ];
|
2017-02-09 13:44:04 +00:00
|
|
|
|
2017-10-14 17:46:58 +01:00
|
|
|
buildInputs = [ gnome3.gtkmm gmime3 webkitgtk24x-gtk3 libsass gnome3.libpeas
|
2018-05-18 17:09:48 +01:00
|
|
|
notmuch boost gnome3.gsettings-desktop-schemas
|
|
|
|
glib-networking ];
|
2016-12-31 23:14:09 +00:00
|
|
|
|
2017-10-14 17:46:58 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://astroidmail.github.io/;
|
2016-12-31 23:14:09 +00:00
|
|
|
description = "GTK+ frontend to the notmuch mail system";
|
2017-10-14 17:46:58 +01:00
|
|
|
maintainers = with maintainers; [ bdimcheff SuprDewd ];
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2016-12-31 23:14:09 +00:00
|
|
|
};
|
|
|
|
}
|