pidgin-sipe: 1.23.3 -> 1.24.0 (#50658)
* 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
This commit is contained in:
parent
e3b13dfaf3
commit
c4146b0df0
1 changed files with 15 additions and 15 deletions
|
@ -1,24 +1,24 @@
|
||||||
{ stdenv, fetchurl, pidgin, intltool, libxml2, nss, nspr }:
|
{ stdenv, fetchurl, pidgin, intltool, libxml2, gmime, nss }:
|
||||||
|
|
||||||
let version = "1.23.3"; in
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "pidgin-sipe";
|
||||||
stdenv.mkDerivation {
|
version = "1.24.0";
|
||||||
name = "pidgin-sipe-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/sipe/pidgin-sipe-${version}.tar.gz";
|
url = "mirror://sourceforge/sipe/${pname}-${version}.tar.gz";
|
||||||
sha256 = "0aaiblnagncb0lhdwb8qbps6hxxmyfjg7sdi15lrkl98i3fahg4n";
|
sha256 = "04cxprz6dbcsc4n2jg72mr1r9630nhrywn0zim9kwvbgps3wdd9c";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
nativeBuildInputs = [ intltool ];
|
||||||
description = "SIPE plugin for Pidgin IM";
|
buildInputs = [ pidgin gmime libxml2 nss ];
|
||||||
homepage = http://sipe.sourceforge.net/;
|
enableParallelBuilding = true;
|
||||||
license = licenses.gpl2;
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
|
|
||||||
postInstall = "find $out -ls; ln -s \$out/lib/purple-2 \$out/share/pidgin-sipe";
|
postInstall = "find $out -ls; ln -s \$out/lib/purple-2 \$out/share/pidgin-sipe";
|
||||||
|
|
||||||
buildInputs = [ pidgin intltool libxml2 nss nspr ];
|
meta = with stdenv.lib; {
|
||||||
|
description = "SIPE plugin for Pidgin IM";
|
||||||
|
homepage = "http://sipe.sourceforge.net/";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue