9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
17 lines
370 B
Nix
17 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;
|
|
};
|
|
}
|