mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
Merge pull request #17032 from Ralith/purple-hangouts
purple-hangouts-hg: init at 2016-07-17
This commit is contained in:
commit
5bc522913b
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchhg, pidgin, glib, json_glib, protobuf, protobufc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "purple-hangouts-hg-${version}";
|
||||
version = "2016-07-17";
|
||||
|
||||
src = fetchhg {
|
||||
url = "https://bitbucket.org/EionRobb/purple-hangouts/";
|
||||
rev = "2c60a5e";
|
||||
sha256 = "1m8132ywg9982q3yiqgy1hzm61wkgi590425pp8yk1q03yipd6zb";
|
||||
};
|
||||
|
||||
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/pixmaps/pidgin/protocols/$size/hangouts.png
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://bitbucket.org/EionRobb/purple-hangouts;
|
||||
description = "Native Hangouts support for pidgin";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ ralith ];
|
||||
};
|
||||
}
|
@ -14136,6 +14136,8 @@ in
|
||||
|
||||
pidginwindowmerge = callPackage ../applications/networking/instant-messengers/pidgin-plugins/window-merge { };
|
||||
|
||||
purple-hangouts = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-hangouts { };
|
||||
|
||||
purple-plugin-pack = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-plugin-pack { };
|
||||
|
||||
purple-vk-plugin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-vk-plugin { };
|
||||
|
Loading…
Reference in New Issue
Block a user