diff options
author | Vincent Legoll <vincent.legoll@gmail.com> | 2020-04-04 19:49:21 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-04-04 20:19:03 +0200 |
commit | 525e83ec83eca8d555913e59235902fa635b052d (patch) | |
tree | 5f2f4d6a64ce8f896e40af7ffe2857a4854261a0 /gnu/packages/maths.scm | |
parent | 79edfcf268206f4d5f2e96e93ad061c0508120ee (diff) | |
download | patches-525e83ec83eca8d555913e59235902fa635b052d.tar patches-525e83ec83eca8d555913e59235902fa635b052d.tar.gz |
gnu: scotch: Make some inputs native.
* gnu/packages/math.scm (scotch)[inputs]: Move flex & bison from here...
[native-inputs]: ...to this new field.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index b66c330711..391b2a26de 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -36,6 +36,7 @@ ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net> ;;; Copyright © 2020 Felix Gruber <felgru@posteo.net> ;;; Copyright © 2020 R Veera Kumar <vkor@vkten.in> +;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -2625,8 +2626,9 @@ implemented in ANSI C, and MPI for communications.") "scotch-integer-declarations.patch")))) (build-system gnu-build-system) (inputs - `(("zlib" ,zlib) - ("flex" ,flex) + `(("zlib" ,zlib))) + (native-inputs + `(("flex" ,flex) ("bison" ,bison))) (outputs '("out" "metis")) (arguments |