base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / misc / haste-client / default.nix
blobeb4b6f868294f7afa3cb4d03cc4de0a808ffef05
1 { lib
2 , bundlerApp
3 }:
5 bundlerApp {
6   pname = "haste";
7   gemdir = ./.;
8   exes = [ "haste" ];
10   meta = with lib; {
11     description = "Command line interface to the AnyStyle Parser and Finder";
12     homepage    = "https://rubygems.org/gems/haste";
13     license     = licenses.mit;
14     maintainers = with maintainers; [ shamilton ];
15     platforms   = platforms.unix;
16     mainProgram = "haste";
17   };