guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu: Add perl-extutils-cppguess.


From: guix-commits
Subject: 01/05: gnu: Add perl-extutils-cppguess.
Date: Tue, 5 Nov 2019 16:08:49 -0500 (EST)

andreas pushed a commit to branch master
in repository guix.

commit 1f03143c5380b21f1883c8acbbe8e76e28a086fa
Author: Andreas Enge <address@hidden>
Date:   Sun Nov 3 13:28:34 2019 +0100

    gnu: Add perl-extutils-cppguess.
    
    * gnu/packages/perl.scm (perl-extutils-cppguess): New variable.
---
 gnu/packages/perl.scm | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index f92d502..0b17db1 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès 
<address@hidden>
-;;; Copyright © 2013 Andreas Enge <address@hidden>
+;;; Copyright © 2013, 2019 Andreas Enge <address@hidden>
 ;;; Copyright © 2015, 2016, 2017, 2019 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2015, 2016, 2017, 2019 Eric Bavier <address@hidden>
 ;;; Copyright © 2015 Eric Dvorsak <address@hidden>
@@ -3320,6 +3320,33 @@ By itself it is not a particularly interesting module by 
any measure, however
 it ties together a family of modern toolchain modules.")
     (license (package-license perl))))
 
+(define-public perl-extutils-cppguess
+  (package
+    (name "perl-extutils-cppguess")
+    (version "0.20")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+               "mirror://cpan/authors/id/E/ET/ETJ/ExtUtils-CppGuess-"
+               version
+               ".tar.gz"))
+        (sha256
+          (base32
+            "0q9ynigk600fv95xac6aslrg2k19m6qbzf5hqfsnall8113r3gqj"))))
+    (build-system perl-build-system)
+    (native-inputs
+      `(("perl-capture-tiny" ,perl-capture-tiny)
+        ("perl-module-build" ,perl-module-build)))
+    (propagated-inputs
+      `(("perl-capture-tiny" ,perl-capture-tiny)))
+    (home-page
+      "https://metacpan.org/release/ExtUtils-CppGuess";)
+    (synopsis "Tool for guessing C++ compiler and flags")
+    (description "ExtUtils::CppGuess attempts to guess the C++ compiler that
+is compatible with the C compiler used to build perl.")
+    (license (package-license perl))))
+
 (define-public perl-extutils-depends
   (package
     (name "perl-extutils-depends")



reply via email to

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