mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
pidgin-osd: init at 0.1.0 (#16792)
* pidgin-osd: init at 0.1.0 A straightforward pidgin plugin; kind of ancient, but still works fine. * Use autoreconf, which minor hackery around ChangeLog.
This commit is contained in:
parent
4e84c6fc7c
commit
5682279d14
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv, fetchurl, pidgin, xosd
|
||||||
|
, autoreconfHook } :
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "pidgin-osd-0.1.0";
|
||||||
|
src = fetchurl {
|
||||||
|
url = https://github.com/mbroemme/pidgin-osd/archive/pidgin-osd-0.1.0.tar.gz;
|
||||||
|
sha256 = "11hqfifhxa9gijbnp9kq85k37hvr36spdd79cj9bkkvw4kyrdp3j";
|
||||||
|
};
|
||||||
|
|
||||||
|
makeFlags = "PIDGIN_LIBDIR=$(out)";
|
||||||
|
|
||||||
|
# autoreconf is run such that it *really* wants all the files, and there's no
|
||||||
|
# default ChangeLog. So make it happy.
|
||||||
|
preAutoreconf = "touch ChangeLog";
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/lib/pidgin
|
||||||
|
ln -s $out/pidgin $out/lib/pidgin
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
buildInputs = [ xosd pidgin ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/mbroemme/pidgin-osd;
|
||||||
|
description = "Plugin for Pidgin which implements on-screen display via libxosd";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -14141,6 +14141,8 @@ in
|
|||||||
|
|
||||||
pidginotr = callPackage ../applications/networking/instant-messengers/pidgin-plugins/otr { };
|
pidginotr = callPackage ../applications/networking/instant-messengers/pidgin-plugins/otr { };
|
||||||
|
|
||||||
|
pidginosd = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-osd { };
|
||||||
|
|
||||||
pidginsipe = callPackage ../applications/networking/instant-messengers/pidgin-plugins/sipe { };
|
pidginsipe = callPackage ../applications/networking/instant-messengers/pidgin-plugins/sipe { };
|
||||||
|
|
||||||
pidginwindowmerge = callPackage ../applications/networking/instant-messengers/pidgin-plugins/window-merge { };
|
pidginwindowmerge = callPackage ../applications/networking/instant-messengers/pidgin-plugins/window-merge { };
|
||||||
|
Loading…
Reference in New Issue
Block a user