{"id":27453861,"url":"https://github.com/artyom-poptsov/guile-udev","last_synced_at":"2026-02-17T21:37:27.862Z","repository":{"id":45271824,"uuid":"282470147","full_name":"artyom-poptsov/guile-udev","owner":"artyom-poptsov","description":"GNU Guile bindings to libudev.","archived":false,"fork":false,"pushed_at":"2024-01-09T05:41:29.000Z","size":168,"stargazers_count":7,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-13T08:52:02.640Z","etag":null,"topics":["guile","scheme","udev"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/artyom-poptsov.png","metadata":{"files":{"readme":"README","changelog":"ChangeLog","contributing":null,"funding":".github/FUNDING.yml","license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":"avp","issuehunt":null,"otechie":null,"custom":null}},"created_at":"2020-07-25T15:21:44.000Z","updated_at":"2024-01-23T08:17:10.000Z","dependencies_parsed_at":"2024-01-09T06:43:14.714Z","dependency_job_id":"908a9ddf-40cd-47f8-98a0-382012b3ecca","html_url":"https://github.com/artyom-poptsov/guile-udev","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/artyom-poptsov/guile-udev","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artyom-poptsov%2Fguile-udev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artyom-poptsov%2Fguile-udev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artyom-poptsov%2Fguile-udev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artyom-poptsov%2Fguile-udev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/artyom-poptsov","download_url":"https://codeload.github.com/artyom-poptsov/guile-udev/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artyom-poptsov%2Fguile-udev/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29558766,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T20:52:40.164Z","status":"ssl_error","status_checked_at":"2026-02-17T20:48:10.325Z","response_time":100,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["guile","scheme","udev"],"created_at":"2025-04-15T13:57:32.701Z","updated_at":"2026-02-17T21:37:22.848Z","avatar_url":"https://github.com/artyom-poptsov.png","language":"C","funding_links":["https://liberapay.com/avp"],"categories":[],"sub_categories":[],"readme":"# -*- mode: org; -*-\n\n* Guile-Udev\n[[https://github.com/artyom-poptsov/guile-udev/actions/workflows/guile2.2.yml/badge.svg]] [[https://github.com/artyom-poptsov/guile-udev/actions/workflows/guile3.0.yml/badge.svg]] [[https://github.com/artyom-poptsov/guile-udev/actions/workflows/guix.yml/badge.svg]]\n\nGuile-Udev is a [[https://www.gnu.org/software/guile/][GNU Guile]] bindings to [[https://en.wikipedia.org/wiki/Udev][libudev]].\n\n** License\n   Guile-Udev is free software: you can redistribute it and/or modify it under\n   the terms of the GNU General Public License as published by the Free\n   Software Foundation, either version 3 of the License, or (at your option)\n   any later version. Please see =COPYING= file for the terms of GNU General\n   Public License.\n\n** Requirements\n   - guile-2.2 / guile-3.0\n   - libudev \u003e= 239\n\n*** Build-time dependencies\n    - guile-2.2-dev / guile-3.0-dev\n    - libudev-dev\n    - gettext\n    - automake\n    - autoconf\n    - texinfo\n    - pkg-config\n\n** Building and installation\n*** GNU Guix\nTo install the latest release of Guile-Udev on [[https://guix.gnu.org/][GNU Guix]], issue the following\ncommand:\n #+BEGIN_EXAMPLE shell\n$ guix install guile-udev\n #+END_EXAMPLE\n\n If you want to install the Git version you can use =guix.scm= package\n description that Guile-Udev provides in the repository:\n  #+BEGIN_EXAMPLE shell\n$ guix build -f guix.scm\n$ guix package -f guix.scm\n #+END_EXAMPLE\n\n*** Ubuntu GNU/Linux\n   On Ubuntu GNU/Linux 20.04 you'll need to install the needed dependencies to\n   be able to build the library with Guile 3.0:\n #+BEGIN_EXAMPLE shell\n$ sudo apt install \\\n    gcc            \\\n    make           \\\n    guile-3.0-dev  \\\n    libudev-dev    \\\n    gettext        \\\n    automake       \\\n    autoconf       \\\n    texinfo        \\\n    pkg-config     \\\n    libguile-dev\n#+END_EXAMPLE\n\n*** Manual\n   To build and install the library, use the following commands:\n #+BEGIN_EXAMPLE shell\n $ autoreconf -vif\n $ ./configure\n $ make\n $ make install\n #+END_EXAMPLE\n\n** Usage\n Please see the documentation in Info format for API documentation and usage\n examples -- you can open it by typing =info guile-udev= in the shell, or using\n =C-h i m guile-udev RET= combo in Emacs.  Also take a look on examples in the\n =examples= directory.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartyom-poptsov%2Fguile-udev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fartyom-poptsov%2Fguile-udev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartyom-poptsov%2Fguile-udev/lists"}