guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

29/110: gnu: Add plexus-parent-pom-3.1.


From: guix-commits
Subject: 29/110: gnu: Add plexus-parent-pom-3.1.
Date: Thu, 16 Jul 2020 22:23:17 -0400 (EDT)

roptat pushed a commit to branch master
in repository guix.

commit 6969a575e4439de46c52ac4c4512804c6e288d69
Author: Julien Lepiller <julien@lepiller.eu>
AuthorDate: Sat Jun 27 14:30:49 2020 +0200

    gnu: Add plexus-parent-pom-3.1.
    
    * gnu/packages/maven-parent-pom.scm (plexus-parent-pom-3.1): New
    variable.
---
 gnu/packages/maven-parent-pom.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/maven-parent-pom.scm 
b/gnu/packages/maven-parent-pom.scm
index 6e5a5b0..6dbff83 100644
--- a/gnu/packages/maven-parent-pom.scm
+++ b/gnu/packages/maven-parent-pom.scm
@@ -329,3 +329,38 @@ other projects as their parent pom.")
            (delete 'build)
            (replace 'install
              (install-pom-file (assoc-ref %build-inputs "source")))))))))
+
+(define* (make-plexus-parent-pom version hash #:optional parent)
+  (hidden-package
+    (package
+      (name "plexus-parent-pom")
+      (version version)
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                       (url "https://github.com/codehaus-plexus/plexus-pom";)
+                       (commit (string-append "plexus-" version))))
+                (file-name (git-file-name name version))
+                (sha256 (base32 hash))))
+      (build-system ant-build-system)
+      (arguments
+       `(#:tests? #f
+         #:phases
+         (modify-phases %standard-phases
+           (delete 'configure)
+           (delete 'build)
+           (replace 'install
+             (install-pom-file "pom.xml")))))
+      (propagated-inputs
+        (if parent
+            `(("parent" ,parent))
+            '()))
+      (home-page "https://codehaus-plexus.github.io/plexus-pom";)
+      (synopsis "Plexus parent pom")
+      (description "This package contains the Plexus parent POM.")
+      (license license:asl2.0))))
+
+(define-public plexus-parent-pom-3.1
+  (make-plexus-parent-pom
+    "3.1" "0r1wa6zrpzynn4028w7880abkk2xk25mipav5f0a4d1abqzy5m53"
+    java-sonatype-spice-parent-pom-17))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]