Skip to content
Snippets Groups Projects
Unverified Commit 6562a388 authored by Efraim Flashner's avatar Efraim Flashner
Browse files

gnu: pidentd: Don't use unstable tarball.

* gnu/packages/networking.scm (pidentd)[source]: Download using
git-fetch.
parent 59bcda1e
No related branches found
No related tags found
No related merge requests found
...@@ -2037,13 +2037,14 @@ (define-public pidentd ...@@ -2037,13 +2037,14 @@ (define-public pidentd
(version "3.0.19") (version "3.0.19")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/ptrrkssn/pidentd/archive/" (uri (git-reference
"v" version ".tar.gz")) (url "https://github.com/ptrrkssn/pidentd")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0y3kd1bkydqkpc1qdff24yswysamsqivvadjy0468qri5730izgc")))) "1k4rr0b4ygxssbnsykzjvz4hjhazzz4j5arlilyc1iq7b1wzsk7i"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f)) ; No tests are included `(#:tests? #f)) ; No tests are included
...@@ -2052,7 +2053,7 @@ (define-public pidentd ...@@ -2052,7 +2053,7 @@ (define-public pidentd
(home-page "https://www.lysator.liu.se/~pen/pidentd/") (home-page "https://www.lysator.liu.se/~pen/pidentd/")
(synopsis "Small Ident Daemon") (synopsis "Small Ident Daemon")
(description (description
"@dfn{Pidentd} (Peter's Ident Daemon) is a identd, which implements a "@dfn{Pidentd} (Peter's Ident Daemon) is an identd, which implements a
identification server. Pidentd looks up specific TCP/IP connections and identification server. Pidentd looks up specific TCP/IP connections and
returns the user name and other information about the connection.") returns the user name and other information about the connection.")
(license license:public-domain))) (license license:public-domain)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment