unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Herman Rimm via Guix-patches via <guix-patches@gnu.org>
To: 70220@debbugs.gnu.org
Cc: Herman Rimm <herman@rimm.ee>
Subject: [bug#70220] [PATCH go-team 2/2] gnu: Add ipp-usb.
Date: Fri,  5 Apr 2024 21:35:45 +0200	[thread overview]
Message-ID: <e73ddadbc4b6ee4813bf3473d66c04b496fe512c.1712345544.git.herman@rimm.ee> (raw)
In-Reply-To: <cover.1712345544.git.herman@rimm.ee>

* gnu/packages/printers.scm (ipp-usb): Add variable.

Change-Id: I3abc86eb10c9b74ef073e1ead8bd51a91de5670f
---
 gnu/packages/printers.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/printers.scm b/gnu/packages/printers.scm
index e7761070e0..86c54fdc2a 100644
--- a/gnu/packages/printers.scm
+++ b/gnu/packages/printers.scm
@@ -21,14 +21,45 @@ (define-module (gnu packages printers)
   #:use-module (guix packages)
   #:use-module (guix git-download)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system go)
   #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (gnu packages avahi)
+  #:use-module (gnu packages golang-xyz)
   #:use-module (gnu packages libusb)
+  #:use-module (gnu packages man)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages qt))
 
 ;; This is a module for packages related to printer-like devices, but not
 ;; related to CUPS.
 
+(define-public ipp-usb
+  (package
+    (name "ipp-usb")
+    (version "0.9.25")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/OpenPrinting/ipp-usb")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "003njvcxi0w97wrs52nm9b0f1d96624hjnv9ywsr1m7p6q7r08mg"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "github.com/OpenPrinting/ipp-usb"))
+    (inputs (list avahi libusb))
+    (native-inputs (list pkg-config ronn))
+    (propagated-inputs (list go-github-com-openprinting-goipp))
+    (synopsis "HTTP reverse proxy, backed by the IPP-over-USB connection")
+    (description
+      "ipp-usb implements an HTTP reverse proxy, backed by the IPP-over-USB
+connection to the device. This is because IPP-over-USB implementations which simply
+relay a TCP connection to USB do not work.")
+    (home-page "https://github.com/OpenPrinting/ipp-usb")
+    (license license:bsd-2)))
+
 (define-public robocut
   (package
     (name "robocut")
-- 
2.41.0





  parent reply	other threads:[~2024-04-05 19:37 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-05 19:33 [bug#70220] [PATCH go-team 0/2] Add ipp-usb package Herman Rimm via Guix-patches via
2024-04-05 19:35 ` [bug#70220] [PATCH go-team 1/2] gnu: Add go-github-com-openprinting-goipp Herman Rimm via Guix-patches via
2024-04-05 19:35 ` Herman Rimm via Guix-patches via [this message]
2024-04-12 16:07 ` bug#70220: [PATCH go-team 0/2] Add ipp-usb package Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e73ddadbc4b6ee4813bf3473d66c04b496fe512c.1712345544.git.herman@rimm.ee \
    --to=guix-patches@gnu.org \
    --cc=70220@debbugs.gnu.org \
    --cc=herman@rimm.ee \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).