My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/3llo/default.nix

17 lines
335 B

{ lib, ruby_3_0, bundlerApp, fetchpatch }:
bundlerApp {
pname = "3llo";
ruby = ruby_3_0;
gemdir = ./.;
exes = [ "3llo" ];
meta = with lib; {
description = "Trello interactive CLI on terminal";
license = licenses.mit;
homepage = "https://github.com/qcam/3llo";
maintainers = with maintainers; [ ];
};
}