;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Alex ter Weele ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages agda) #:use-module (gnu packages haskell) #:use-module (gnu packages haskell-check) #:use-module (gnu packages haskell-web) #:use-module (guix build-system haskell) #:use-module (guix build-system trivial) #:use-module (guix download) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages)) (define-public agda (package (name "agda") (version "2.5.3") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/Agda/Agda-" version ".tar.gz")) (sha256 (base32 "0r80vw7vnvbgq47y50v050malv7zvv2p2kg6f47i04r0b2ix855a")))) (build-system haskell-build-system) (inputs `(("cpphs" ,cpphs) ("ghc-alex" ,ghc-alex) ("ghc-async" ,ghc-async) ("ghc-blaze-html" ,ghc-blaze-html) ("ghc-boxes" ,ghc-boxes) ("ghc-data-hash" ,ghc-data-hash) ("ghc-edisoncore" ,ghc-edisoncore) ("ghc-edit-distance" ,ghc-edit-distance) ("ghc-equivalence" ,ghc-equivalence) ("ghc-geniplate-mirror" ,ghc-geniplate-mirror) ("ghc-gitrev" ,ghc-gitrev) ("ghc-happy" ,ghc-happy) ("ghc-hashable" ,ghc-hashable) ("ghc-hashtables" ,ghc-hashtables) ("ghc-ieee754" ,ghc-ieee754) ("ghc-monadplus" ,ghc-monadplus) ("ghc-mtl" ,ghc-mtl) ("ghc-murmur-hash" ,ghc-murmur-hash) ("ghc-uri-encode" ,ghc-uri-encode) ("ghc-parallel" ,ghc-parallel) ("ghc-regex-tdfa" ,ghc-regex-tdfa) ("ghc-stm" ,ghc-stm) ("ghc-strict" ,ghc-strict) ("ghc-text" ,ghc-text) ("ghc-unordered-containers" ,ghc-unordered-containers) ("ghc-zlib" ,ghc-zlib))) (home-page "http://wiki.portal.chalmers.se/agda/") (synopsis "Dependently typed functional programming language and proof assistant") (description "Agda is a dependently typed functional programming language: it has inductive families, which are similar to Haskell's GADTs, but they can be indexed by values and not just types. It also has parameterised modules, mixfix operators, Unicode characters, and an interactive Emacs interface (the type checker can assist in the development of your code). Agda is also a proof assistant: it is an interactive system for writing and checking proofs. Agda is based on intuitionistic type theory, a foundational system for constructive mathematics developed by the Swedish logician Per Martin-Löf. It has many similarities with other proof assistants based on dependent types, such as Coq, Epigram and NuPRL.") ;; Agda is distributed under the MIT license, and a couple of ;; source files are BSD-3. See LICENSE for details. (license (list license:expat license:bsd-3)))) uix/commit/gnu/packages/scheme.scm?id=2846aec2f7d53b9244ad55c1436437843287426a'>gnu: chicken: Move to a separate module....Ekaitz Zarraga 2020-01-27gnu: sicp: Do not import module from the host Guile....Ludovic Courtès 2020-01-27gnu: sicp: Remove unused module import....Marius Bakke 2020-01-15gnu: gauche: Update to 0.9.9....Tobias Geerinckx-Rice 2020-01-08gnu: gambit-c: Update to 4.9.3....Tobias Geerinckx-Rice 2020-01-03gnu: femtolisp: Update to 0.0.0-2....Brett Gilio 2019-12-24gnu: bigloo: Use HTTPS home page....Tobias Geerinckx-Rice 2019-12-24gnu: bigloo: Update to 4.3f....Tobias Geerinckx-Rice 2019-11-01gnu: Chibi-Scheme: Do not use unstable tarball....Marius Bakke 2019-11-01gnu: Chibi-Scheme: Update to 0.8....Ekaitz at ElenQ Technology 2019-09-23gnu: mit-scheme: Pass a valid tarball hash on non-x86....Ludovic Courtès 2019-06-11gnu: racket: Update to 7.3....Christopher Lemmer Webber 2019-04-29gnu: Remove scmutils....Ricardo Wurmus 2019-03-18Correct name and email address for ng0....ng0 2019-02-04gnu: gambit-c: Update to 4.9.2....Tobias Geerinckx-Rice