;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 John Darrington ;;; Copyright © 2015, 2019 Ludovic Courtès ;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice ;;; Copyright © 2018 Efraim Flashner ;;; ;;; 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 mtools) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages)) (define-public mtools (package (name "mtools") (version "4.0.37") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/mtools/mtools-" version ".tar.bz2")) (sha256 (base32 "0hl3zbj0lyx2m0fyydv0wcgpmyqfg4khp098jqjn2yz44dz1k6vr")) (patches (search-patches "mtools-mformat-uninitialized.patch")))) (build-system gnu-build-system) (home-page "https://www.gnu.org/software/mtools/") (synopsis "Access MS-DOS disks without mounting") (description "GNU Mtools is a set of utilities for accessing MS-DOS disks from a GNU or Unix system. It supports long file names and multiple disk formats. It also supports some FAT-specific features such as volume labels and FAT-specific file attributes.") (license gpl3+))) href='/guix/log/?id=823997e969718efd6ab56fca7a9aae3f458ba978'>root/gnu/packages/ccache.scm
AgeCommit message (Expand)Author
2017-03-24gnu: ccache: Update to 3.3.4....* gnu/packages/ccache.scm (ccache): Update to 3.3.4. Efraim Flashner
2016-10-30gnu: ccache: Update to 3.3.3....* gnu/packages/ccache.scm (ccache): Update to 3.3.3. Efraim Flashner
2016-10-08gnu: ccache: Update to 3.3.2....* gnu/packages/ccache.scm (ccache): Update to 3.3.2. Efraim Flashner
2016-09-22gnu: ccache: Upgrade to 3.3.1....* gnu/packages/ccache.scm (ccache): Upgrade to 3.3.1. [description]: Adjust supported languages. Eric Bavier
2016-09-22gnu: ccache: Use modify-phases....* gnu/packages/ccache.scm (ccache)[arguments]: Use modify-phases. Eric Bavier
2016-07-10gnu: ccache: Update to 3.2.5....* gnu/packages/ccache.scm (ccache): Update to 3.2.5. [native-inputs]: Add which. Efraim Flashner
2016-02-01gnu: ccache: Update to 3.2.4....* gnu/packages/ccache.scm (ccache): Update to 3.2.4. Eric Bavier
2015-07-14gnu: ccache: Update to 3.2.2....* gnu/packages/ccache.scm (ccache): Update to 3.2.2. [arguments]: Rename 'patch-test-shebangs phase to 'setup-tests. Set the SHELL environment variable. Eric Bavier