diff options
| author | Marius Bakke <mbakke@fastmail.com> | 2019-10-08 19:24:34 +0200 | 
|---|---|---|
| committer | Marius Bakke <mbakke@fastmail.com> | 2019-10-08 19:24:34 +0200 | 
| commit | d1f3b333e6176a7879ab3742bbebb2a99f61a528 (patch) | |
| tree | 8bd82ce68bd2534a48bf13c7256997f82dd1b3f4 /gnu/packages/code.scm | |
| parent | e01d384efcdaf564bbb221e43b81e087c8e2af06 (diff) | |
| parent | 861907f01efb1cae7f260e8cb7b991d5034a486a (diff) | |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/code.scm')
| -rw-r--r-- | gnu/packages/code.scm | 21 | 
1 files changed, 5 insertions, 16 deletions
| diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index c5dfa4aa7a..13e2c4ad44 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -626,13 +626,13 @@ the C, C++, C++/CLI, Objective‑C, C#, and Java programming languages.")  (define-public indent    (package     (name "indent") -   (version "2.2.10") +   (version "2.2.12")     (source (origin              (method url-fetch)              (uri (string-append "mirror://gnu/indent/indent-" version                                  ".tar.gz")) -            (sha256 (base32 -                     "0f9655vqdvfwbxvs1gpa7py8k1z71aqh8hp73f65vazwbfz436wa")))) +            (sha256 +             (base32 "12xvcd16cwilzglv9h7sgh4h1qqjd1h8s48ji2dla58m4706hzg7"))))     (build-system gnu-build-system)     (arguments      `(#:phases @@ -645,6 +645,8 @@ the C, C++, C++/CLI, Objective‑C, C#, and Java programming languages.")              (substitute* "doc/Makefile.in"                (("^docdir = .*$") "docdir = @docdir@\n"))              #t))))) +   (native-inputs +    `(("texinfo" ,texinfo)))     (synopsis "Code reformatter")     (description      "Indent is a program that makes source code easier to read by @@ -655,19 +657,6 @@ extensions over the standard utility.")     (license license:gpl3+)     (home-page "https://www.gnu.org/software/indent/"))) -(define-public indent-2.2.12 -  (package -    (inherit indent) -    (version "2.2.12") -    (source (origin -              (method url-fetch) -              (uri (string-append "mirror://gnu/indent/indent-" version -                                  ".tar.gz")) -              (sha256 -               (base32 -                "12xvcd16cwilzglv9h7sgh4h1qqjd1h8s48ji2dla58m4706hzg7")))) -    (native-inputs `(("texinfo" ,texinfo))))) -  (define-public amalgamate    (let* ((commit "c91f07eea1133aa184f652b8f1398eaf03586208")           (revision "0") | 
