2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, pidgin, intltool, python } :
|
2015-04-10 20:43:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "purple-plugin-pack-2.7.0";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://bitbucket.org/rekkanoryo/purple-plugin-pack/downloads/${name}.tar.bz2";
|
|
|
|
sha256 = "0g5hmy7fwgjq59j52h9yps28jsjjrfkd4r18gyx6hfd3g3kzbg1b";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pidgin intltool python ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://bitbucket.org/rekkanoryo/purple-plugin-pack";
|
2015-04-10 20:43:29 +01:00
|
|
|
description = "Plugin pack for Pidgin 2.x";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2016-02-10 13:59:36 +00:00
|
|
|
maintainers = with maintainers; [ bdimcheff ];
|
2015-04-10 20:43:29 +01:00
|
|
|
};
|
|
|
|
}
|