159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{
|
|
mkYarnPackage,
|
|
nodejs,
|
|
fetchFromGitLab,
|
|
fetchYarnDeps,
|
|
lib,
|
|
}:
|
|
mkYarnPackage rec {
|
|
inherit nodejs;
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "framagit.org";
|
|
owner = "bcn.convocala";
|
|
repo = "gancio-plugin-telegram-bridge";
|
|
rev = "v${version}";
|
|
hash = "sha256-Da8PxCX1Z1dKJu9AiwdRDfb1r1P2KiZe8BClYB9Rz48=";
|
|
};
|
|
|
|
offlineCache = fetchYarnDeps {
|
|
inherit yarnLock;
|
|
hash = "sha256-BcRVmVA5pnFzpg2gN/nKLzENnoEdwrE0EgulDizq8Ok=";
|
|
};
|
|
|
|
packageJSON = ./package.json;
|
|
|
|
# upstream doesn't provide a yarn.lock file
|
|
yarnLock = ./yarn.lock;
|
|
|
|
doDist = false;
|
|
|
|
postInstall = ''
|
|
rmdir $out/bin
|
|
ln -s $out/libexec/gancio-plugin-telegram/deps/gancio-plugin-telegram/index.js $out/
|
|
ln -s $out/libexec/gancio-plugin-telegram/node_modules $out/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Telegram bridge for Gancio, republishes content to Telegram channels or groups";
|
|
homepage = "https://framagit.org/bcn.convocala/gancio-plugin-telegram-bridge";
|
|
license = lib.licenses.agpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ jbgi ];
|
|
};
|
|
}
|