bitlbee-mastodon: init at 1.4.2

This commit is contained in:
EEva (JPotier) 2019-07-10 19:04:23 +03:00
parent dc336293a1
commit d30080584b
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ fetchgit, stdenv, bitlbee, autoreconfHook, pkgconfig, glib }:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "bitlbee-mastodon";
version = "1.4.2";
src = fetchgit {
url = "https://alexschroeder.ch/cgit/bitlbee-mastodon";
rev = "v${version}";
sha256 = "04rakgr1pfsg1vhfwlfbggbzw249j7dmk88xrsnf3n84c5ccdyas";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ bitlbee glib ];
preConfigure = ''
export BITLBEE_PLUGINDIR=$out/lib/bitlbee
export BITLBEE_DATADIR=$out/share/bitlbee
./autogen.sh
'';
meta = {
description = "Bitlbee plugin for Mastodon";
homepage = "https://alexschroeder.ch/cgit/bitlbee-mastodon/about";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ jpotier ];
platforms = stdenv.lib.platforms.linux;
};
}

View File

@ -17072,6 +17072,8 @@ in
bitlbee-steam = callPackage ../applications/networking/instant-messengers/bitlbee-steam { };
bitlbee-mastodon = callPackage ../applications/networking/instant-messengers/bitlbee-mastodon { };
bitmeter = callPackage ../applications/audio/bitmeter { };
bitscope = recurseIntoAttrs