gnu: guix-daemon: Build in the absence of guile-sqlite3.
Fixes a regression introduced in
3f311279d3 whereby guix-daemon's configure
would error out due to the lack of guile-sqlite3.
* gnu/packages/package-management.scm (guix-daemon)[inputs]: Remove
"boot-guile", "boot-guile/i686", and "util-linux".
[arguments]: Add #:configure-flags.
			
			
This commit is contained in:
		
							parent
							
								
									3f311279d3
								
							
						
					
					
						commit
						1fb947f6d7
					
				
					 1 changed files with 8 additions and 1 deletions
				
			
		| 
						 | 
					@ -310,11 +310,18 @@ the Nix package manager.")
 | 
				
			||||||
    (inputs
 | 
					    (inputs
 | 
				
			||||||
     `(("gnutls" ,gnutls)
 | 
					     `(("gnutls" ,gnutls)
 | 
				
			||||||
       ("guile-git" ,guile-git)
 | 
					       ("guile-git" ,guile-git)
 | 
				
			||||||
       ,@(package-inputs guix)))
 | 
					       ,@(fold alist-delete (package-inputs guix)
 | 
				
			||||||
 | 
					               '("boot-guile" "boot-guile/i686" "util-linux"))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    (propagated-inputs '())
 | 
					    (propagated-inputs '())
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    (arguments
 | 
					    (arguments
 | 
				
			||||||
     (substitute-keyword-arguments (package-arguments guix)
 | 
					     (substitute-keyword-arguments (package-arguments guix)
 | 
				
			||||||
 | 
					       ((#:configure-flags flags '())
 | 
				
			||||||
 | 
					        ;; Pretend we have those libraries; we don't actually need them.
 | 
				
			||||||
 | 
					        `(append ,flags
 | 
				
			||||||
 | 
					                 '("guix_cv_have_recent_guile_sqlite3=yes"
 | 
				
			||||||
 | 
					                   "guix_cv_have_recent_guile_ssh=yes")))
 | 
				
			||||||
       ((#:tests? #f #f)
 | 
					       ((#:tests? #f #f)
 | 
				
			||||||
        #f)
 | 
					        #f)
 | 
				
			||||||
       ((#:phases phases '%standard-phases)
 | 
					       ((#:phases phases '%standard-phases)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue