diff options
-rw-r--r-- | guix.scm | 23 |
1 files changed, 1 insertions, 22 deletions
@@ -31,7 +31,7 @@ (gnu packages bioinformatics) (gnu packages graphviz) (gnu packages guile) - ((gnu packages guile-xyz) #:prefix guix:) + (gnu packages guile-xyz) (gnu packages pkg-config) (gnu packages skribilo) (gnu packages texinfo) @@ -44,27 +44,6 @@ (define %source-dir (dirname (current-filename))) -;; The upstream Guix guile-libyaml package is broken. Fix it -;; temporarily here. -(define guile-libyaml - (package - (inherit guix:guile-libyaml) - (arguments - (substitute-keyword-arguments (package-arguments guix:guile-libyaml) - ((#:phases phases) - `(modify-phases ,phases - (replace 'remove-unused-files - (lambda _ - (for-each delete-file - (list "guix.scm" "demo1.scm" "demo1.yml")))) - (replace 'build-ffi - (lambda* (#:key inputs #:allow-other-keys) - (substitute* "yaml/libyaml.scm" - (("dynamic-link \"libyaml\"") - (string-append "dynamic-link \"" - (assoc-ref inputs "libyaml") - "/lib/libyaml\""))))))))))) - (define ccwl (package (name "ccwl") |