about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/haste-client/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/haste-client/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/misc/haste-client/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/misc/haste-client/default.nix b/nixpkgs/pkgs/tools/misc/haste-client/default.nix
new file mode 100644
index 000000000000..0005e94fe05c
--- /dev/null
+++ b/nixpkgs/pkgs/tools/misc/haste-client/default.nix
@@ -0,0 +1,19 @@
+{ lib
+, bundlerApp
+, buildRubyGem
+, ruby
+}:
+
+bundlerApp rec {
+  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;
+  };
+}