mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
17 lines
276 B
Nix
17 lines
276 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 = [ ];
|
|
};
|
|
}
|