gnu: samba/fixed: Update to 4.15.13.

* gnu/packages/samba.scm (samba/fixed-patched): New variable.
(samba/fixed): Add replacement for samba/fixed-patched.
This commit is contained in:
Liliana Marie Prikler 2022-12-18 08:29:07 +01:00
parent 502f981c13
commit c39db91e51
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -295,7 +295,9 @@ (define-public samba
(define-public samba/fixed
;; Version that rarely changes, depended on by libsoup.
(hidden-package
(package/inherit samba
(package
(inherit samba)
(replacement samba/fixed-patched)
(version "4.15.3")
(source
(origin
@ -319,6 +321,18 @@ (define-public samba/fixed
libxslt
libxml2)))))
(define-public samba/fixed-patched
(package
(inherit samba/fixed)
(version "4.15.13")
(source
(origin
(method url-fetch)
(uri (string-append "https://download.samba.org/pub/samba/stable/"
"samba-" version ".tar.gz"))
(sha256
(base32 "0s29vzn5f42vjhx6h25c7v67n14ymqxn8glqa97d0rajd99y64n4"))))))
(define-public talloc
(package
(name "talloc")