[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54561] v2 [PATCH 5/5] gnu: Add wsdd.
From: |
Simon Streit |
Subject: |
[bug#54561] v2 [PATCH 5/5] gnu: Add wsdd. |
Date: |
Fri, 8 Apr 2022 20:21:31 +0200 |
* gnu/packages/samba.scm (wsdd): New variable.
---
gnu/packages/samba.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm
index b775ad905c..21a5fe8617 100644
--- a/gnu/packages/samba.scm
+++ b/gnu/packages/samba.scm
@@ -500,3 +500,29 @@ (define-public ppp
;; chat is public domain.
(license (list bsd-3 bsd-4 gpl2+ public-domain))))
+(define-public wsdd
+ (package
+ (name "wsdd")
+ (version "0.7.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference (url "https://github.com/christgau/wsdd")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "04an2w6hamnai668ag4vq8x0i09fsg2jrayb4a7ar0x6bn837k7m"))))
+ (build-system copy-build-system)
+ (inputs
+ `(("python" ,python)))
+ (arguments
+ '(#:install-plan
+ '(("src/wsdd.py" "bin/wsdd")
+ ("man/wsdd.1" "share/man/man1/"))))
+ (home-page "https://github.com/christgau/wsdd")
+ (synopsis "A Web Service Discovery host daemon")
+ (description "This daemon allows (Samba) hosts to be found by Web
+Service Dicovery Clients. It also implements the client side of the
+discovery protocol which allows to search for devices implementing
+WSD.")
+ (license expat)))
--
2.34.0
- [bug#54561] v2 [PATCH 0/5] Add service declarations for Samba, Simon Streit, 2022/04/08
- [bug#54561] v2 [PATCH 2/5] doc: Add "Samba" chapter., Simon Streit, 2022/04/08
- [bug#54561] v2 [PATCH 1/5] services: Add samba service., Simon Streit, 2022/04/08
- [bug#54561] v2 [PATCH 3/5] doc: Add documentation for WSDD service., Simon Streit, 2022/04/08
- [bug#54561] v2 [PATCH 5/5] gnu: Add wsdd.,
Simon Streit <=
- [bug#54561] v2 [PATCH 4/5] services: Add wsdd service., Simon Streit, 2022/04/08
- [bug#54561] [PATCH 0/4] Add service declarations for Samba, Ludovic Courtès, 2022/04/08