about summary refs log tree commit diff
path: root/pkgs/tools/misc/haste-client/default.nix
blob: eb4b6f868294f7afa3cb4d03cc4de0a808ffef05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib
, bundlerApp
}:

bundlerApp {
  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;
    mainProgram = "haste";
  };
}