From 6bc7bd288f17d3afa72f5c4a5a2456ff8c2d4b23 Mon Sep 17 00:00:00 2001 From: Ben Woodcroft Date: Mon, 5 Feb 2018 11:50:51 +0100 Subject: gnu: Add ruby-launchy. --- gnu/packages/ruby.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 0a2948c4a5..6129f38803 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -9081,3 +9081,25 @@ way.") (home-page "https://github.com/lostisland/faraday_middleware") (license license:expat))) + +(define-public ruby-launchy + (package + (name "ruby-launchy") + (version "2.4.3") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "launchy" version)) + (sha256 + (base32 + "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2")))) + (build-system ruby-build-system) + (propagated-inputs + `(("ruby-addressable" ,ruby-addressable))) + (synopsis + "Launchy is helper class for launching cross-platform applications in a fire and forget manner. There are application concepts (browser, email client, etc) that are common across all platforms, and they may be launched differently on each platform. Launchy is here to make a common approach to launching external application from within ruby programs.") + (description + "Launchy is helper class for launching cross-platform applications in a fire and forget manner. There are application concepts (browser, email client, etc) that are common across all platforms, and they may be launched differently on each platform. Launchy is here to make a common approach to launching external application from within ruby programs.") + (home-page + "http://github.com/copiousfreetime/launchy") + (license #f))) -- cgit v1.2.3