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

32 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, scons, pkgconfig, gnome3, gmime, webkitgtk24x-gtk3
, libsass, notmuch, boost, wrapGAppsHook }:
2016-12-31 23:14:09 +00:00
stdenv.mkDerivation rec {
name = "astroid-${version}";
version = "0.9.1";
2016-12-31 23:14:09 +00:00
src = fetchFromGitHub {
owner = "astroidmail";
repo = "astroid";
rev = "v${version}";
sha256 = "0ha2jd3fvc54amh0x8f58s9ac4r8xgyhvkwd4jvs0h4mfh6cg496";
2016-12-31 23:14:09 +00:00
};
nativeBuildInputs = [ scons pkgconfig wrapGAppsHook ];
buildInputs = [ gnome3.gtkmm gmime webkitgtk24x-gtk3 libsass gnome3.libpeas
notmuch boost gnome3.gsettings_desktop_schemas
gnome3.adwaita-icon-theme ];
2016-12-31 23:14:09 +00:00
buildPhase = "scons --propagate-environment --prefix=$out build";
installPhase = "scons --propagate-environment --prefix=$out install";
2016-12-31 23:14:09 +00:00
meta = {
homepage = https://astroidmail.github.io/;
2016-12-31 23:14:09 +00:00
description = "GTK+ frontend to the notmuch mail system";
maintainers = [ stdenv.lib.maintainers.bdimcheff ];
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.linux;
};
}