diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-08-24 10:39:02 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-08-24 18:15:02 +0300 |
commit | bbfc37e140d0ca77a3e2a9507f4655a8bac5bd7b (patch) | |
tree | 8df897f381f34f96381cec4360151c5f872ed093 | |
parent | 1f5be4e6feb2a83354d3f8b3489de0caac78f2be (diff) | |
download | guix-bbfc37e140d0ca77a3e2a9507f4655a8bac5bd7b.tar guix-bbfc37e140d0ca77a3e2a9507f4655a8bac5bd7b.tar.gz |
gnu: efl: Use system lz4.
* gnu/packages/enlightenment.scm (efl)[arguments]: Pass '--enable-liblz4'.
[inputs]: Add lz4.
-rw-r--r-- | gnu/packages/enlightenment.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm index 6289bea7af..04be3a3896 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -89,6 +89,7 @@ ("libxrandr" ,libxrandr) ("libxscrnsaver" ,libxscrnsaver) ("libxtst" ,libxtst) + ("lz4" ,lz4) ("mesa" ,mesa) ("printproto" ,printproto) ("scrnsaverproto" ,scrnsaverproto) @@ -114,7 +115,8 @@ ("util-linux" ,util-linux) ; eeze.pc ("zlib" ,zlib))) ; eet.pc (arguments - `(#:configure-flags '("--disable-silent-rules") + `(#:configure-flags '("--disable-silent-rules" + "--enable-liblz4") #:phases (modify-phases %standard-phases (add-before 'configure 'patch-config-files |