03c44f43f9
The ruby 3.0 package is affected by the openssl_1_1 eol in 2023/09.
16 lines
294 B
Nix
16 lines
294 B
Nix
{ lib, bundlerApp }:
|
|
|
|
bundlerApp {
|
|
pname = "3llo";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "3llo" ];
|
|
|
|
meta = with lib; {
|
|
description = "Trello interactive CLI on terminal";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/qcam/3llo";
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|