diff options
| author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-26 22:12:13 +0100 |
|---|---|---|
| committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-27 00:49:54 +0100 |
| commit | 1e4b2d8e22b4d330fcce46173519c4e81391a312 (patch) | |
| tree | 0ba2df70be4995e4547033debd879f96c04337e6 /gnu/packages/code.scm | |
| parent | 5eb7c45c44b1c9abe93a7662406415ba4553a81a (diff) | |
gnu: kcov: Update to 39.
* gnu/packages/code.scm (kcov): Update to 39.
[inputs]: Add openssl.
Diffstat (limited to 'gnu/packages/code.scm')
| -rw-r--r-- | gnu/packages/code.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index 155d2c6bde4..8804173a149 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm | |||
| @@ -68,6 +68,7 @@ | |||
| 68 | #:use-module (gnu packages serialization) | 68 | #:use-module (gnu packages serialization) |
| 69 | #:use-module (gnu packages sqlite) | 69 | #:use-module (gnu packages sqlite) |
| 70 | #:use-module (gnu packages texinfo) | 70 | #:use-module (gnu packages texinfo) |
| 71 | #:use-module (gnu packages tls) | ||
| 71 | #:use-module (gnu packages web) | 72 | #:use-module (gnu packages web) |
| 72 | #:use-module (gnu packages xml)) | 73 | #:use-module (gnu packages xml)) |
| 73 | 74 | ||
| @@ -571,31 +572,31 @@ results and determine build stability.") | |||
| 571 | (define-public kcov | 572 | (define-public kcov |
| 572 | (package | 573 | (package |
| 573 | (name "kcov") | 574 | (name "kcov") |
| 574 | (version "38") | 575 | (version "39") |
| 575 | (source (origin | 576 | (source (origin |
| 576 | (method git-fetch) | 577 | (method git-fetch) |
| 577 | (uri (git-reference | 578 | (uri (git-reference |
| 578 | (url "https://github.com/SimonKagstrom/kcov") | 579 | (url "https://github.com/SimonKagstrom/kcov") |
| 579 | (commit version))) | 580 | (commit (string-append "v" version)))) |
| 580 | (file-name (git-file-name name version)) | 581 | (file-name (git-file-name name version)) |
| 581 | (sha256 | 582 | (sha256 |
| 582 | (base32 | 583 | (base32 |
| 583 | "0zqg21xwivi16csl6a5wby6679ny01bjaw4am3y4qcgjdyihifp8")))) | 584 | "09wf1k4dlpdhqjjgq2bibmgy8i3z32wf0zxhd2px2dvg92m4zwqr")))) |
| 584 | (build-system cmake-build-system) | 585 | (build-system cmake-build-system) |
| 585 | (arguments | 586 | (arguments |
| 586 | `(#:tests? #f ;no test target | 587 | `(#:tests? #f ; no test target |
| 587 | #:phases | 588 | #:phases |
| 588 | (modify-phases %standard-phases | 589 | (modify-phases %standard-phases |
| 589 | (add-after 'unpack 'fix-/bin/bash-references | 590 | (add-after 'unpack 'fix-/bin/bash-references |
| 590 | (lambda _ | 591 | (lambda _ |
| 591 | (substitute* (find-files "src" ".*\\.cc?$") | 592 | (substitute* (find-files "src" ".*\\.cc?$") |
| 592 | (("/bin/bash") (which "bash")) | 593 | (("/bin/bash") (which "bash")) |
| 593 | (("/bin/sh") (which "sh"))) | 594 | (("/bin/sh") (which "sh")))))))) |
| 594 | #t))))) | ||
| 595 | (inputs | 595 | (inputs |
| 596 | `(("curl" ,curl) | 596 | `(("curl" ,curl) |
| 597 | ("elfutils" ,elfutils) | 597 | ("elfutils" ,elfutils) |
| 598 | ("libelf" ,libelf) | 598 | ("libelf" ,libelf) |
| 599 | ("openssl" ,openssl) | ||
| 599 | ("zlib" ,zlib))) | 600 | ("zlib" ,zlib))) |
| 600 | (native-inputs | 601 | (native-inputs |
| 601 | `(("python" ,python))) | 602 | `(("python" ,python))) |
