mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add Remake.
* gnu/packages/debug.scm (remake): New variable. * gnu/packages/patches/remake-impure-dirs.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it.
This commit is contained in:
parent
a987f128b5
commit
86f86cffd8
3 changed files with 56 additions and 0 deletions
|
@ -536,6 +536,31 @@ the position of the variable and allows you to modify its value.")
|
|||
;; by GPLv3 or later.
|
||||
(license (list license:lgpl3+ license:gpl3+))))
|
||||
|
||||
(define-public remake
|
||||
(package (inherit gnu-make)
|
||||
(name "remake")
|
||||
(version "4.3-1.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (let ((upstream-version
|
||||
(match (string-split version #\-)
|
||||
((ver sub) (string-append ver "%2Bdbg-" sub)))))
|
||||
(string-append "mirror://sourceforge/bashdb/"
|
||||
"remake/" upstream-version "/"
|
||||
"remake-" upstream-version ".tar.gz")))
|
||||
(file-name (string-append "remake-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0xlx2485y0israv2pfghmv74lxcv9i5y65agy69mif76yc4vfvif"))
|
||||
(patches (search-patches "remake-impure-dirs.patch"))))
|
||||
(inputs
|
||||
`(("readline" ,readline)
|
||||
,@(package-inputs gnu-make)))
|
||||
(home-page "http://bashdb.sourceforge.net/remake/")
|
||||
(description "Remake is an enhanced version of GNU Make that adds improved
|
||||
error reporting, better tracing, profiling, and a debugger.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public rr
|
||||
(package
|
||||
(name "rr")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue