nixpkgs/pkgs/tools/misc/t/default.nix
2019-05-04 15:06:42 +02:00

16 lines
343 B
Nix

{ lib, bundlerApp }:
bundlerApp {
pname = "t";
gemdir = ./.;
exes = [ "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 ];
platforms = platforms.unix;
};
}