Merge pull request #64584 from jpotier/add-bitlbee-mastodon

bitlbee-mastodon: init at 1.4.2
This commit is contained in:
Aaron Andersen 2019-08-08 15:43:18 -04:00 committed by GitHub
commit c64106f64c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -17280,6 +17280,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