aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/parallel.scm
blob: 92f15adbc44bd59c4f0527f39158f4eda04272fa (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013,2014 Eric Bavier <bavier@member.fsf.org>
;;;
;;; 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 <http://www.gnu.org/licenses/>.

(define-module (gnu packages parallel)
  #:use-module (guix packages)
  #:use-module (guix licenses)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (gnu packages perl))

(define-public parallel
  (package
    (name "parallel")
    (version "20140822")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/parallel/parallel-"
                          version ".tar.bz2"))
      (sha256
       (base32
        "1m3z77fnc2bfissq642p44xgw1jyp00wiwk1slhqj8bipicnl54a"))))
    (build-system gnu-build-system)
    (inputs `(("perl" ,perl)))
    (home-page "http://www.gnu.org/software/parallel/")
    (synopsis "Build and execute command lines in parallel")
    (description
     "GNU Parallel is a tool for executing shell jobs in parallel using one
or more computers.  Jobs can consist of single commands or of scripts
and they are executed on lists of files, hosts, users or other items.")
    (license gpl3+)))
-08-07gnu: Add rrdtool....Mark H Weaver 2014-08-07gnu: curl: Update to 7.37.1....Andreas Enge 2014-08-05gnu: Add flashrom....Mark H Weaver 2014-07-24install: Add a configuration template to the image....Ludovic Courtès 2014-07-24gnu: Add libftdi....Manolis Ragkousis 2014-07-18gnu: Add datamash....Eric Bavier 2014-07-15gnu: flac: Upgrade to 1.3.0....Jason Self 2014-07-13Merge branch 'bug-17853'Ludovic Courtès 2014-07-12gnu: Add links....John Darrington 2014-07-11gnu: Add fish....David Thompson 2014-07-10gnu: glib: Fix build on i686....Eric Bavier 2014-07-10gnu: Remove overlooked patch....Eric Bavier 2014-07-10gnu: Add VTK....Ludovic Courtès 2014-07-09gnu: Add sipwitch and dependent packages...John Darrington 2014-07-08gnu: Add conkeror....Cyrill Schenkel 2014-07-08gnu: dmd: Update to 0.2....Ludovic Courtès 2014-07-07gnu: bitlbee: Upgrade to 3.2.2....Mark H Weaver 2014-07-05gnu: Add gcl....John Darrington 2014-07-02gnu: libbonobo: Skip failing test case....Eric Bavier 2014-07-01gnu: Add node....Cyrill Schenkel 2014-07-01services: Add lshd service....Ludovic Courtès 2014-06-30gnu: Add jrnl, python-pycrypto, python-keyring, python-parsedatetime, and pyt......Eric Bavier 2014-06-27gnu: Consolidate libjpeg, libpng, and libtiff into one module....David Thompson 2014-06-26gnu: Add libsodium....David Thompson 2014-06-26gnu: Add new package barcode...John Darrington 2014-06-25gnu: cursynth: Upgrade to 1.5....Eric Bavier 2014-06-22gnu: kmod: Honor $LINUX_MODULE_DIRECTORY....Ludovic Courtès 2014-06-22gnu: Add udev....Andreas Enge 2014-06-20Merge branch 'core-updates'Ludovic Courtès 2014-06-16gnu: guile-ncurses: Work around missing test files....Ludovic Courtès 2014-06-16gnu: icu4c: Fix failing test....Ludovic Courtès 2014-06-15gnu: Add cook....John Darrington 2014-06-13gnu: Add pingus....Eric Bavier 2014-06-13gnu: Add busybox....John Darrington 2014-06-05gnu: openssl: Upgrade to 1.0.1h....Mark H Weaver