haste-client: Init at 0.2.3

This commit is contained in:
SCOTT-HAMILTON
2020-08-28 13:53:40 +02:00
parent a19b2b4c03
commit 1a2a8d50f9
5 changed files with 776 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{ lib
, bundlerEnv
, buildRubyGem
, ruby
}:
let
version = "0.2.3";
deps = bundlerEnv rec {
name = "haste-client-${version}";
inherit ruby;
gemdir = ./.;
};
in
buildRubyGem rec {
name = "haste-client-${version}";
inherit version;
gemName = "haste";
source.sha256 = "0jaq0kvlxwvd0jq9pl707saqnaaal3dis13mqwfjbj121gr4hq4q";
propagatedBuildInputs = [ deps ];
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;
};
}