mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
18 lines
429 B
Nix
18 lines
429 B
Nix
{ 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;
|
|
};
|
|
}
|