nixpkgs/pkgs/tools/misc/3llo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
294 B
Nix
Raw Normal View History

{ lib, bundlerApp }:
bundlerApp {
pname = "3llo";
2022-04-28 14:01:18 +02:00
gemdir = ./.;
exes = [ "3llo" ];
meta = with lib; {
description = "Trello interactive CLI on terminal";
license = licenses.mit;
homepage = "https://github.com/qcam/3llo";
maintainers = with maintainers; [ ];
};
}