Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
48e6851f
Commit
48e6851f
authored
9 years ago
by
Ricardo Wurmus
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add ruby-rb-inotify.
* gnu/packages/ruby.scm (ruby-rb-inotify): New variable.
parent
58b59742
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/ruby.scm
+33
-0
33 additions, 0 deletions
gnu/packages/ruby.scm
with
33 additions
and
0 deletions
gnu/packages/ruby.scm
+
33
−
0
View file @
48e6851f
...
@@ -1279,6 +1279,39 @@ (define-public ruby-tzinfo
...
@@ -1279,6 +1279,39 @@ (define-public ruby-tzinfo
(
home-page
"http://tzinfo.github.io"
)
(
home-page
"http://tzinfo.github.io"
)
(
license
license:expat
)))
(
license
license:expat
)))
(
define-public
ruby-rb-inotify
(
package
(
name
"ruby-rb-inotify"
)
(
version
"0.9.5"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
rubygems-uri
"rb-inotify"
version
))
(
sha256
(
base32
"0kddx2ia0qylw3r52nhg83irkaclvrncgy2m1ywpbhlhsz1rymb9"
))))
(
build-system
ruby-build-system
)
(
arguments
'
(
#
:tests?
#f
; there are no tests
#
:phases
(
modify-phases
%standard-phases
;; Building the gemspec with rake is not working here since it is
;; generated with Jeweler. It is also unnecessary because the
;; existing gemspec does not use any development tools to generate a
;; list of files.
(
replace
'build
(
lambda
_
(
zero?
(
system*
"gem"
"build"
"rb-inotify.gemspec"
)))))))
(
propagated-inputs
`
((
"ruby-ffi"
,
ruby-ffi
)))
(
native-inputs
`
((
"ruby-yard"
,
ruby-yard
)))
(
synopsis
"Ruby wrapper for Linux's inotify"
)
(
description
"rb-inotify is a simple wrapper over the @code{inotify} Linux
kernel subsystem for monitoring changes to files and directories."
)
(
home-page
"https://github.com/nex3/rb-inotify"
)
(
license
license:expat
)))
(
define-public
ruby-json
(
define-public
ruby-json
(
package
(
package
(
name
"ruby-json"
)
(
name
"ruby-json"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment