20 lines
396 B
Nix
20 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;
|
||
|
};
|
||
|
}
|