mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: c-vise: Update to 2.4.0.
* gnu/packages/debug.scm (c-vise)[source]: Update to 2.4.0. [inputs]: Use list syntax. Add python-chardet.
This commit is contained in:
parent
8521adf935
commit
1ea3f1d17a
1 changed files with 5 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2014, 2015, 2016, 2017, 2019, 2020, 2021 Eric Bavier <bavier@posteo.net>
|
||||
;;; Copyright © 2014, 2015, 2016, 2017, 2019-2022 Eric Bavier <bavier@posteo.net>
|
||||
;;; Copyright © 2016, 2017, 2018, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018, 2019 Rutger Helling <rhelling@mykolab.com>
|
||||
|
@ -179,7 +179,7 @@ (define-public c-reduce
|
|||
(define-public c-vise
|
||||
(package
|
||||
(name "c-vise")
|
||||
(version "2.3.0")
|
||||
(version "2.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -187,19 +187,14 @@ (define-public c-vise
|
|||
(url "https://github.com/marxin/cvise")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32 "0f6m58rak87gvcvxxcgp1bzbsv1q618h0iipmv0dx9jv1bn0qv43"))
|
||||
(base32 "1i2z5q2pcwh1gpdqc24x1a2q5vzwhblzzq021nzwf304di7m18vl"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
(list flex python-pytest python-pytest-flake8))
|
||||
(inputs
|
||||
`(("bash" ,bash-minimal) ; For wrap-program
|
||||
("clang" ,clang)
|
||||
("llvm" ,llvm)
|
||||
("python" ,python)
|
||||
("python-pebble" ,python-pebble)
|
||||
("python-psutil" ,python-psutil)
|
||||
("unifdef" ,unifdef)))
|
||||
(list bash-minimal clang llvm unifdef
|
||||
python python-pebble python-psutil python-chardet))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
|
Loading…
Reference in a new issue