gnu: Add perl-sys-cpu.
authorEric Bavier <bavier@member.fsf.org>
Mon, 1 Dec 2014 06:21:21 +0000 (00:21 -0600)
committerEric Bavier <bavier@member.fsf.org>
Tue, 9 Dec 2014 18:02:08 +0000 (12:02 -0600)
* gnu/packages/perl.scm (perl-sys-cpu): New variable.

gnu/packages/perl.scm

index 7479603..a724a1b 100644 (file)
@@ -343,3 +343,24 @@ codes.")
                               "Regexp-Common-" version))
     ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
     (license (list (package-license perl) x11 bsd-3))))
+
+(define-public perl-sys-cpu
+  (package
+    (name "perl-sys-cpu")
+    (version "0.61")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
+                                  "Sys-CPU-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))))
+    (build-system perl-build-system)
+    (synopsis "Perl extension for getting CPU information")
+    (description
+     "In responce to a post on perlmonks.org, a module for counting the number
+of CPU's on a system.  Support has now also been added for type of CPU and
+clock speed.")
+    (home-page (string-append "http://search.cpan.org/~mzsanford/"
+                              "Sys-CPU-" version))
+    (license (package-license perl))))