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: ea92816c7450
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3a0b75fc0091
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 29, 2018

  1. Copy the full SHA
    98abe87 View commit details
  2. Merge pull request #51704 from dtzWill/update/purple-hangouts-2018

    purple-hangouts: 2018-03-28 -> 2018-12-02
    dtzWill authored Dec 29, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3a0b75f View commit details
Showing with 5 additions and 9 deletions.
  1. +5 −9 pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-hangouts/default.nix
Original file line number Diff line number Diff line change
@@ -2,22 +2,18 @@

stdenv.mkDerivation rec {
name = "purple-hangouts-hg-${version}";
version = "2018-03-28";
version = "2018-12-02";

src = fetchhg {
url = "https://bitbucket.org/EionRobb/purple-hangouts/";
rev = "0e137e6bf9e95c5a0bd282f3ad4a5bd00a6968ab";
sha256 = "04vjgz6qyd9ilv1c6n08r45vc683vxs1rgfwhh65pag6q4rbzlb9";
rev = "cccf2f6";
sha256 = "1zd1rlzqvw1zkb0ydyz039n3xa1kv1f20a4l6rkm9a8sp6rpf3pi";
};

buildInputs = [ pidgin glib json-glib protobuf protobufc ];

installPhase = ''
install -Dm755 -t $out/lib/pidgin/ libhangouts.so
for size in 16 22 24 48; do
install -TDm644 hangouts$size.png $out/share/pixmaps/pidgin/protocols/$size/hangouts.png
done
'';
PKG_CONFIG_PURPLE_PLUGINDIR = "${placeholder "out"}/lib/purple-2";
PKG_CONFIG_PURPLE_DATADIR = "${placeholder "out"}/share";

meta = with stdenv.lib; {
homepage = https://bitbucket.org/EionRobb/purple-hangouts;