diff options
author | Christopher Baines <mail@cbaines.net> | 2018-02-05 11:16:31 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 10:14:46 +0000 |
commit | 384bf42a323053e522accc0b27816ecb91204445 (patch) | |
tree | ef7a21dfc25d751901138d59859bb4869b715f33 | |
parent | 48135a303420dc7b5e2b4958f16281cb81031f72 (diff) | |
download | gnu-guix-384bf42a323053e522accc0b27816ecb91204445.tar gnu-guix-384bf42a323053e522accc0b27816ecb91204445.tar.gz |
gnu: Add ruby-lino.
-rw-r--r-- | gnu/packages/ruby.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 31edef4481..95a09e437d 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8649,3 +8649,26 @@ but it can function as a stand-alone templating engine.") (home-page "https://github.com/hamstergem/hamster") (license license:expat))) + +(define-public ruby-lino + (package + (name "ruby-lino") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "lino" version)) + (sha256 + (base32 + "11d29g0fk372b9fcpyr0k6hxm2b4j4igpysmi542hgbbgqgp9cd3")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs + `(("ruby-hamster" ,ruby-hamster) + ("ruby-open4" ,ruby-open4))) + (synopsis "Command line builders and executors.") + (description + "Command line builders and executors.") + (home-page "https://github.com/tobyclemson/lino") + (license license:expat))) |