gnu: patch: Fix indentation.
* gnu/packages/base.scm (patch): Re-indent package. Change-Id: I97a5d8054ebacc779bead6093d150c44acdcc91c
This commit is contained in:
		
							parent
							
								
									09690a2b0c
								
							
						
					
					
						commit
						eb4dc1b9ae
					
				
					 1 changed files with 14 additions and 14 deletions
				
			
		| 
						 | 
					@ -263,7 +263,7 @@ standard utility.")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-public patch
 | 
					(define-public patch
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
   (name "patch")
 | 
					    (name "patch")
 | 
				
			||||||
    (version "2.7.6")
 | 
					    (version "2.7.6")
 | 
				
			||||||
    (source (origin
 | 
					    (source (origin
 | 
				
			||||||
              (method url-fetch)
 | 
					              (method url-fetch)
 | 
				
			||||||
| 
						 | 
					@ -273,23 +273,23 @@ standard utility.")
 | 
				
			||||||
               (base32
 | 
					               (base32
 | 
				
			||||||
                "1zfqy4rdcy279vwn2z1kbv19dcfw25d2aqy9nzvdkq5bjzd0nqdc"))
 | 
					                "1zfqy4rdcy279vwn2z1kbv19dcfw25d2aqy9nzvdkq5bjzd0nqdc"))
 | 
				
			||||||
              (patches (search-patches "patch-hurd-path-max.patch"))))
 | 
					              (patches (search-patches "patch-hurd-path-max.patch"))))
 | 
				
			||||||
   (build-system gnu-build-system)
 | 
					    (build-system gnu-build-system)
 | 
				
			||||||
   (arguments
 | 
					    (arguments
 | 
				
			||||||
    ;; Work around a cross-compilation bug whereby libpatch.a would provide
 | 
					     ;; Work around a cross-compilation bug whereby libpatch.a would provide
 | 
				
			||||||
    ;; '__mktime_internal', which conflicts with the one in libc.a.
 | 
					     ;; '__mktime_internal', which conflicts with the one in libc.a.
 | 
				
			||||||
    (if (%current-target-system)
 | 
					     (if (%current-target-system)
 | 
				
			||||||
        `(#:configure-flags '("gl_cv_func_working_mktime=yes"))
 | 
					         `(#:configure-flags '("gl_cv_func_working_mktime=yes"))
 | 
				
			||||||
        '()))
 | 
					         '()))
 | 
				
			||||||
   (native-inputs (list ed))
 | 
					    (native-inputs (list ed))
 | 
				
			||||||
   (synopsis "Apply differences to originals, with optional backups")
 | 
					    (synopsis "Apply differences to originals, with optional backups")
 | 
				
			||||||
   (description
 | 
					    (description
 | 
				
			||||||
    "Patch is a program that applies changes to files based on differences
 | 
					     "Patch is a program that applies changes to files based on differences
 | 
				
			||||||
laid out as by the program \"diff\".  The changes may be applied to one or more
 | 
					laid out as by the program \"diff\".  The changes may be applied to one or more
 | 
				
			||||||
files depending on the contents of the diff file.  It accepts several
 | 
					files depending on the contents of the diff file.  It accepts several
 | 
				
			||||||
different diff formats.  It may also be used to revert previously applied
 | 
					different diff formats.  It may also be used to revert previously applied
 | 
				
			||||||
differences.")
 | 
					differences.")
 | 
				
			||||||
   (license gpl3+)
 | 
					    (license gpl3+)
 | 
				
			||||||
   (home-page "https://savannah.gnu.org/projects/patch/")))
 | 
					    (home-page "https://savannah.gnu.org/projects/patch/")))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-public diffutils
 | 
					(define-public diffutils
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue