depot/third_party/nixpkgs/pkgs/tools/misc/haste-client/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

19 lines
396 B
Nix

{ lib
, bundlerApp
, buildRubyGem
, ruby
}:
bundlerApp rec {
pname = "haste";
gemdir = ./.;
exes = [ "haste" ];
meta = with lib; {
description = "Command line interface to the AnyStyle Parser and Finder";
homepage = "https://rubygems.org/gems/haste";
license = licenses.mit;
maintainers = with maintainers; [ shamilton ];
platforms = platforms.unix;
};
}