gnu: dmd: Apply 'make-forkexec-constructor' patch.
Proposed by Andy Wingo <wingo@igalia.com>. * gnu/packages/admin.scm (dmd): Add 'base-version' and 'patch-level' variables. [source]: Use 'base-version' instead of 'version'. Add 'patches' field.
This commit is contained in:
parent
dede51a18b
commit
4006fd87b5
|
@ -60,16 +60,30 @@
|
||||||
#:use-module (gnu packages man))
|
#:use-module (gnu packages man))
|
||||||
|
|
||||||
(define-public dmd
|
(define-public dmd
|
||||||
|
(let ((base-version "0.2")
|
||||||
|
(patch-level "01"))
|
||||||
(package
|
(package
|
||||||
(name "dmd")
|
(name "dmd")
|
||||||
(version "0.2")
|
(version (string-append base-version "." patch-level))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "ftp://alpha.gnu.org/gnu/dmd/dmd-"
|
(uri (string-append "ftp://alpha.gnu.org/gnu/dmd/dmd-"
|
||||||
version ".tar.gz"))
|
base-version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"10fl4k96f17gqx2fv8iw9c61ld26gsk4bbrlfqckdmiimz1k175z"))))
|
"10fl4k96f17gqx2fv8iw9c61ld26gsk4bbrlfqckdmiimz1k175z"))
|
||||||
|
(patches
|
||||||
|
(list (origin
|
||||||
|
;; This patch augments 'make-fork+exec-constructor' and
|
||||||
|
;; is used by a bunch of services.
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://git.savannah.gnu.org/cgit/dmd.git/patch/"
|
||||||
|
"?id=d1d0ff30b3ed2b86b0a3c9bc048d2a855f8e31e6"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1lqymypixfiyb72d6bn24m06ry2q1ljnnv0qrc89pbb4z9azaa4d"))
|
||||||
|
(file-name "dmd-user-group.patch"))))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("--localstatedir=/var")))
|
'(#:configure-flags '("--localstatedir=/var")))
|
||||||
|
@ -82,7 +96,7 @@ execution of system services, replacing similar functionality found in
|
||||||
typical init systems. It provides dependency-handling through a convenient
|
typical init systems. It provides dependency-handling through a convenient
|
||||||
interface and is based on GNU Guile.")
|
interface and is based on GNU Guile.")
|
||||||
(license license:gpl3+)
|
(license license:gpl3+)
|
||||||
(home-page "http://www.gnu.org/software/dmd/")))
|
(home-page "http://www.gnu.org/software/dmd/"))))
|
||||||
|
|
||||||
(define-public dfc
|
(define-public dfc
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue