gnu: qemu: Remove dependency on Samba.
[jackhill/guix/guix.git] / gnu / packages / vim.scm
CommitLineData
eb490858
CR
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages vim)
20 #:use-module ((guix licenses) #:renamer (symbol-prefix-proc 'license:))
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
24 #:use-module (gnu packages)
25 #:use-module (gnu packages gawk)
26 #:use-module (gnu packages ncurses)
27 #:use-module (gnu packages perl)
9de46ffb 28 #:use-module (gnu packages admin) ; For GNU hostname
eb490858
CR
29 #:use-module (gnu packages tcsh))
30
31(define-public vim
32 (package
33 (name "vim")
d3f13336 34 (version "7.4")
eb490858
CR
35 (source (origin
36 (method url-fetch)
37 (uri (string-append "ftp://ftp.vim.org/pub/vim/unix/vim-"
38 version ".tar.bz2"))
39 (sha256
40 (base32
d3f13336 41 "1pjaffap91l2rb9pjnlbrpvb3ay5yhhr3g91zabjvw1rqk9adxfh"))))
eb490858
CR
42 (build-system gnu-build-system)
43 (arguments
44 `(#:test-target "test"
45 #:parallel-tests? #f
46 #:phases
d4bf49b1
EB
47 (alist-cons-after
48 'configure 'patch-config-files
49 (lambda _
eb490858
CR
50 (substitute* "runtime/tools/mve.awk"
51 (("/usr/bin/nawk") (which "gawk")))
52 (substitute* "src/testdir/Makefile"
d4bf49b1 53 (("/bin/sh") (which "sh"))))
eb490858
CR
54 %standard-phases)))
55 (inputs
56 `(("gawk", gawk)
57 ("inetutils", inetutils)
58 ("ncurses", ncurses)
59 ("perl", perl)
60 ("tcsh" ,tcsh))) ; For runtime/tools/vim32
61 (home-page "http://www.vim.org/")
d4bf49b1 62 (synopsis "Text editor based on vi")
eb490858
CR
63 (description
64 "Vim is a highly configurable text editor built to enable efficient text
65editing. It is an improved version of the vi editor distributed with most UNIX
66systems.
67
68Vim is often called a \"programmer's editor,\" and so useful for programming
69that many consider it an entire IDE. It's not just for programmers, though. Vim
70is perfect for all kinds of text editing, from composing email to editing
d4bf49b1 71configuration files.")
eb490858 72 (license license:vim)))