astroid: 0.9.1 -> 0.10.2
- Use gmime3 instead of gmime2: https://github.com/astroidmail/astroid/issues/405 - Remove adwaita-icon-theme, as it is not needed - Add SuprDewd as a maintainer
This commit is contained in:
parent
fe845e12e8
commit
9b2af1869b
@ -1,31 +1,30 @@
|
|||||||
{ stdenv, fetchFromGitHub, scons, pkgconfig, gnome3, gmime, webkitgtk24x-gtk3
|
{ stdenv, fetchFromGitHub, scons, pkgconfig, gnome3, gmime3, webkitgtk24x-gtk3
|
||||||
, libsass, notmuch, boost, wrapGAppsHook }:
|
, libsass, notmuch, boost, wrapGAppsHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "astroid-${version}";
|
name = "astroid-${version}";
|
||||||
version = "0.9.1";
|
version = "0.10.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "astroidmail";
|
owner = "astroidmail";
|
||||||
repo = "astroid";
|
repo = "astroid";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0ha2jd3fvc54amh0x8f58s9ac4r8xgyhvkwd4jvs0h4mfh6cg496";
|
sha256 = "0y1i40xbjjvnylqpdkvj0m9fl6f5k9zk1z4pqg3vhj8x1ys8am1c";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ scons pkgconfig wrapGAppsHook ];
|
nativeBuildInputs = [ scons pkgconfig wrapGAppsHook ];
|
||||||
|
|
||||||
buildInputs = [ gnome3.gtkmm gmime webkitgtk24x-gtk3 libsass gnome3.libpeas
|
buildInputs = [ gnome3.gtkmm gmime3 webkitgtk24x-gtk3 libsass gnome3.libpeas
|
||||||
notmuch boost gnome3.gsettings_desktop_schemas
|
notmuch boost gnome3.gsettings_desktop_schemas ];
|
||||||
gnome3.adwaita-icon-theme ];
|
|
||||||
|
|
||||||
buildPhase = "scons --propagate-environment --prefix=$out build";
|
buildPhase = "scons --propagate-environment --prefix=$out build";
|
||||||
installPhase = "scons --propagate-environment --prefix=$out install";
|
installPhase = "scons --propagate-environment --prefix=$out install";
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://astroidmail.github.io/;
|
homepage = https://astroidmail.github.io/;
|
||||||
description = "GTK+ frontend to the notmuch mail system";
|
description = "GTK+ frontend to the notmuch mail system";
|
||||||
maintainers = [ stdenv.lib.maintainers.bdimcheff ];
|
maintainers = with maintainers; [ bdimcheff SuprDewd ];
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user