nixpkgs/pkgs/tools/text/bcat/default.nix

18 lines
440 B
Nix
Raw Normal View History

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