mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
derivations: Add 'raw-derivation'.
* guix/derivations.scm (raw-derivation): New procedure. * guix/download.scm (raw-derivation): Remove. * guix/gexp.scm (raw-derivation): Remove.
This commit is contained in:
parent
18675264c6
commit
713335fa61
3 changed files with 4 additions and 6 deletions
|
@ -86,6 +86,7 @@
|
|||
derivation-path->output-path
|
||||
derivation-path->output-paths
|
||||
derivation
|
||||
raw-derivation
|
||||
|
||||
map-derivation
|
||||
|
||||
|
@ -1306,3 +1307,6 @@ ALLOWED-REFERENCES, DISALLOWED-REFERENCES, LOCAL-BUILD?, and SUBSTITUTABLE?."
|
|||
|
||||
(define built-derivations
|
||||
(store-lift build-derivations))
|
||||
|
||||
(define raw-derivation
|
||||
(store-lift derivation))
|
||||
|
|
|
@ -322,9 +322,6 @@ the daemon."
|
|||
result))
|
||||
store)))))
|
||||
|
||||
(define raw-derivation
|
||||
(store-lift derivation))
|
||||
|
||||
(define* (built-in-download file-name url
|
||||
#:key system hash-algo hash
|
||||
mirrors content-addressed-mirrors
|
||||
|
|
|
@ -453,9 +453,6 @@ whether this should be considered a \"native\" input or not."
|
|||
'()))
|
||||
(gexp-references gexp)))))
|
||||
|
||||
(define raw-derivation
|
||||
(store-lift derivation))
|
||||
|
||||
(define* (lower-inputs inputs
|
||||
#:key system target)
|
||||
"Turn any package from INPUTS into a derivation for SYSTEM; return the
|
||||
|
|
Loading…
Reference in a new issue