mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
pidgin-opensteamworks: init at v1.5.1
Adds pidgin-opensteamworks, a Pidgin plugin to add support for the Steam Friends/Steam IM service
This commit is contained in:
parent
a2064d9abb
commit
417dd5528e
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, pidgin, unzip, glib, json_glib, nss, nspr, libgnome_keyring } :
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "pidgin-opensteamworks-1.5.1";
|
||||||
|
|
||||||
|
# Temporarily sourcing this from a mirror in my github account, until such time as the project is officially migrated away from the deprecated google code service
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Shados";
|
||||||
|
repo = "pidgin-opensteamworks";
|
||||||
|
rev = "4f0ea110a5bdba9d2b18ec8785b2edb276f0cccd";
|
||||||
|
sha256 = "0gcrc1yaf29yjfhpflpn451i7isw8zc7maw77g604815myc5k025";
|
||||||
|
};
|
||||||
|
|
||||||
|
preConfigure = "cd steam-mobile";
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/lib/pidgin/
|
||||||
|
mkdir -p $out/share/pixmaps/pidgin/protocols/
|
||||||
|
cp libsteam.so $out/lib/pidgin/
|
||||||
|
unzip releases/icons.zip -d $out/share/pixmaps/pidgin/protocols/
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ pidgin unzip glib json_glib nss nspr libgnome_keyring ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://code.google.com/p/pidgin-opensteamworks;
|
||||||
|
description = "Plugin for Pidgin 2.x which implements Steam Friends/Steam IM compatibility";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainters = with maintainers; [ arobyn ];
|
||||||
|
};
|
||||||
|
}
|
@ -12396,6 +12396,8 @@ let
|
|||||||
|
|
||||||
toxprpl = callPackage ../applications/networking/instant-messengers/pidgin-plugins/tox-prpl { };
|
toxprpl = callPackage ../applications/networking/instant-messengers/pidgin-plugins/tox-prpl { };
|
||||||
|
|
||||||
|
pidgin-opensteamworks = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-opensteamworks { };
|
||||||
|
|
||||||
pithos = callPackage ../applications/audio/pithos {
|
pithos = callPackage ../applications/audio/pithos {
|
||||||
pythonPackages = python34Packages;
|
pythonPackages = python34Packages;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user