31 lines
826 B
Nix
31 lines
826 B
Nix
{ fetchgit, stdenv, bitlbee, autoreconfHook, pkgconfig, glib }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
pname = "bitlbee-mastodon";
|
|
version = "1.4.3";
|
|
|
|
src = fetchgit {
|
|
url = "https://alexschroeder.ch/cgit/bitlbee-mastodon";
|
|
rev = "v${version}";
|
|
sha256 = "1k9j4403w6x93f4ls3xj8nrabz8ynjby6sigqdmhb7cqv26l987p";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|