me
/
guix
Archived
1
0
Fork 0

gnu: fifo-map: Fix build.

* gnu/packages/cpp.scm (fifo-map)[arguments]: Fix 'install' phase.
master
Guillaume Le Vaillant 2021-09-11 16:33:51 +02:00
parent 2fbae88680
commit 73a52906d9
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 3 additions and 4 deletions

View File

@ -20,6 +20,7 @@
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
;;; Copyright © 2021 Nicolò Balzarotti <nicolo@nixo.xyz>
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -368,10 +369,8 @@ functions, class methods, and stl containers.
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(inc (string-append out "/include/fifo_map")))
(with-directory-excursion
(string-append "../" ,name "-" ,version "-checkout")
(install-file "src/fifo_map.hpp" inc)
#t)))))))
(with-directory-excursion "../source"
(install-file "src/fifo_map.hpp" inc))))))))
(synopsis "FIFO-ordered associative container for C++")
(description "Fifo_map is a C++ header only library for associative
container which uses the order in which keys were inserted to the container