diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-22 02:00:03 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-22 02:00:10 +0200 |
commit | 362be0b7f8715c259f144f24d498b0b99ffc75e4 (patch) | |
tree | 7a838d60f20ae585855621808909956921cf5e11 /gnu | |
parent | 39033592a819893a067fc699c3c35f3e544c5c99 (diff) |
gnu: asco: Update to 0.4.11.
* gnu/packages/engineering.scm (asco): Update to 0.4.11.
[arguments]: Don't explicitly return #t from phases.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/engineering.scm | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 7d44789578..47422dd97d 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -1732,14 +1732,14 @@ it suitable for security research and analysis.") (define-public asco (package (name "asco") - (version "0.4.10") - (source (origin - (method url-fetch) - (uri (string-append "mirror://sourceforge/asco/asco/" version "/ASCO-" - version ".tar.gz")) - (sha256 - (base32 - "119rbc2dc8xzwxvykgji0v0nrzvymjmlizr1bc2mihspj686kxsl")))) + (version "0.4.11") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/asco/asco/" version "/ASCO-" + version ".tar.gz")) + (sha256 + (base32 "0ggxv0p1zmfbvd1k17p2j1cskbjsa83fansz8ihxn7ax9qdicljv")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no tests @@ -1756,8 +1756,7 @@ it suitable for security research and analysis.") (("nice") (string-append coreutils "/bin/nice"))) (substitute* "Makefile" - (("<FULL_PATH_TO_MPICH>/bin/mpicc") (which "mpicc"))) - #t))) + (("<FULL_PATH_TO_MPICH>/bin/mpicc") (which "mpicc")))))) (replace 'install ; no install target (lambda* (#:key outputs #:allow-other-keys) (for-each (lambda (file) @@ -1765,8 +1764,7 @@ it suitable for security research and analysis.") (assoc-ref outputs "out") "/bin"))) '("asco" "asco-mpi" "asco-test" - "tools/alter/alter" "tools/log/log")) - #t))))) + "tools/alter/alter" "tools/log/log"))))))) (native-inputs `(("mpi" ,openmpi))) (inputs |