2018-02-24 18:23:58 -08:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, pidgin, json-glib }:
|
2015-10-05 04:39:42 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "pidgin-skypeweb";
|
2020-06-30 04:26:26 -07:00
|
|
|
version = "1.6";
|
2015-10-05 04:39:42 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "EionRobb";
|
|
|
|
repo = "skype4pidgin";
|
2018-12-21 13:07:48 -08:00
|
|
|
rev = version;
|
2020-06-30 04:26:26 -07:00
|
|
|
sha256 = "1q3m8hyr77mxm4y0zify2xhjp9d8y4pgwvqyfly4zcpmyd2argi1";
|
2015-10-05 04:39:42 -07:00
|
|
|
};
|
|
|
|
|
2017-11-02 05:54:20 -07:00
|
|
|
setSourceRoot = ''
|
|
|
|
sourceRoot=$(echo */skypeweb)
|
|
|
|
'';
|
2015-10-05 04:39:42 -07:00
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-24 18:23:58 -08:00
|
|
|
buildInputs = [ pidgin json-glib ];
|
2015-10-05 04:39:42 -07:00
|
|
|
|
2018-12-21 13:07:48 -08:00
|
|
|
PKG_CONFIG_PURPLE_PLUGINDIR = "${placeholder "out"}/lib/purple-2";
|
|
|
|
PKG_CONFIG_PURPLE_DATADIR = "${placeholder "out"}/share";
|
2015-10-05 04:39:42 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/EionRobb/skype4pidgin";
|
2016-08-08 12:48:49 -07:00
|
|
|
description = "SkypeWeb plugin for Pidgin";
|
2015-10-05 04:39:42 -07:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2019-03-12 15:45:33 -07:00
|
|
|
maintainers = with maintainers; [ ];
|
2015-10-05 04:39:42 -07:00
|
|
|
};
|
|
|
|
}
|