depot/third_party/nixpkgs/pkgs/tools/misc/t/default.nix

19 lines
454 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "t";
gemdir = ./.;
exes = [ "t" ];
passthru.updateScript = bundlerUpdateScript "t";
meta = with lib; {
description = "A command-line power tool for Twitter";
homepage = "http://sferik.github.io/t/";
license = licenses.asl20;
maintainers = with maintainers; [ offline manveru nicknovitski ];
platforms = platforms.unix;
mainProgram = "t";
};
}