;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Ludovic Courtès ;;; ;;; 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 cppi) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix licenses)) (define-public cppi (package (name "cppi") (version "1.18") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/cppi/cppi-" version ".tar.xz")) (sha256 (base32 "1jk42cjaggk71rimjnx3qpmb6hivps0917vl3z7wbxk3i2whb98j")))) (build-system gnu-build-system) (home-page "https://www.gnu.org/software/cppi/") (synopsis "Indent C preprocessor directives to reflect nesting and more") (description "GNU Cppi processes C source code files to properly indent the preprocessor directives to reflect their nesting. It also performs other standardizations, such as correcting the number of spaces between directives and the text following them.") (license gpl3+))) ='grep'>log msg
CC.
AgeCommit message (Expand)Author
2024-12-08gnu: guile-for-guile-emacs: Update to wip-elisp-rebased....* gnu/packages/guile.scm (guile-for-guile-emacs): Inherit from guile-next. Update to 4b9b8277733729f5b825f78fadfead9fc3630e7e. [version]: Update to 3.0.7-81. [arguments, native-inputs]: Remove. Change-Id: I78a53c2b45c4d2b87f560da82b400cbd985e332a Janneke Nieuwenhuizen
2024-12-03gnu: guile-lzlib: Support [cross-]build with gcc-14 and the 64bit Hurd....* gnu/packages/patches/guile-lzlib-hurd64.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/guile.scm (guile-lzlib)[arguments]: Use G-expressions. When building for the 64bit Hurd, or cross-compiling, use it in new "apply-hurd64-patch" stage. Change-Id: Id03f71baa80e2f4f967f54037ce7d9f1c5dc4bb6 Janneke Nieuwenhuizen
2024-10-16gnu: guile-git: Update to 0.9.0....* gnu/packages/guile.scm (guile-git): Update to 0.9.0. Change-Id: I7a49f592a810422f9743dbd9ed50d25f64b32475 Ludovic Courtès
2024-08-31gnu: guile2.0-git: Deprecate....* gnu/packages/guile.scm (guile2.0-git): Mark as deprecated. Change-Id: I62bae292fae5a6487c232e6c92bef68d376aeeda Ludovic Courtès
2024-08-31gnu: guile-2.0: Add libxcrypt dependency....* gnu/packages/guile.scm (guile-2.0): Add libxcrypt dependency, and include it in the pkg-config file's flags. * gnu/packages/commencement.scm (guile-final): Explicitely exclude libxcrypt dependency. Change-Id: Ie01913971b225c4dd23dcfdb96348d4e11042da8 Josselin Poiret
2024-08-31gnu: guile-1.8: Add libxcrypt dependency....* gnu/packages/guile.scm (guile-1.8): Add libxcrypt dependency, and include it in the pkg-config file's flags. Change-Id: I050e8d2bee0b6195a6a854338d39a9594b0088b9 Josselin Poiret
2024-08-28gnu: guile-git: Switch to libgit2 1.8....* gnu/packages/guile.scm (guile-git)[inputs]: Replace ‘libgit2-1.7’ by ‘libgit2-1.8’. Change-Id: I0b9c6f9efb813c2af589ebf291c6f66ff81b87d9 Ludovic Courtès
2024-08-28gnu: guile-git: Update to 0.8.0....* gnu/packages/guile.scm (guile-git): Update to 0.8.0. Change-Id: I97ed6c88402e53935d7f1cec335a7982f3e33417 Ludovic Courtès
Ludovic Courtès