mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
32 lines
663 B
Nix
32 lines
663 B
Nix
{ 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;
|
|
};
|
|
}
|