nixpkgs/pkgs/tools/misc/3llo/default.nix
Martin Weinelt 03c44f43f9
_3llo: use ruby 3.1
The ruby 3.0 package is affected by the openssl_1_1 eol in 2023/09.
2023-05-14 01:26:03 +02:00

17 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; [ ];
};
}