2018-11-30 23:29:34 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gnome3, gmime3, webkitgtk
|
2018-08-08 09:04:35 +02:00
|
|
|
, libsass, notmuch, boost, wrapGAppsHook, glib-networking, protobuf, vim_configurable
|
2019-02-13 22:47:50 +01:00
|
|
|
, gtkmm3, libpeas, gsettings-desktop-schemas
|
2019-06-16 21:59:06 +02:00
|
|
|
, python3, python3Packages
|
2018-08-08 09:04:35 +02:00
|
|
|
, vim ? vim_configurable.override {
|
|
|
|
features = "normal";
|
|
|
|
gui = "auto";
|
|
|
|
}
|
2018-10-06 02:52:24 +02:00
|
|
|
, ronn
|
2018-08-08 09:04:35 +02:00
|
|
|
}:
|
2017-01-01 00:14:09 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-21 10:02:21 +02:00
|
|
|
pname = "astroid";
|
|
|
|
version = "0.15";
|
2017-01-01 00:14:09 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "astroidmail";
|
|
|
|
repo = "astroid";
|
|
|
|
rev = "v${version}";
|
2019-07-21 10:02:21 +02:00
|
|
|
sha256 = "11cxbva9ni98gii59xmbxh4c6idcg3mg0pgdsp1c3j0yg7ix0lj3";
|
2017-01-01 00:14:09 +01:00
|
|
|
};
|
|
|
|
|
2018-10-06 02:52:24 +02:00
|
|
|
nativeBuildInputs = [ cmake ronn pkgconfig wrapGAppsHook ];
|
2017-02-09 14:44:04 +01:00
|
|
|
|
2019-02-13 22:47:50 +01:00
|
|
|
buildInputs = [
|
|
|
|
gtkmm3 gmime3 webkitgtk libsass libpeas
|
|
|
|
python3 python3Packages.pygobject3
|
|
|
|
notmuch boost gsettings-desktop-schemas gnome3.adwaita-icon-theme
|
|
|
|
glib-networking protobuf
|
|
|
|
] ++ (if vim == null then [] else [ vim ]);
|
2018-08-08 09:04:35 +02:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i "s~gvim ~${vim}/bin/vim -g ~g" src/config.cc
|
|
|
|
sed -i "s~ -geom 10x10~~g" src/config.cc
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/astroid" --set CHARSET=en_us.UTF-8
|
|
|
|
'';
|
2017-01-01 00:14:09 +01:00
|
|
|
|
2017-10-14 18:46:58 +02:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://astroidmail.github.io/";
|
2019-09-04 00:49:40 +02:00
|
|
|
description = "GTK frontend to the notmuch mail system";
|
2017-10-14 18:46:58 +02:00
|
|
|
maintainers = with maintainers; [ bdimcheff SuprDewd ];
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2017-01-01 00:14:09 +01:00
|
|
|
};
|
|
|
|
}
|