My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/t/default.nix

17 lines
431 B

{ 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;
};
}