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

46 lines
1.4 KiB
Nix
Raw Normal View History

2018-11-30 22:29:34 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gnome3, gmime3, webkitgtk
, libsass, notmuch, boost, wrapGAppsHook, glib-networking, protobuf, vim_configurable
, makeWrapper, python3, python3Packages
, vim ? vim_configurable.override {
features = "normal";
gui = "auto";
}
2018-10-06 00:52:24 +00:00
, ronn
}:
2016-12-31 23:14:09 +00:00
stdenv.mkDerivation rec {
name = "astroid-${version}";
2018-10-06 00:52:24 +00:00
version = "0.14";
2016-12-31 23:14:09 +00:00
src = fetchFromGitHub {
owner = "astroidmail";
repo = "astroid";
rev = "v${version}";
2018-10-06 00:52:24 +00:00
sha256 = "1wkv1icsx3g3gq485dnvcdhr9srrjgz4ws1i1krcw9n61bj7gxh8";
2016-12-31 23:14:09 +00:00
};
2018-10-06 00:52:24 +00:00
nativeBuildInputs = [ cmake ronn pkgconfig wrapGAppsHook ];
2018-11-30 22:29:34 +00:00
buildInputs = [ gnome3.gtkmm gmime3 webkitgtk libsass gnome3.libpeas
python3 python3Packages.pygobject3
notmuch boost gnome3.gsettings-desktop-schemas gnome3.defaultIconTheme
glib-networking protobuf ] ++ (if vim == null then [] else [ vim ]);
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
'';
2016-12-31 23:14:09 +00:00
meta = with stdenv.lib; {
homepage = https://astroidmail.github.io/;
2016-12-31 23:14:09 +00:00
description = "GTK+ frontend to the notmuch mail system";
maintainers = with maintainers; [ bdimcheff SuprDewd ];
license = licenses.gpl3Plus;
platforms = platforms.linux;
2016-12-31 23:14:09 +00:00
};
}