bitlbee-mastodon: init at 1.4.2
This commit is contained in:
parent
dc336293a1
commit
d30080584b
@ -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;
|
||||
};
|
||||
}
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user