diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-08-22 18:14:04 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-08-22 18:14:04 +0200 |
commit | 233df51ebc162bf95dfadf914914cbfbc6984651 (patch) | |
tree | 06fa8d78bbe97619450a88d8a38d01dc3775655b /gnu/packages/bootloaders.scm | |
parent | 43cec3fb1ea54dedee8a5f613c833958c76892f4 (diff) | |
parent | 180a8986e57a6cfb65a8cddabcb430f23801832b (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/bootloaders.scm')
-rw-r--r-- | gnu/packages/bootloaders.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index e59d15c087..727789a96e 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -52,6 +52,7 @@ #:use-module (gnu packages tls) #:use-module (gnu packages sdl) #:use-module (gnu packages swig) + #:use-module (gnu packages valgrind) #:use-module (gnu packages virtualization) #:use-module (gnu packages web) #:use-module (guix build-system gnu) @@ -322,7 +323,7 @@ menu to select one of the installed operating systems.") (define-public dtc (package (name "dtc") - (version "1.4.6") + (version "1.4.7") (source (origin (method url-fetch) (uri (string-append @@ -330,12 +331,13 @@ menu to select one of the installed operating systems.") "dtc-" version ".tar.xz")) (sha256 (base32 - "0zkvih0fpwvk31aqyyfy9kn13nbi76c21ihax15p6h1wrjzh48rq")))) + "1rydi5jvhlhsr110h6n0pavv3daqa0cb4m5vcps50qzq1zqfhhv6")))) (build-system gnu-build-system) (native-inputs `(("bison" ,bison) ("flex" ,flex) - ("swig" ,swig))) + ("swig" ,swig) + ("valgrind" ,valgrind))) (inputs `(("python-2" ,python-2))) (arguments |