From 2b6b096e8d15c6542cc0a16f310a12239b0d44f2 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Mon, 16 Sep 2024 19:53:46 +0200 Subject: [PATCH] fix: vhdl-ls missing vhdl_libraries --- ruther/packages/vhdl-ls.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ruther/packages/vhdl-ls.scm b/ruther/packages/vhdl-ls.scm index 7d133e5618ba96365d89e06944f74efa45cb9fee..b676c9edb1713951b9150ba9045c3794e805ac9e 100644 --- a/ruther/packages/vhdl-ls.scm +++ b/ruther/packages/vhdl-ls.scm @@ -559,7 +559,10 @@ array.") (let* ((out (assoc-ref outputs "out"))) (mkdir-p out) (invoke "cargo" "install" "--no-track" - "--path" "./vhdl_ls" "--root" out))))) + "--path" "./vhdl_ls" "--root" out) + (mkdir-p (string-append out "/share/vhdl_libraries")) + (copy-recursively "vhdl_libraries" + (string-append out "/share/vhdl_libraries")))))) #:cargo-inputs (("rust-clap" ,rust-clap-4) ("rust-env-logger" ,rust-env-logger-0.3)