mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: wcalc: Remove pre-generated files.
* gnu/packages/maths.scm (wcalc)[source]: Add snippet to remove files generated by bison and flex. [native-inputs]: Add bison, flex.
This commit is contained in:
parent
e1fb703e3e
commit
29c51c6525
1 changed files with 11 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
||||||
;;; Copyright © 2015–2022 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015–2022 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
||||||
;;; Copyright © 2015, 2018 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2015, 2018 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2015-2022 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2015 Fabian Harfert <fhmgufs@web.de>
|
;;; Copyright © 2015 Fabian Harfert <fhmgufs@web.de>
|
||||||
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
||||||
;;; Copyright © 2016, 2018, 2020, 2021 Kei Kebreau <kkebreau@posteo.net>
|
;;; Copyright © 2016, 2018, 2020, 2021 Kei Kebreau <kkebreau@posteo.net>
|
||||||
|
@ -5449,10 +5449,18 @@ FLANN is written in C++ and contains bindings for C, Octave and Python.")
|
||||||
"wcalc-" version ".tar.bz2"))
|
"wcalc-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1vi8dl6rccqiq1apmpwawyg2ywx6a1ic1d3cvkf2hlwk1z11fb0f"))))
|
"1vi8dl6rccqiq1apmpwawyg2ywx6a1ic1d3cvkf2hlwk1z11fb0f"))
|
||||||
|
(snippet
|
||||||
|
#~(begin
|
||||||
|
(for-each delete-file
|
||||||
|
(list "src/common/scanner.c"
|
||||||
|
"src/common/parser.c"
|
||||||
|
"src/common/parser.h"))))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list mpfr readline))
|
(list mpfr readline))
|
||||||
|
(native-inputs
|
||||||
|
(list bison flex))
|
||||||
(home-page "http://w-calc.sourceforge.net/index.php")
|
(home-page "http://w-calc.sourceforge.net/index.php")
|
||||||
(synopsis "Flexible command-line scientific calculator")
|
(synopsis "Flexible command-line scientific calculator")
|
||||||
(description "Wcalc is a very capable calculator. It has standard functions
|
(description "Wcalc is a very capable calculator. It has standard functions
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue