4fe7f789f9
Semi-automatic update. These checks were performed: - built on NixOS - found 0.8 with grep in /nix/store/di49z3ic9sk7mrg6rhf0c67qk8pda3kg-pidgin-xmpp-receipts-0.8 - found 0.8 in filename of file in /nix/store/di49z3ic9sk7mrg6rhf0c67qk8pda3kg-pidgin-xmpp-receipts-0.8 cc "@orivej"
30 lines
741 B
Nix
30 lines
741 B
Nix
{ stdenv, fetchFromGitHub, pidgin } :
|
|
|
|
let
|
|
version = "0.8";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "pidgin-xmpp-receipts-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "noonien-d";
|
|
repo = "pidgin-xmpp-receipts";
|
|
rev = "release_${version}";
|
|
sha256 = "13kwaymzkymjsdv8q95byd173i4vanj211vgx9cm0y8ag2r3cjsb";
|
|
};
|
|
|
|
buildInputs = [ pidgin ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib/pidgin/
|
|
cp xmpp-receipts.so $out/lib/pidgin/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://devel.kondorgulasch.de/pidgin-xmpp-receipts/;
|
|
description = "Message delivery receipts (XEP-0184) Pidgin plugin";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ orivej ];
|
|
};
|
|
}
|