guix-commits
[Top][All Lists]
Advanced

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

41/104: gnu: Add r-linprog.


From: guix-commits
Subject: 41/104: gnu: Add r-linprog.
Date: Tue, 6 Aug 2019 09:50:26 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit f3640cee103c9e86c8ff38ed3f303159e1c5da2d
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Aug 6 14:41:25 2019 +0200

    gnu: Add r-linprog.
    
    * gnu/packages/cran.scm (r-linprog): New variable.
---
 gnu/packages/cran.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 085c41d..9d3dddc 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -2640,6 +2640,26 @@ to access PostgreSQL database systems.")
     ;; under the PostgreSQL license.
     (license license:gpl2)))
 
+(define-public r-linprog
+  (package
+    (name "r-linprog")
+    (version "0.9-2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "linprog" version))
+       (sha256
+        (base32
+         "1ki14an0pmhs2mnmfjjvdzd76pshiyvi659zf7hqvqwj0viv4dw9"))))
+    (build-system r-build-system)
+    (propagated-inputs `(("r-lpsolve" ,r-lpsolve)))
+    (home-page "http://linprog.r-forge.r-project.org/";)
+    (synopsis "Linear programming and optimization")
+    (description
+     "This package can be used to solve Linear Programming / Linear
+Optimization problems by using the simplex algorithm.")
+    (license license:gpl2+)))
+
 (define-public r-geometry
   (package
     (name "r-geometry")



reply via email to

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