nixpkgs/pkgs/tools/text/bcat/default.nix
2017-11-19 15:21:28 +00:00

16 lines
343 B
Nix

{ lib, bundlerApp }:
bundlerApp {
pname = "bcat";
gemdir = ./.;
exes = [ "bcat" "btee" "a2h" ];
meta = with lib; {
description = "Pipe to browser utility";
homepage = http://rtomayko.github.com/bcat/;
license = licenses.mit;
maintainers = [ maintainers.jraygauthier ];
platforms = platforms.unix;
};
}