diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-08-28 23:41:24 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-08-28 23:41:24 +0200 |
commit | 77ca6b3108f55efe7b4f3da40c1371557588ff3d (patch) | |
tree | 7ba49aaf3ecab90a0e306be5c39db43d730e3e13 /gnu/packages/game-development.scm | |
parent | 0c908518375aea50be6dec703367c01944c8c721 (diff) | |
download | guix-77ca6b3108f55efe7b4f3da40c1371557588ff3d.tar.gz guix-77ca6b3108f55efe7b4f3da40c1371557588ff3d.zip |
gnu: dds: Add missing header files.
* gnu/packages/game-development.scm (dds)[arguments]<#:phases>: Also install
header files.
Change-Id: If3db20d8cb3530be16607d9e7c2a671dfff34439
Diffstat (limited to 'gnu/packages/game-development.scm')
-rw-r--r-- | gnu/packages/game-development.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index aff95d48a1..59325fd47a 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -249,6 +249,8 @@ is used in some video games and movies.") (lambda _ (install-file "libdds.so" (string-append #$output "/lib")) + (let ((inc (string-append #$output "/include"))) + (copy-recursively "../include" inc)) (let ((doc (string-append #$output "/share/doc/" #$name "-" #$version))) |