diff options
author | Aleksandr Vityazev <[email protected]> | 2023-04-26 20:33:52 +0300 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2023-04-28 21:02:54 +0200 |
commit | 87ba11eff1b7a1784c94c897d468ba28822b0609 (patch) | |
tree | f05fa43ff220f649afbe143ca8569a5e0c91867e | |
parent | 1a93ff9a8b0c64ccb0e365f4e5c199e0ac8b9de6 (diff) |
gnu: maven-embedder: Fix build.
* gnu/packages/maven (maven-embedder)[arguments]:
Add the'add-sisu-shebang phase after unpack.
Signed-off-by: Ludovic Courtès <[email protected]>
-rw-r--r-- | gnu/packages/maven.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index 6c2958fa11..a805bda8e5 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2019 Björn Höfling <[email protected]> ;;; Copyright © 2020 Efraim Flashner <[email protected]> ;;; Copyright © 2022 Artyom V. Poptsov <[email protected]> +;;; Copyright © 2023 Aleksandr Vityazev <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1838,6 +1839,10 @@ artifactId=maven-core" ,(package-version maven-core-bootstrap)))) #:jdk ,icedtea-8 #:phases (modify-phases %standard-phases + (add-after 'unpack 'add-sisu-shebang + (lambda _ + (substitute* "sisu.sh" + (("^## T") "#!/bin/sh\n## T")))) (add-before 'build 'generate-sisu-named (lambda _ (mkdir-p "build/classes/META-INF/sisu") |