35 lines
791 B
Nix
35 lines
791 B
Nix
|
{ lib
|
||
|
, bundlerApp
|
||
|
, ruby
|
||
|
, bundlerUpdateScript
|
||
|
}:
|
||
|
|
||
|
bundlerApp {
|
||
|
inherit ruby;
|
||
|
|
||
|
pname = "schleuder-cli";
|
||
|
|
||
|
gemdir = ./.;
|
||
|
|
||
|
installManpages = false;
|
||
|
|
||
|
exes = [
|
||
|
"schleuder-cli"
|
||
|
];
|
||
|
|
||
|
passthru.updateScript = bundlerUpdateScript "schleuder-cli";
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A command line tool to create and manage schleuder-lists";
|
||
|
longDescription = ''
|
||
|
Schleuder-cli enables creating, configuring, and deleting lists,
|
||
|
subscriptions, keys, etc. It uses the Schleuder API, provided by
|
||
|
schleuder-api-daemon (part of Schleuder).
|
||
|
'';
|
||
|
homepage = "https://schleuder.org";
|
||
|
changelog = "https://0xacab.org/schleuder/schleuder-cli/-/blob/main/CHANGELOG.md";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ hexa ];
|
||
|
};
|
||
|
}
|