diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-03-16 13:11:28 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-03-16 13:11:28 +0200 |
commit | 4cacd87e4d4b72945c19e993eef7af387fce957c (patch) | |
tree | 2f54fc1752941a849fa92c3f3a8bbb195e54b754 /gnu/packages/engineering.scm | |
parent | 56f76b08be97549dcc409b090186103413dc4e4b (diff) | |
parent | 0f03c5316819385f3a4047ae50736b3db760f451 (diff) | |
download | guix-4cacd87e4d4b72945c19e993eef7af387fce957c.tar.gz |
Merge remote-tracking branch 'origin/master' into core-updates
Diffstat (limited to 'gnu/packages/engineering.scm')
-rw-r--r-- | gnu/packages/engineering.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 23446bafa8..dd56af99da 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -96,13 +96,13 @@ (assoc-ref inputs "boost"))))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (mkdir-p (string-append out "/bin")) - (mkdir-p (string-append out "/share/librecad")) - (copy-file "unix/librecad" - (string-append out "/bin/librecad")) - (copy-recursively "unix/resources" - (string-append out "/share/librecad")))))))) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin")) + (share (string-append out "/share/librecad"))) + (mkdir-p bin) + (install-file "unix/librecad" bin) + (mkdir-p share) + (copy-recursively "unix/resources" share))))))) (inputs `(("boost" ,boost) ("muparser" ,muparser) |