Skip to content
Snippets Groups Projects
Commit 83667645 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

distro: lout: Delay use of of `nixpkgs-derivation'.

* distro/packages/lout.scm (lout): Don't fork with `nixpkgs-derivation',
  to avoid any issues in the absence of `nix-instantiate'.
parent 200dc937
No related branches found
No related tags found
No related merge requests found
...@@ -88,7 +88,8 @@ (define out ...@@ -88,7 +88,8 @@ (define out
"12gkyqrn0kaa8xq7sc7v3wm407pz2fxg9ngc75aybhi5z825b9vq")))) "12gkyqrn0kaa8xq7sc7v3wm407pz2fxg9ngc75aybhi5z825b9vq"))))
(build-system gnu-build-system) ; actually, just a makefile (build-system gnu-build-system) ; actually, just a makefile
(outputs '("out" "doc")) (outputs '("out" "doc"))
(inputs `(("ghostscript" ,(nixpkgs-derivation "ghostscript")))) (inputs `(("ghostscript" ,(lambda _ ; FIXME: replace with our own
(nixpkgs-derivation "ghostscript")))))
(arguments `(#:modules ((guix build utils) (arguments `(#:modules ((guix build utils)
(guix build gnu-build-system) (guix build gnu-build-system)
(srfi srfi-1)) ; we need SRFI-1 (srfi srfi-1)) ; we need SRFI-1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment