;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Ricardo Wurmus ;;; Copyright © 2019 Tobias Geerinckx-Rice ;;; ;;; 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 ragel) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages)) (define-public ragel (package (name "ragel") (version "6.10") (source (origin (method url-fetch) (uri (string-append "https://www.colm.net/files/ragel/ragel-" version ".tar.gz")) (sha256 (base32 "0gvcsl62gh6sg73nwaxav4a5ja23zcnyxncdcdnqa2yjcpdnw5az")))) (build-system gnu-build-system) (home-page "https://www.colm.net/open-source/ragel/") (synopsis "State machine compiler") (description "Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby. Ragel state machines can not only recognize byte sequences as regular expression machines do, but can also execute code at arbitrary points in the recognition of a regular language. Code embedding is done using inline operators that do not disrupt the regular language syntax.") ;; GPLv2 (or later) with exception for generated code. (license license:gpl2+))) e96f64110676f28b948f0d31a1726501abdae0e'>root/gnu/packages/docker.scm
AgeCommit message (Expand)Author
2021-03-11gnu: docker-cli: Fix source hash....This is a follow-up to commit 83cda00bc62d665f05d37d07c78a1c4eab5297f0. * gnu/packages/docker.scm (docker-cli): Fix source hash caused by cascading %docker-version variable changes. Léo Le Bouter
2021-03-10gnu: containerd: Update to 1.3.10 [security fixes]....* gnu/packages/docker.scm (containerd): Update to 1.3.10. Léo Le Bouter
2021-03-10gnu: docker: Update to 19.03.15 [security fixes]....* gnu/packages/docker.scm (%docker-version): Bump to 19.03.15. (docker-libnetwork): Bump to 19.03-1.55e924b. (docker): [source]: Set git-reference url to 'https://github.com/moby/moby'. [arguments]<#:phases>: Modify 'delete-failing-tests phase to delete 'signal_linux_test.go'. Léo Le Bouter
2021-02-08gnu: docker: Update to 19.03.13....* gnu/packages/docker.scm (docker, docker-cli): Update to 19.03.13. Oleg Pykhalov
2020-11-21gnu: python-docker: Propagate runtime dependency....* gnu/packages/docker.scm (python-docker)[inputs]: Move PYTHON-WEBSOCKET-CLIENT from here ... [propagated-inputs]: ... to here. Marius Bakke
2020-11-14gnu: cqfd: Update to 5.2.1....* gnu/packages/docker.scm (cqfd): Update to 5.2.1. Maxim Cournoyer
2020-10-16gnu: containerd: Don't 'chdir' in build phases....This fixes breaks the 'install-license-files' phase added in 6b793fa66218337a1f638466753cd5326a6a6c18 and is generally not good practice. * gnu/packages/docker.scm (containerd): [arguments]: Use 'with-directory-excursion' instead of 'chdir' in build phases. Oleg Pykhalov
2020-10-16gnu: docker-cli: Fix build....This is a follow-up to 6b793fa66218337a1f638466753cd5326a6a6c18. * gnu/packages/docker.scm (docker-cli)[arguments]: In custom 'install phase don't change directory to install 'docker' binary. Efraim Flashner
2020-09-21gnu: docker: Compile with seccomp enabled....* gnu/packages/docker.scm (docker)[arguments]: Adjust custom 'configure phase to enable seccomp support. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Jesse Dowell
2020-09-21gnu: docker: Synchronize docker dependencies with the current version of docker....* gnu/packages/docker.scm (docker-libnetwork): Update to 19.03-1.026aaba. [source]: Follow URI redirection. [arguments]: Adjust import-path accordingly. [home-page]: Same. * gnu/packages/networking.scm (go-sctp): Update to 0.0.0-2.6e2cb13. [arguments]: Skip test suite. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Jesse Dowell