2019-07-22 15:02:47 +03:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2017-11-19 18:21:28 +03:00
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "bcat";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "bcat" "btee" "a2h" ];
|
|
|
|
|
2019-07-22 15:02:47 +03:00
|
|
|
passthru.updateScript = bundlerUpdateScript "bcat";
|
|
|
|
|
2017-11-19 18:21:28 +03:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Pipe to browser utility";
|
|
|
|
homepage = http://rtomayko.github.com/bcat/;
|
|
|
|
license = licenses.mit;
|
2019-07-22 15:02:47 +03:00
|
|
|
maintainers = with maintainers; [ jraygauthier nicknovitski ];
|
2017-11-19 18:21:28 +03:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|