;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Nikita Karetnikov ;;; Copyright © 2013 Mark H Weaver ;;; ;;; 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 gprolog) #:use-module (guix download) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix build-system gnu) #:use-module (srfi srfi-1)) (define-public gprolog (package (name "gprolog") (version "1.4.4") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/gprolog/gprolog-" version ".tar.gz")) (sha256 (base32 "13miyas47bmijmadm68cbvb21n4s156gjafz7kfx9brk9djfkh0q")))) (build-system gnu-build-system) (arguments `(#:phases (alist-cons-before 'configure 'change-dir-n-fix-shells (lambda _ (chdir "src") (substitute* "configure" (("-/bin/sh") (string-append "-" (which "sh"))) (("= /bin/sh") (string-append "= " (which "sh"))))) %standard-phases))) (home-page "https://www.gnu.org/software/gprolog/") (synopsis "Prolog compiler") (description "GNU Prolog is a standards-compliant Prolog compiler with constraint solving over finite domains. It accepts Prolog+ constraint programs and produces a compiled, native binary which can function in a stand-alone manner. It also features an interactive interpreter.") (license (list gpl2+ lgpl3+)) ;; See 'configure' for the list of supported architectures. (supported-systems (fold delete %supported-systems '("armhf-linux" "mips64el-linux"))))) ass='list nowrap'>AgeCommit message (Expand)Author 2017-07-05gnu: tmux: Update to 2.5....* gnu/packages/tmux.scm (tmux): Update to 2.5. Signed-off-by: Marius Bakke <mbakke@fastmail.com> Stefan Reichör 2017-06-17gnu: Add tmuxifier....* gnu/packages/tmux.scm (tmuxifier): New variable. Signed-off-by: Thomas Danckaert <post@thomasdanckaert.be> Stefan Reichoer 2017-04-21gnu: tmux: Update to 2.4....* gnu/packages/tmux.scm (tmux): Update to 2.4. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Vasile Dumitrascu 2016-09-30gnu: tmux: Update to 2.3....* gnu/packages/tmux.scm (tmux): Update to 2.3. Leo Famulari 2016-07-10gnu: Add Tmux Themepack....* gnu/packages/tmux.scm (tmux-themepack): New variable. Signed-off-by: Leo Famulari <leo@famulari.name> Matthew Jordan 2016-05-16gnu: tmux: Update to 2.2....* gnu/packages/tmux.scm (tmux): Update to 2.2. Efraim Flashner 2015-12-14gnu: tmux: Update to 2.1....* gnu/packages/tmux.scm (tmux): Update to 2.1. Leo Famulari 2015-08-25gnu: tmux: Update to 2.0....* gnu/packages/tmux.scm (tmux): Update to 2.0. Update source uri and home-page to github. 宋文武 2015-07-18gnu packages: Clean up synopses and descriptions....* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm, gnu/packages/backup.scm, gnu/packages/base.scm, gnu/packages/bittorrent.scm, gnu/packages/code.scm, gnu/packages/compression.scm, gnu/packages/databases.scm, gnu/packages/enchant.scm, gnu/packages/firmware.scm, gnu/packages/fonts.scm, gnu/packages/freedesktop.scm, gnu/packages/games.scm, gnu/packages/gd.scm, gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gsasl.scm, gnu/packages/gstreamer.scm, gnu/packages/gtk.scm, gnu/packages/guile.scm, gnu/packages/haskell.scm, gnu/packages/language.scm, gnu/packages/lesstif.scm, gnu/packages/libreoffice.scm, gnu/packages/linux.scm, gnu/packages/llvm.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm, gnu/packages/mit-krb5.scm, gnu/packages/mp3.scm, gnu/packages/ncdu.scm, gnu/packages/networking.scm, gnu/packages/ntp.scm, gnu/packages/ocaml.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm, gnu/packages/perl.scm, gnu/packages/pretty-print.scm, gnu/packages/pulseaudio.scm, gnu/packages/python.scm, gnu/packages/rdesktop.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm, gnu/packages/slang.scm, gnu/packages/slim.scm, gnu/packages/telephony.scm, gnu/packages/tls.scm, gnu/packages/tmux.scm, gnu/packages/tre.scm, gnu/packages/unrtf.scm, gnu/packages/version-control.scm, gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wget.scm, gnu/packages/xdisorg.scm, gnu/packages/xfce.scm, gnu/packages/xiph.scm: Fix typos. Trim long lines. Add missing periods in the end of sentences. Use double spaces between sentences. Remove trailing whitespaces. Alex Kost