gnu: guix: Update to 0.11.0.
* gnu/packages/package-management.scm (guix-0.10.0): Rename to... (guix-0.11.0): ... this. Adjust users. (guix): Set to GUIX-0.11.0.
This commit is contained in:
		
							parent
							
								
									66edac525b
								
							
						
					
					
						commit
						4420940f20
					
				
					 1 changed files with 7 additions and 7 deletions
				
			
		| 
						 | 
					@ -67,17 +67,17 @@
 | 
				
			||||||
                     arch "-linux"
 | 
					                     arch "-linux"
 | 
				
			||||||
                     "/20131110/guile-2.0.9.tar.xz")))
 | 
					                     "/20131110/guile-2.0.9.tar.xz")))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-public guix-0.10.0
 | 
					(define-public guix-0.11.0
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "guix")
 | 
					    (name "guix")
 | 
				
			||||||
    (version "0.10.0")
 | 
					    (version "0.11.0")
 | 
				
			||||||
    (source (origin
 | 
					    (source (origin
 | 
				
			||||||
             (method url-fetch)
 | 
					             (method url-fetch)
 | 
				
			||||||
             (uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-"
 | 
					             (uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-"
 | 
				
			||||||
                                 version ".tar.gz"))
 | 
					                                 version ".tar.gz"))
 | 
				
			||||||
             (sha256
 | 
					             (sha256
 | 
				
			||||||
              (base32
 | 
					              (base32
 | 
				
			||||||
               "0d4afwy7bpqi4k4bzvwc4ga4shwssis1nrvdw53qjyg9bw1a8lbn"))))
 | 
					               "1cwrbpv4dq7aczwksmcfw9w8r2bzrb5ld9zvjcr90i804hjpcb93"))))
 | 
				
			||||||
    (build-system gnu-build-system)
 | 
					    (build-system gnu-build-system)
 | 
				
			||||||
    (arguments
 | 
					    (arguments
 | 
				
			||||||
     `(#:configure-flags (list
 | 
					     `(#:configure-flags (list
 | 
				
			||||||
| 
						 | 
					@ -213,7 +213,7 @@ the Nix package manager.")
 | 
				
			||||||
  ;; Note: use a very short commit id; with a longer one, the limit on
 | 
					  ;; Note: use a very short commit id; with a longer one, the limit on
 | 
				
			||||||
  ;; hash-bang lines would be exceeded while running the tests.
 | 
					  ;; hash-bang lines would be exceeded while running the tests.
 | 
				
			||||||
  (let ((commit "97c8aef15de89799ac01b62dd9b91245c23eefcb"))
 | 
					  (let ((commit "97c8aef15de89799ac01b62dd9b91245c23eefcb"))
 | 
				
			||||||
    (package (inherit guix-0.10.0)
 | 
					    (package (inherit guix-0.11.0)
 | 
				
			||||||
      (version (string-append "0.10.0-1." (string-take commit 4)))
 | 
					      (version (string-append "0.10.0-1." (string-take commit 4)))
 | 
				
			||||||
      (source (origin
 | 
					      (source (origin
 | 
				
			||||||
                (method git-fetch)
 | 
					                (method git-fetch)
 | 
				
			||||||
| 
						 | 
					@ -227,7 +227,7 @@ the Nix package manager.")
 | 
				
			||||||
                  "0sdxq87mbvig7785gzf52ywmvl3p1q1qgsczmkzrlw988xkma1dr"))
 | 
					                  "0sdxq87mbvig7785gzf52ywmvl3p1q1qgsczmkzrlw988xkma1dr"))
 | 
				
			||||||
                (file-name (string-append "guix-" version "-checkout"))))
 | 
					                (file-name (string-append "guix-" version "-checkout"))))
 | 
				
			||||||
      (arguments
 | 
					      (arguments
 | 
				
			||||||
       (substitute-keyword-arguments (package-arguments guix-0.10.0)
 | 
					       (substitute-keyword-arguments (package-arguments guix-0.11.0)
 | 
				
			||||||
         ((#:configure-flags flags)
 | 
					         ((#:configure-flags flags)
 | 
				
			||||||
          ;; Set 'DOT_USER_PROGRAM' to the empty string so we don't keep a
 | 
					          ;; Set 'DOT_USER_PROGRAM' to the empty string so we don't keep a
 | 
				
			||||||
          ;; reference to Graphviz, whose closure is pretty big (too big for
 | 
					          ;; reference to Graphviz, whose closure is pretty big (too big for
 | 
				
			||||||
| 
						 | 
					@ -251,9 +251,9 @@ the Nix package manager.")
 | 
				
			||||||
         ("texinfo" ,texinfo)
 | 
					         ("texinfo" ,texinfo)
 | 
				
			||||||
         ("graphviz" ,graphviz)
 | 
					         ("graphviz" ,graphviz)
 | 
				
			||||||
         ("help2man" ,help2man)
 | 
					         ("help2man" ,help2man)
 | 
				
			||||||
         ,@(package-native-inputs guix-0.10.0))))))
 | 
					         ,@(package-native-inputs guix-0.11.0))))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-public guix guix-devel)
 | 
					(define-public guix guix-0.11.0)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define (source-file? file stat)
 | 
					(define (source-file? file stat)
 | 
				
			||||||
  "Return true if FILE is likely a source file, false if it is a typical
 | 
					  "Return true if FILE is likely a source file, false if it is a typical
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue