about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/bcat/default.nix
blob: e8000f17cdeb39b8a352858feca39760bcfa9819 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "bcat";
  gemdir = ./.;
  exes = [ "bcat" "btee" "a2h" ];

  passthru.updateScript = bundlerUpdateScript "bcat";

  meta = with lib; {
    description = "Pipe to browser utility";
    homepage    = http://rtomayko.github.com/bcat/;
    license     = licenses.mit;
    maintainers = with maintainers; [ jraygauthier nicknovitski ];
    platforms   = platforms.unix;
  };
}