nixpkgs/pkgs/tools/misc/haste-client/default.nix

20 lines
396 B
Nix
Raw Normal View History

2020-08-28 11:53:40 +00:00
{ lib
, bundlerApp
2020-08-28 11:53:40 +00:00
, buildRubyGem
, ruby
}:
bundlerApp rec {
pname = "haste";
gemdir = ./.;
exes = [ "haste" ];
2020-08-28 11:53:40 +00:00
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;
};
}