nixpkgs/pkgs/tools/misc/haste-client/default.nix
figsoda f1ec434848 pkgs/tools/misc: remove dead code
with the help of deadnix & nil
2023-07-13 17:37:07 +03:00

18 lines
370 B
Nix

{ 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;
};
}