guix-commits
[Top][All Lists]
Advanced

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

05/20: gnu: Add ghc-indexed-profunctors.


From: guix-commits
Subject: 05/20: gnu: Add ghc-indexed-profunctors.
Date: Fri, 7 Jul 2023 09:31:45 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit f3a180296abc97f0a05a5526ed1838332b991918
Author: zamfofex <zamfofex@twdb.moe>
AuthorDate: Wed Jun 14 09:48:44 2023 -0300

    gnu: Add ghc-indexed-profunctors.
    
    * gnu/packages/haskell-xyz.scm (ghc-indexed-profunctors): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/haskell-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 98b068dcc6..9e8bed6016 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -9232,6 +9232,26 @@ API.")
     (description "This library provides profunctors for Haskell.")
     (license license:bsd-3)))
 
+(define-public ghc-indexed-profunctors
+  (package
+    (name "ghc-indexed-profunctors")
+    (version "0.1.1")
+    (source (origin
+              (method url-fetch)
+              (uri (hackage-uri "indexed-profunctors" version))
+              (sha256
+               (base32
+                "1cbccbvrx73drr1jf3yyw0rp1mcfv3jc1rvdcby5xxx4ja543fjs"))))
+    (build-system haskell-build-system)
+    (properties '((upstream-name . "indexed-profunctors")))
+    (home-page "http://hackage.haskell.org/package/indexed-profunctors";)
+    (synopsis "Utilities for indexed profunctors")
+    (description
+     "This package contains basic definitions related to indexed profunctors.  
These
+are primarily intended as internal utilities to support the @code{optics} and
+@code{generic-lens} package families.")
+    (license license:bsd-3)))
+
 (define-public ghc-project-template
   (package
     (name "ghc-project-template")



reply via email to

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