gnu: Add r-signal.
authorRicardo Wurmus <rekado@elephly.net>
Thu, 8 Mar 2018 22:16:03 +0000 (23:16 +0100)
committerRicardo Wurmus <rekado@elephly.net>
Thu, 8 Mar 2018 22:31:55 +0000 (23:31 +0100)
* gnu/packages/cran.scm (r-signal): New variable.

gnu/packages/cran.scm

index adcc178..c096a9d 100644 (file)
@@ -2951,3 +2951,26 @@ created.  Experimental designs may be blocked or blocked designs created from
 a candidate list, using several criteria.  The blocking can be done when whole
 and within plot factors interact.")
     (license license:gpl2+)))
+
+(define-public r-signal
+  (package
+    (name "r-signal")
+    (version "0.7-6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "signal" version))
+       (sha256
+        (base32
+         "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
+    (build-system r-build-system)
+    (propagated-inputs `(("r-mass" ,r-mass)))
+    (native-inputs `(("gfortran" ,gfortran)))
+    (home-page "http://cran.r-project.org/web/packages/signal/")
+    (synopsis "Signal processing")
+    (description
+     "This package provides a set of signal processing functions originally
+written for Matlab and GNU Octave.  It includes filter generation utilities,
+filtering functions, resampling routines, and visualization of filter models.
+It also includes interpolation functions.")
+    (license license:gpl2)))