From f251f54d2c6078426d0fa20e914da7d1a4cada59 Mon Sep 17 00:00:00 2001 From: ng0 Date: Tue, 30 Aug 2016 12:22:51 +0000 Subject: [PATCH 2/2] gnu: Add ghc-adaptive. * gnu/packages/haskell.scm (ghc-adaptive): New variable. --- gnu/packages/haskell.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 87628b5..d7dccc5 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -6432,4 +6432,26 @@ can be specified precisely in the type. The language is closely related to Epigram and Agda.") (license license:bsd-3))) +(define-public ghc-adaptive + (package + (name "ghc-adaptive") + (version "0.23") + (source + (origin + (method url-fetch) + (uri (string-append "https://hackage.haskell.org/package/" + "Adaptive/Adaptive-" version ".tar.gz")) + (sha256 + (base32 + "0n27d8dvk0qq68zp4l5bsj5y9xqmrk9d25psrrf29mmw1f43wp8c")))) + (build-system haskell-build-system) + (home-page "http://hackage.haskell.org/package/Adaptive") + (synopsis "Library for incremental computing.") + (description + "This is a Haskell (plus some extensions) implementation of a library for +incremental computing. It closely follows the implementation in the nice +POPL 2002 paper \"Adaptive Functional Programming\", by Umut Acar, +Guy Blelloch and Bob Harper.") + (license license:bsd-3))) + ;;; haskell.scm ends here -- 2.9.3