Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 218b60b85d80
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2921c447d4fd
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 18, 2018

  1. astroid: 0.10.2 -> 0.11.1 (#40720)

    tkerber authored and xeji committed May 18, 2018
    Copy the full SHA
    2921c44 View commit details
Showing with 7 additions and 9 deletions.
  1. +7 −9 pkgs/applications/networking/mailreaders/astroid/default.nix
16 changes: 7 additions & 9 deletions pkgs/applications/networking/mailreaders/astroid/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
{ stdenv, fetchFromGitHub, scons, pkgconfig, gnome3, gmime3, webkitgtk24x-gtk3
, libsass, notmuch, boost, wrapGAppsHook }:
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gnome3, gmime3, webkitgtk24x-gtk3
, libsass, notmuch, boost, wrapGAppsHook, glib-networking }:

stdenv.mkDerivation rec {
name = "astroid-${version}";
version = "0.10.2";
version = "0.11.1";

src = fetchFromGitHub {
owner = "astroidmail";
repo = "astroid";
rev = "v${version}";
sha256 = "0y1i40xbjjvnylqpdkvj0m9fl6f5k9zk1z4pqg3vhj8x1ys8am1c";
sha256 = "1z48rvlzwi7bq7j55rnb0gg1a4k486yj910z2cxz1p46lxk332j1";
};

nativeBuildInputs = [ scons pkgconfig wrapGAppsHook ];
nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook ];

buildInputs = [ gnome3.gtkmm gmime3 webkitgtk24x-gtk3 libsass gnome3.libpeas
notmuch boost gnome3.gsettings-desktop-schemas ];

buildPhase = "scons --propagate-environment --prefix=$out build";
installPhase = "scons --propagate-environment --prefix=$out install";
notmuch boost gnome3.gsettings-desktop-schemas
glib-networking ];

meta = with stdenv.lib; {
homepage = https://astroidmail.github.io/;