gnu: rdmd: Rename to d-tools.

* gnu/packages/dlang.scm (rdmd): Rename this…
(d-tools): …to this.
[home-page, synopsis, description]: Update accordingly.

Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
( 2022-06-15 19:53:50 +01:00 committed by Tobias Geerinckx-Rice
parent a47c9463d0
commit dc8c869724
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -7,6 +7,7 @@
;;; Copyright © 2020 Guy Fleury Iteriteka <gfleury@disroot.org> ;;; Copyright © 2020 Guy Fleury Iteriteka <gfleury@disroot.org>
;;; Copyright © 2021, 2022 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2022 ( <paren@disroot.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -48,9 +49,9 @@
#:use-module (gnu packages xorg) #:use-module (gnu packages xorg)
#:use-module (srfi srfi-1)) #:use-module (srfi srfi-1))
(define-public rdmd (define-public d-tools
(package (package
(name "rdmd") (name "d-tools")
(version "2.077.1") (version "2.077.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
@ -76,14 +77,12 @@
(install-file "rdmd" bin))))))) (install-file "rdmd" bin)))))))
(native-inputs (native-inputs
(list ldc)) (list ldc))
(home-page "https://github.com/D-Programming-Language/tools/") (home-page "https://github.com/dlang/tools")
(synopsis "Specialized equivalent to 'make' for the D language") (synopsis "Useful D-related tools")
(description (description
"rdmd is a companion to the dmd compiler that simplifies the typical "@code{d-tools} provides two useful tools for the D language: @code{rdmd},
edit-compile-link-run or edit-make-run cycle to a rapid edit-run cycle. Like which runs D source files as scripts, and @code{dustmite}, which reduces D code
make and other tools, rdmd uses the relative dates of the files involved to to a minimal test case.")
minimize the amount of work necessary. Unlike make, rdmd tracks dependencies
and freshness without requiring additional information from the user.")
(license license:boost1.0))) (license license:boost1.0)))
;;; The 0.17.6 version is the last release to support being bootstrapped ;;; The 0.17.6 version is the last release to support being bootstrapped