c4146b0df0
* pidgin-sipe: 1.23.3 -> 1.24.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pidgin-sipe/versions * pidgin-sipe: add gmime to build inputs and refactor
24 lines
687 B
Nix
24 lines
687 B
Nix
{ stdenv, fetchurl, pidgin, intltool, libxml2, gmime, nss }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pidgin-sipe";
|
|
version = "1.24.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/sipe/${pname}-${version}.tar.gz";
|
|
sha256 = "04cxprz6dbcsc4n2jg72mr1r9630nhrywn0zim9kwvbgps3wdd9c";
|
|
};
|
|
|
|
nativeBuildInputs = [ intltool ];
|
|
buildInputs = [ pidgin gmime libxml2 nss ];
|
|
enableParallelBuilding = true;
|
|
|
|
postInstall = "find $out -ls; ln -s \$out/lib/purple-2 \$out/share/pidgin-sipe";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "SIPE plugin for Pidgin IM";
|
|
homepage = "http://sipe.sourceforge.net/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|