Unverified Commit c27eab6a authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

_3llo: migrate to by-name (#458139)

parents 2cda5682 4af54f44
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
{ lib, bundlerApp }:
{
  lib,
  bundlerApp,
}:

bundlerApp {
  pname = "3llo";
@@ -7,9 +10,9 @@ bundlerApp {

  exes = [ "3llo" ];

  meta = with lib; {
  meta = {
    description = "Trello interactive CLI on terminal";
    license = licenses.mit;
    license = lib.licenses.mit;
    homepage = "https://github.com/qcam/3llo";
    maintainers = [ ];
  };
+0 −2
Original line number Diff line number Diff line
@@ -966,8 +966,6 @@ with pkgs;

  ### TOOLS

  _3llo = callPackage ../tools/misc/3llo { };

  _7zz-rar = _7zz.override { enableUnfree = true; };

  acquire = with python3Packages; toPythonApplication acquire;