;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012 Nikita Karetnikov ;;; 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 time) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) (define-public time (package (name "time") (version "1.7") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/time/time-" version ".tar.gz")) (sha256 (base32 "0va9063fcn7xykv658v2s9gilj2fq4rcdxx2mn2mmy1v4ndafzp3")))) (build-system gnu-build-system) (arguments '(#:phases (alist-replace 'configure (lambda* (#:key outputs #:allow-other-keys) ;; This old `configure' script doesn't support ;; variables passed as arguments. (let ((out (assoc-ref outputs "out"))) (setenv "CONFIG_SHELL" (which "bash")) (zero? (system* "./configure" (string-append "--prefix=" out))))) %standard-phases))) (home-page "http://www.gnu.org/software/time/") (synopsis "Run a command, then display its resource usage") (description "Time is a command that displays information about the resources that a program uses. The display output of the program can be customized or saved to a file.") (license gpl2+))) '>AgeCommit message (Expand)Author 2020-05-22doc: Update 'Bootstrapping' for further binary seed reduction.Jan Nieuwenhuizen 2019-03-14Merge branch 'staging' into core-updatesMarius Bakke 2019-03-13doc: Document the graphical installer some more.Ludovic Courtès 2018-12-16doc: Update mesboot graph without bootstrap-guile.Jan Nieuwenhuizen 2018-11-24doc: Update for bootstrap-mescc-tools change.Jan Nieuwenhuizen 2018-09-23doc: Describe the Reduced Binary Seed bootstrap.Jan Nieuwenhuizen 2016-12-17doc: Update dot graphs.Ludovic Courtès 2023-02-25gnu: spice-gtk: Adjust the default file name of the ACL helper binary.Maxim Cournoyer 2023-02-25gnu: spice-gtk: Enable support for polkit, webdav and others.Maxim Cournoyer 2023-02-25gnu: spice-vdagent: Update to 0.22.1.Maxim Cournoyer 2023-02-25gnu: spice: Update to 0.15.1.Maxim Cournoyer 2023-02-25gnu: libcacard: Remove obsolete configure flags.Maxim Cournoyer 2023-02-25gnu: virglrenderer: Update to 0.7.0.Maxim Cournoyer 2023-02-25gnu: usbredir: Update to 0.13.0.Maxim Cournoyer 2023-02-25gnu: spice-protocol: Update to 0.14.4.Maxim Cournoyer 2023-02-25gnu: spice-gtk: Propagate libjpeg-turbo, lz4, opus, and usbredir.Maxim Cournoyer 2023-02-25gnu: spice-gtk: Update to 0.42.Maxim Cournoyer 2023-02-25gnu: spice-gtk: Use gexps.Maxim Cournoyer 2023-02-25gnu: spice-gtk: Remove input labels.Maxim Cournoyer 2023-02-25gnu: spice-gtk: Fix indentation and normalize field order.Maxim Cournoyer